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 gkittelson 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: Mierk
  • Order by date
  1. Mierk

    ADO.Net SQL Stored Procedure Output Parameters Help

    I am having an issue regarding the use of output parameters in a SQL Stored Procedure. I want to be able to pass a string to a Stored Procedure and have it return a string for processing in my C# app. The code that I have is this: ---------- public static bool clStatus(string strClient) {...
  2. Mierk

    VI Text editor control

    Does anyone know of a way to integrate an editor such as VI as a control in a VB project?
  3. Mierk

    FileExists Method of File System Object from ASP

    Does anyone know why it wouldn't work if we tried to use the FileExists method of the filesystemobject from an asp page on our intranet that is trying to check the existence of a file on a different server. We've tried using the unc path including the administrative share, but we can't get it...
  4. Mierk

    FileExists Method of File System Object from ASP

    Does anyone know why it wouldn't work if we tried to use the FileExists method of the filesystemobject from an asp page on our intranet that is trying to check the existence of a file on a different server. We've tried using the unc path including the administrative share, but we can't get it...
  5. Mierk

    Filtering by Even Numbers

    Just use the modulo operator (%) and check to see if the result is 0 or 1. Modulo divides one number by another and displays the remainder. Ex. 6 % 2 is 0, but 5 % 2 is 1. All even numbers will have 0 as the remainder.
  6. Mierk

    Query Analyzer Only - Who's doing what

    try using sp_who2 'active' to see what is actively running on the server.
  7. Mierk

    Query Analyzer Only - Who's doing what

    sp_who and sp_who2 are pretty handy

Part and Inventory Search

Back
Top