i want to display certain webpage in my windows form, the code i used is as follow....
private void button1_Click(object sender, System.EventArgs e)
{
object Zero = 0;
object EmptyString = "";
string webpage="http://bursa.n2nconnect.com/BursaStockSearchAll.htm";
axWebBrowser1.Navigate(webpage, ref Zero, ref EmptyString, ref EmptyString, ref EmptyString);
}
if i use the above coding, it will display the webpage in my windows form, but how can i disable all the button so that user cant click any button on the displayed webpage
or how can i disable the displayed webpage or to make it readonly is there such a way to do that

display webpage in windows form
Eduardo A. Carro
yale
// hope this might help
Ron Fowler
RBolander
may i know how to set the allownavigation to false
i cant find it in the axwebbrowser properties window....
hope to receive ur reply....thank you
Bozer
Xpou
NawarT
thank you...i will try it out...
but can tell me how to write the code to set the next control to false
thank you for your help....