Just press Ctrl-C. I never knew that!
http://weblogs.asp.net/chuckop/archive/ ... 10153.aspx
How to copy text from a message box
- netmaestro
- PureBasic Bullfrog
- Posts: 8451
- Joined: Wed Jul 06, 2005 5:42 am
- Location: Fort Nelson, BC, Canada
Also, if you know the hwnd of the messagebox, as you will if you hooked it, you can do:
Code: Select all
messagetext.s = Space(512)
GetDlgItemText_(hwnd, $FFFF, @messagetext, 512)
BERESHEIT