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: *

  1. PetMel

    Newbie question about registering an ocx

    Have you tried registering it with regsvr32? In case you're not sure how to do this; - Open the windows explorer and go to where the dll is. - Click on <start> <run> and then type regsvr32. - Then drag the dll file from windows explorer to right after this command. - Hit enter and you should...
  2. PetMel

    Error using ActiveX EXE on server

    No need to use DCOMCNFG to register an AxtiveX.exe-file. Just run the executable from a command prompt or from <start> <RUN> with /register after it. So to register 'myapp.exe'; you run 'myapp.exe /register' (don't forget to add the full path) It will then register itself automatically.
  3. PetMel

    Allow only one instance of an application to run?

    Thanks TheTuna, much appreciated :-)
  4. PetMel

    Allow only one instance of an application to run?

    This is the easiest way to prevent a second instance from running; in the FORM_LOAD add; If (App.PrevInstance = True) Then MsgBox &quot;<yourname>.exe already started!&quot;, vbOKOnly + vbExclamation, &quot;Startup Error&quot; End End If
  5. PetMel

    Data Report Grouping

    It is possible to do, but not simple. What you need to do is create a hierarchical recordset using the SHAPE-APPEND command. To enable this, first change the connection-string for SQL server to include; Provider=MSDataShape.1;Data Provider=SQLOLEDB Change the Query string to include the...

Part and Inventory Search

Back
Top