Tip Bank

DevX - Software Development Resource

Splash Page Creation

Question: I would like to show a splash page and have it time out after approximately five seconds. How do I do that? Answer: Presumably you would like to display

DevX - Software Development Resource

Programming Languages

Question: My company, a strictly a VC++ development group, is considering developing a large real-time database/imaging application in both VB and VC++. What are the pros/cons of doing this, and

DevX - Software Development Resource

Inner Classes

Question: Why can’t I have a static member in an inner class? Answer: The simple answer is that static member variables and methods aredisallowed by the Inner Classes Specification that

DevX - Software Development Resource

Size of C++ executable

Question: Does one need a runtime DLL for an .exe file written with MFC in Visual C++? Can one make a standalone .exe program with C++ that is small and

DevX - Software Development Resource

Delaying a Program

Question: Can you please tell me how to delay the program flow in Java? I can’t find any implementation of delay(). Answer: To introduce a delay into your program, use

DevX - Software Development Resource

Array of pointers.

Question: I need to pass an array of pointers to a class to a function. The function is: void myFunc(myClass *example[]); The problem is that I need to define the

DevX - Software Development Resource

NT RAS error codes

Question: Where can I go to decipher Microsoft error codes? I am having trouble making one NT workstation dial in to my RRAS server; I get a TCP/IP error code

DevX - Software Development Resource

Returning strings from functions

Question: I would like to write a function that receivesan integer and converts this into a string representing the integers value in binary. At the moment I am struggling to