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 Mike Lewis 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. garygruber

    broken hyper link in email

    sorry, but i am not the head of the dept. in this 12 billion dollar company. so i cannot rename a network share.
  2. garygruber

    broken hyper link in email

    it is already resolving itself to that format in the debugger. thanks anyway...
  3. garygruber

    Response.Redirect() works from Page_Load() but not timer1_elapsed()

    the timer is running on a different thread than the UI. this is why you are experiencing the failure.
  4. garygruber

    detect already running

    public bool IsProcessRunning(string ProcName) { bool IsRunning = false; Process[] processes; processes = System.Diagnostics.Process.GetProcesses(); foreach (System.Diagnostics.Process instance in processes) { if (instance.ProcessName.ToUpper()==ProcName.ToUpper()) {...
  5. garygruber

    broken hyper link in email

    i have tried both single and double quotes. neither work. thanks for your interest.
  6. garygruber

    broken hyper link in email

    i am using SMTP and System.Web.Mail to create email notifications for users when reports are generated. the messages contain a hyperlink to a network folder. the folder name contains a blank space ASC(20) in it. i am sure this is a common problem but have not found a viable solution yet to...
  7. garygruber

    any C# programmers out there?

    I am trying to access several SDK functions but do not program in JAVA. i am a C# programmer. Cognos tech support can only provide me with JAVA code samples. this makes it very difficult for me to do my job. i am trying to learn the SDK and need to be able to alter permissions on a variety of...

Part and Inventory Search

Back
Top