Windows Application in VB.Net with HTML

  • Thread starter Thread starter A-PK
  • Start date Start date
A

A-PK

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
 
* " A-PK said:
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)
..
..
..
///
 
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
 
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 ?
 
Back
Top