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 Chris Miller 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. grsmani

    Hide Modal Dialog at Startup

    You could change the InitInstance() method in the app where the modal dialog is created to create a modeless dialog but not show it. However, ensure you return true if all goes well, else the application will not start.
  2. grsmani

    Java AWT doLayout(), repaint() delay problems

    Evidently you are using Swing and not Awt. Snippets of the code would help in solving the problem.
  3. grsmani

    Returning multiple variables from a funciton.

    Well, you cannot return multiple variables using reference (if the variables are objects) like in C++. You need to send back the multiple values in an array if all are the same type or as a Vector. You can do one step further if you want type safety. Create a value-holder class, instantiate it...

Part and Inventory Search

Back
Top