TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
bill_domenz
NA
6
0
Creating an Instance of Internet Explorer in C#
Jan 5 2004 12:04 AM
AnyBody out there used this in a stand alone exe ? If so How'd did ya get to work? Works excellent if run from the compiler. using SHDocVw; private void goButton_Click(object sender, System.EventArgs e) { OpenBrowser(url.Text); } private void OpenBrowser(string url) { SHDocVw.InternetExplorer ie = new SHDocVw.InternetExplorerClass(); IWebBrowserApp wb = (IWebBrowserApp) ie; wb.Visible = true; object o = null; wb.Navigate(url, ref o, ref o, ref o, ref o); } else I recive debug errors: ************** Exception Text ************** System.IO.FileNotFoundException: File or assembly name Interop.SHDocVw, or one of its dependencies, was not found. File name: "Interop.SHDocVw" Any and I mean Any help would be greatly appreciated !!
Reply
Answers (
2
)
how can I change the rows height of the listview (enlargement the cells) ? thanks
Scrollbars for a PictureBox