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
keenweng2001
NA
27
0
capture IE URL
Aug 22 2004 6:39 AM
hello, i am try to capturing the url that disply on the internet explorer. i read through few sample and article, i able to get all IEFrame and childWindows already, but i am struct on the SendMessage dll. Can anyone help me to modify this part of code, i am totally lost in here. Below is my code: [DllImport("User32.Dll")] public static extern long PostMessage(Int hWnd, long msg, long wParam, long lParam); private const long WM_GETTEXTLENGTH = 0x000E; private const long WM_GETTEXT =0x000D; private static string WindowText(int window_hwnd) { long txtlen; long txt1=""; txtlen = PostMessage(window_hwnd, WM_GETTEXTLENGTH, 0x00000000, 0x00000000); txtlen = PostMessage(window_hwnd, WM_GETTEXT, txtlen, txt1); return txt1; }
Reply
Answers (
0
)
Removing BinderManagerBase from Form.BindingContext: possible?
Microsoft Application Blocks.