Results 1 to 4 of 4

Thread: Form in Act. EXE ???

  1. #1
    mahesh_575
    Guest

    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

  2. #2
    Fanatic Member
    Join Date
    Jan 2001
    Location
    Vietnam
    Posts
    613
    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

  3. #3
    mahesh_575
    Guest
    Thank you very much !
    But can I include data entry form in an Act. EXE ???

  4. #4
    Fanatic Member
    Join Date
    Jan 2001
    Location
    Vietnam
    Posts
    613
    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
  •  



Click Here to Expand Forum to Full Width