Go Back  Xtreme Visual Basic Talk > Legacy Visual Basic (VB 4/5/6) > Database and Reporting > Export ADO Recordset to HTML


Reply
 
Thread Tools Display Modes
  #1  
Old 09-18-2003, 12:06 AM
m83x m83x is offline
Newcomer
 
Join Date: Oct 2002
Posts: 21
Default Export ADO Recordset to HTML


do you know guys how to export ADODB Recordset into HTML?

i just want to create a dynamic report that's why im planning to use HTML as alternative. and i don't know on how to do this in crystal report.

many thanks!
Reply With Quote
  #2  
Old 09-18-2003, 05:17 AM
mosh111 mosh111 is offline
Junior Contributor
 
Join Date: Aug 2003
Location: UK
Posts: 260
Default

Hi

I'ts been a while since I've done this so bear with me..

dim file as long
file = freeFile

open MYWEB.HTML for ouput as #FreeFile

recordset.movefirst
do until EOF

write Freefile,,recorset!data

recordset.movenext

loop

This is very simple and may not be quite what you want but its to illustrate a way of doing it

otherwise if its to append an existing web page it may be a
system32 call

Hope it is useful
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Color in Outlook using CDO adebuigny Word, PowerPoint, Outlook, and Other Office Products 7 09-18-2003 08:33 PM
Disconnected ADO Recordset sort property phredm_98 Database and Reporting 3 08-04-2003 07:55 AM
Excel Data to E-mail by range robograj Excel 14 07-01-2003 01:41 AM
HTML / CSS within a VB script manchego Web Programming 3 06-24-2003 12:28 PM
Send Email with graphics and text Greatchap Communications 2 05-16-2003 06:44 AM

Advertisement:





Free Publications
The ASP.NET 2.0 Anthology
101 Essential Tips, Tricks & Hacks - Free 156 Page Preview. Learn the most practical features and best approaches for ASP.NET.
subscribe
Programmers Heaven C# School Book -Free 338 Page eBook
The Programmers Heaven C# School book covers the .NET framework and the C# language.
subscribe
Build Your Own ASP.NET 3.5 Web Site Using C# & VB, 3rd Edition - Free 219 Page Preview!
This comprehensive step-by-step guide will help get your database-driven ASP.NET web site up and running in no time..
subscribe
 
 
-->