A wanderous mind, searching something, what is it, thats the peak of inner self, trying to conciously seek the inner being.... haahhah but sways here nd there like a mad man!.....
Thats all it takes to wander around!
Wednesday, March 16, 2005
Code to Open an IE Window from a Windows Form in C#
Process p = new Process(); p.StartInfo.FileName = "iexplore.exe"; p.StartInfo.WindowStyle = ProcessWindowStyle.Maximized; p.StartInfo.Arguments = www.google.com p.Start();
No comments:
Post a Comment