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

    How to Avoid using ActiveX Control In VB ?

    Hi
    I wanna avoid using any ActiveX control in VB so that I needn't distribute the disgusting OCX along with the generated executable file.

    What codes can be used to replace the TextBox ActiveX Control ?
    What Codes can be used to replace the Option button ?
    What Codes can be used to replace the Command Button ?
    What Codes can be used to replace the Combo Box ?

    I've tried Turbo Pascal for Windows, the compiled file is nice and pretty small (16kb), I can run it everywhere without any required OCX and DLL files.


  2. #2
    Join Date
    Apr 1999
    Location
    Netherlands
    Posts
    181

    Re: How to Avoid using ActiveX Control In VB ?

    Controls like the textbox, option button, etc. are build in in VB.
    You don't need any ocx for those, only the runtime dll's. But you need them anyway...

    Crazy D @ Work :-)

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