|
-
Dec 7th, 2002, 09:05 PM
#1
Thread Starter
Member
It Is Not Working!!
THIS CODE NOT WORKING
WHEN I TRY TO MAKE DLL FILE
'****************
Public Sub capFORM(FRM As Form)
FRM.Caption = "SAL1150"
End Sub
'******************
WHAY?????
-
Dec 8th, 2002, 12:20 AM
#2
VB makes COM dlls so the objects that it exposes have to be COM compatible objects. That means that they can't be specific to VB only, which the Form object is. You can pass it as the generic Object type.
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
|