A-PK
Wed Apr 28 04:18:27 CDT 2004
Hi Herfried,
From you information, I am able to Open Internet Explorer with button click
event.
But now i got another problem.
How could I publish dataset data to Internet Explorer ?
I already got a user-defined dataset and bind to datagrid in Windows
Application.
but now the user prefer to have a HTML format, so I hope that by clicking
one button, then that the user able to see the data shown in Internet
Explorer.
so how could I transfer dataset in Windos Application to dataset in HTML
format ?
"Herfried K. Wagner [MVP]" <hirf-spam-me-here@gmx.at> wrote in message
news:c6lf96$d0spf$3@ID-208219.news.uni-berlin.de...
> * " A-PK" <piercekerk@hotmail.com> scripsit:
> > I am writing an Windows Application in VB.net.
> > under this windows application, I would like to create one button, which
can
> > trigger a HTML file to open display the windows applicaion dataset data
on
> > Internet Explorer.
>
> Opening a file:
>
> \\\
> Imports System.Diagnostics
>
> .
> .
> .
> Dim psi As New ProcessStartInfo()
> psi.UseShellExecute = True
> psi.FileName = "C:\bla.html"
> Process.Start(psi)
> .
> .
> .
> ///
>
> --
> Herfried K. Wagner [MVP]
> <URL:
http://dotnet.mvps.org/>