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 Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Some elementary questions!

Status
Not open for further replies.

cheraghchi

Programmer
Joined
May 28, 2001
Messages
3
Location
CZ
Hi everybody!

1. Where is the main() function in VC++? I know I need it rerely, but I want to know where it is!
2. How can I put an splitter in my form?
3. How can I create a splash screen?

Thanks
M.C.H
 
main for an executable is in crtexe.c in your equivalent of C:\Program Files\Microsoft Visual Studio\VC98\CRT\SRC. Also look at crtdll.c

The easiest Visual C++ way to put in a splitter is to use MFC and a CSplitterWnd, documented in MSDN

Visual C++ ships with a sample called SuperPad that demonstrates adding a splash screen component



 
for adding splash screen, choose menu "project | add to project | component and controls", click on "visual c++ components", and choose "splash screen".
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top