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 IamaSherpa 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. Eduofon

    This should be a simply query, but its driving me crazy

    Use this, just remove #tblMan from your select: insert into #tblAdd ( ItemNum, totQty, ManagerNum, BasePrice) select F.ItemNum, F.totQty, F.ManagerNum, F.BasePrice from #tblFin F where F.ManagerNum = '0004' and F.ItemNum not in (select ItemNum from #tblMan)
  2. Eduofon

    Launching and viewing Notepad Docs from Application

    Alright, thanks for everything. sorted it out.
  3. Eduofon

    Launching and viewing Notepad Docs from Application

    Thanks one more thing, please what's the long variable for the constant SW_SHOWNORM. Thanks
  4. Eduofon

    Launching and viewing Notepad Docs from Application

    The shell command only works for exe's. My project doesn't recognize The ShellExecute command, so what do I do?
  5. Eduofon

    Launching and viewing Notepad Docs from Application

    Need help urgently. Please how can I launch and view a Text document in Notepad on the click of a button. Thanks don't want to have to use any forms or controls to read out the file and display it first. Thanks
  6. Eduofon

    Make an Application Run As a Service

    I have an application, an exe, and I need it to run as a service so it starts up automatically when the system does and I can start and stop it from the services Console, pls how do I go about it? Thanks
  7. Eduofon

    Simple VB - COM problem

    The code in your Standard exe should be 'The difference is in the first line Dim MyYear As New CheckYear.LeapYear Private Sub Command1_Click() MsgBox MyYear.IsLeapYear("1999") End Sub This will work if your project has a reference to your CheckYear component...

Part and Inventory Search

Back
Top