Hi All,

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.

I already create one button, and also already added a New Item with HTML
Format under this Windows Application. now, my problem is......

1- i dun know what should I code under that HTML file in Windows Application

2- How could I call that HTML file to show up.....

Pls help.....

Thank you very much

Regards
Pierce

RE: Windows Application in VB.Net with HTML by sadhasivam1981

sadhasivam1981
Tue Apr 27 04:06:02 CDT 2004

Hi Pierce

Try using Web Browser Control

With regards

Sadha Sivam S

Re: Windows Application in VB.Net with HTML by hirf-spam-me-here

hirf-spam-me-here
Tue Apr 27 06:11:22 CDT 2004

* " 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/>

Re: Windows Application in VB.Net with HTML by A-PK

A-PK
Tue Apr 27 20:00:29 CDT 2004

HI Sadha,

you mean Create another Project with ASP.NET ?

I dun quite sure ur web browser control here... could you give me more
information

Thanks you
Pierce

"Sadha Sivam S" <sadhasivam1981@yahoo.com> wrote in message
news:B327E92B-67A4-4EDC-AC6A-873342D76E80@microsoft.com...
> Hi Pierce,
>
> Try using Web Browser Control.
>
> With regards,
>
> Sadha Sivam S



Re: Windows Application in VB.Net with HTML by A-PK

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/>