|
-
Aug 13th, 2000, 04:27 PM
#1
Thread Starter
New Member
I want to use this Function from the user32.dll ...
I don't know how to declare it in my VBA6 code
-
Aug 13th, 2000, 04:33 PM
#2
Fanatic Member
Use the VB API viewer, if you have VB IDE, else post it here and i will look it up and post Declare
if it's SetWindowLong like your title then:
Code:
Public Declare Function SetWindowLong Lib "user32" Alias "SetWindowLongA" (ByVal hwnd As Long, ByVal nIndex As Long, ByVal dwNewLong As Long) As Long
GWDASH
[b]VB6, Perl, ASP, HTML, JavaScript, VBScript, SQL, C, C++, Linux , Java, PHP, MySQL, XML[b]
-
Aug 13th, 2000, 04:33 PM
#3
add this in the general declarations
Code:
Private Declare Function SetWindowLong Lib "user32" Alias "SetWindowLongA" (ByVal hwnd As Long, ByVal nIndex As Long, ByVal dwNewLong As Long) As Long
-
Aug 13th, 2000, 04:39 PM
#4
Thread Starter
New Member
Thanks
Where could i get documentation about user32.dll ?
-
Aug 13th, 2000, 04:41 PM
#5
Fanatic Member
GWDASH
[b]VB6, Perl, ASP, HTML, JavaScript, VBScript, SQL, C, C++, Linux , Java, PHP, MySQL, XML[b]
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
|