Computing.Net > Forums > Programming > How can get text from object

Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.

How can get text from object

Reply to Message Icon

Name: MSNamvari
Date: February 22, 2002 at 01:30:27 Pacific
Comment:

hi
i want to get text from objects
i can get handle of object HWND but i cant
acces to text of that.
in fact i want write a program like
Babylon Translator program



Sponsored Link
Ads by Google

Response Number 1
Name: Tom
Date: February 22, 2002 at 05:25:52 Pacific
Reply:

Use GetDlgItemText(HWND, int, char*, int);
The first int is the id of the object, the char* is the buffer that you want to copy the text to, and I think (not sure) the last int is for the size of the buffer.


0

Response Number 2
Name: The Wanderer
Date: February 22, 2002 at 06:22:54 Pacific
Reply:

There are several ways. Here is the most basic one:

int GetWindowText(
HWND hWnd, // handle to window or control
LPTSTR lpString, // text buffer
int nMaxCount // maximum number of characters to copy
);


0

Response Number 3
Name: That Wanderer
Date: February 22, 2002 at 06:25:19 Pacific
Reply:

And this one many be more basic somehow.

SendMessage(
(HWND) hWnd,
// handle to destination window
WM_GETTEXT,
// message to send
(WPARAM) wParam,
// number of characters to copy
(LPARAM) lParam
// text buffer
);


0

Sponsored Link
Ads by Google
Reply to Message Icon

Related Posts

See More







Post Locked

This post is quite old and has been locked from receiving new replies. Please create a new posting instead.


Go to Programming Forum Home


Sponsored links

Ads by Google


Results for: How can get text from object

how to get message from net send b www.computing.net/answers/programming/how-to-get-message-from-net-send-b/7359.html

How can i copy and paste text in vb www.computing.net/answers/programming/how-can-i-copy-and-paste-text-in-vb/5312.html

how to get image link from database www.computing.net/answers/programming/how-to-get-image-link-from-database/1363.html