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. sil3nt2004

    Progressbar while opening report

    Hi, I'm currently working on a project were a user select a report from a Open File Dialog. What I would like to do, is to add a Progressbar to give the user an indication of how long it will take to open/run the report once they select the report file from the Open File Dialog. My Questions...
  2. sil3nt2004

    Validating textbox for string input

    Thank you guys, both solutions solved my problem. Appreciate it!
  3. sil3nt2004

    Validating textbox for string input

    Hi, I'm using to following method to validate for numeric input: private bool IsNumeric(string strText) { try { int test = int.Parse(strText); return true; } catch (Exception e) { return false; } } How can I check for string input using a similar method...
  4. sil3nt2004

    Centering the popup window

    Thank you guys! That pretty much solved my problem! sil3nt
  5. sil3nt2004

    Centering the popup window

    Hi guys! Can anybody please tell me how to go by centering a popup window on the screen. I want to be able to center the popup window no matter the screen resolution. Here is the javascript I use to make my popup windows: <SCRIPT LANGUAGE="JavaScript"> function open_window(url) { mywin =...

Part and Inventory Search

Back
Top