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

    surpressing the enter key

    Check the window.event.keycode in javascript. I believe its 13 for enter. If the keycode is 13 return false.
  2. Zoooom

    Display Wait Dialog

    Try this http://www.codeproject.com/aspnet/wait_page.asp
  3. Zoooom

    C# Inheritance and Polymorphism Guidance

    Here try this class MainClass { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main(string[] args) { BaseClass MyObject = new BaseClass(); string UserInput = "1"; if (UserInput == "1") { MyObject = new Class1()...
  4. Zoooom

    Help On Constructors in nested 'Has a ' classes

    Here ... you need to instantiate every instance of C to see it contain cells with 200 int so your class B will look like this public class B { public C[] c; public int x; public B(int num) { x = num; c = new C[num]; for(int i=0; i<num;i++) { c[i]= new C(); } } }
  5. Zoooom

    Write text to focused field within another window

    Yes you can if the windows have a parent child relationship...It can be easily done using Javascript.
  6. Zoooom

    What kind of collection?

    Use a struct (Declare two members of the struct) and add that struct to an arraylist...

Part and Inventory Search

Back
Top