CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Guest

    converting standard VB App to ActiveX

    Can someone please explain how to convert a standard VB application into an ActiveX ?


  2. #2
    Join Date
    Apr 2000
    Location
    Winston-Salem, NC
    Posts
    32

    Re: converting standard VB App to ActiveX

    There is no such thing as simply "ActiveX".
    There are ActiveX Dlls and ActiveX EXEs that
    can be created for distributed apps in VB.
    The first step would be to extract what people
    call the "business logic" from the existing
    project. Secondly, create subs/functions in
    class modules that reside in your component
    project. Now you can call your com object's
    methods to get your work done from within the
    existing project where the business logic used
    to set.

    == Ali R. Tahbaz, MCSD ==========================
    "Whether you think that you can, or that you can't, you are usually right."
    --Henry Ford

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

Featured