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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by philmck

  1. philmck

    Command line BCP return code?

    I have inherited a batch script which runs a number of bcp commands. My problem is that it currently tries to use the DOS style errorlevel to check for errors: bcp "DB..TABLE" in textfile.asc .......etc if errorlevel 1 ...etc bcp "DB..TABLE2" in textfile2.asc .......etc if errorlevel 1 ...etc...
  2. philmck

    Error 91 after calling function from dll

    Apologies for the typo in the original post. Should read Declare Function ConvD Lib "C:\winnt\system32\convd.dll" (ByVal inval as Double) as Double
  3. philmck

    Error 91 after calling function from dll

    I am getting an error 91 (Object or with block variable not set) in my code which I have narrowed down to the point where it exits a function which has called an exported function from a dll. I have the following line in my main module Declare Function Lib "C:\winnt\system32\convd.dll" (ByVal...
  4. philmck

    Disable items in a filelistbox ?

    Thanks - will be very useful.
  5. philmck

    Disable items in a filelistbox ?

    I have a filelistbox from which the user can select files and add/remove them to another 'target' listbox. Is there a way of disabling individual items in the filelistbox once they are added to the listbox?
  6. philmck

    document.all problem in IE5.5

    I have a couple of problems where accessing a form element using elem = document.all("elementid"); causes a 'null or not an object' error. The behaviour is inconsistent in that the problem may not always occur the first time this is invoked. By replacing this with elem =...
  7. philmck

    Referring to Parameter/Variable names in stored proc

    Thanks. Please forgive my ignorance here - Can I insert into a temp table without encountering the same problem?
  8. philmck

    Referring to Parameter/Variable names in stored proc

    I want to loop through a small piece of code for each parameter @p1 to @pn passed into my stored procedure. Is there a way I refer to the parameters indirectly? e.g. in a local variable which will change on each loop iteration? Thanks

Part and Inventory Search

Back
Top