|
-
September 22nd, 2001, 06:56 AM
#1
Code for "Undo"
what is the code for undo???
-
September 22nd, 2001, 07:27 AM
#2
Re: Code for "Undo"
Declare Function SendMessage Lib "User" (ByVal hWnd As Integer, ByVal wMsg As Integer, ByVal wParam As Integer, lParam As Any) As Long
Global Const WM_USER = &h400
Global Const EM_UNDO = WM_USER + 23
sub command1_click
UndoResult = SendMessage(myControl.hWnd, EM_UNDO, 0, 0)
end sub
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|