|
-
May 9th, 2001, 09:14 PM
#1
Form in Act. EXE ???
I am working for huge data handling system. This is normal data read write system. and there are many more forms. Now I have some memory problem for the application.
Is it possible to make Act. EXE for every form and call it from Main menu ? Since Act. EXE does not occupy application memory space our problem can be solved. Please help me ASAP.
Thanks
Mahesh
-
May 9th, 2001, 10:37 PM
#2
Fanatic Member
You can have as much as ActiveX EXE object as you like. One thing to remember is to dereference it when you finish with it such as:
Code:
Dim objMyObject as Object
Set objMyObject = CreateObject("")
......process your work here.
'now release it
Set objMyObject = Nothing
Regards,
TheBao
-
May 9th, 2001, 10:42 PM
#3
Thank you very much !
But can I include data entry form in an Act. EXE ???
-
May 9th, 2001, 11:35 PM
#4
Fanatic Member
Just think of the ActiveX EXE object as an inbuilt library. It can have sub and functions which takes in paramers, do something with it, then return to your application result.
Regards,
TheBao
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
|