Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: 7011
  • Order by date
  1. 7011

    Creating a DLL in VB6

    Follow these Steps:- 1.Open ActiveX DLL 2. write some code under any UserDefined Function public sub display() msgbox "Welcome" end sub 3.Save This File with .cls extension 4.Make this as DLL 5. Open Standard Exe Go to Project Properites under Project and...
  2. 7011

    form size

    simply mention width and height at the designing time itself.
  3. 7011

    List of Open Documents

    do u want to know all the Files opened in the system along with you VB application ?????
  4. 7011

    List of Open Documents

    u want to know all the Files opened in the system along with you VB application
  5. 7011

    webbrowser

    your have add Component Microsoft Internet Controls to your Vb Application , then u will get web browser control.
  6. 7011

    Menus

    two ways are there 1. in the designing it self mention BorderStyle = 0-None so that that menu will disappear. or 2. Restrict users to quit in the Form_Unload function whenever they Click X it will call Form_Unload function u have to write some code under this method in order to restrict.
  7. 7011

    Database

    First of all you have to add " Microsoft ActiveX Data Objects 2.1 " Library from your VB references. They Try with the following simple code :- Dim con As New ADODB.Connection Dim rs As New ADODB.Recordset If rs.State = adStateOpen Then rs.Close rs.Open...
  8. 7011

    Copy File using FileSystemObject

    by using CopyFile method in FileSystemObject FileSystemObject.CopyFile <Target>,<Source> ;-) Best Of Luck

Part and Inventory Search

Back
Top