DJ
Davis Jebaraj
Syncfusion Team
April 13, 2005 07:22 PM UTC
Hi Anne,
You can handle the Load event of the Form and load the URL. This is how it would look for the sample after adding a handler for the Load event:
private void Form1_Load(object sender, System.EventArgs e)
{
LoadDocument("http://www.google.com");
}
Please let us know if you have any further questions.
Thanks,
Davis
AT
Anne Thorne
April 14, 2005 07:05 PM UTC
Thanks!
>Hi Anne,
>
>You can handle the Load event of the Form and load the URL. This is how it would look for the sample after adding a handler for the Load event:
>
>private void Form1_Load(object sender, System.EventArgs e)
> {
> LoadDocument("http://www.google.com");
> }
>
>Please let us know if you have any further questions.
>
>Thanks,
>
>Davis