-
Outputting results
I have been playing with Visual Basic for a while now and there is still one
thing that I don't know how to do but want to. When I query a database or
even just store information into memory I want to be able to ouput the results
to a html file.
can anybody help point me in the right direction.
thanks
-
Re: Outputting results
Assuming you know HTML and how to get info from a Database. Here's a crude
sample to write the file.
Public Sub WriteHTML(sFile as String, sHTML as string)
'Aircode
dim i as integer
i=freefile
open sFile for output as #i
Print #i,sHTML;
Close #i
End sub
--
~~~
!ti timda I ,KO
..em deppals nocaeB sivaM
!draH
~~
C'Ya,
mrfelis@yahoo!com
Stephen <steve@microagepei.com> wrote in message
news:3a68ab28$1@news.devx.com...
>
> I have been playing with Visual Basic for a while now and there is still
one
> thing that I don't know how to do but want to. When I query a database or
> even just store information into memory I want to be able to ouput the
results
> to a html file.
>
> can anybody help point me in the right direction.
>
> thanks