| | |
Cbuilder Fullscreen form how to ???
Please support our C++ advertiser: Intel Parallel Studio Home
![]() |
•
•
Join Date: Jul 2005
Posts: 10
Reputation:
Solved Threads: 0
Hi guys
This is not my homework it is a private project Iam working on .... and Ive searched google for an answer...I also found a similar thread on this site but the code would not work.
Can someone tell me please how to create a full screen form in C++Builder...Ive got SDK installed if that helps.....
This is not my homework it is a private project Iam working on .... and Ive searched google for an answer...I also found a similar thread on this site but the code would not work.
Can someone tell me please how to create a full screen form in C++Builder...Ive got SDK installed if that helps.....
C++ Syntax (Toggle Plain Text)
Form1->BorderStyle=bsNone; Form1->WindowState=wsMaximized;
•
•
Join Date: Jul 2005
Posts: 10
Reputation:
Solved Threads: 0
•
•
•
•
Originally Posted by SlyMaelstrom
I believe...C++ Syntax (Toggle Plain Text)
Form1->BorderStyle=bsNone; Form1->WindowState=wsMaximized;
•
•
Join Date: Jul 2005
Posts: 10
Reputation:
Solved Threads: 0
Here is what Ive done in case someone searched for it .....
C++ Syntax (Toggle Plain Text)
Form1->FormStyle = fsStayOnTop; Form1->Width = Screen->Width; Form1->Height = Screen->Height; Form1->BorderStyle = bsNone; Form1->Top = 0; Form1->Left = 0; //and to hide the taskbar "FindWindow gets the handle of the taskbar" ShowWindow(FindWindow("Shell_TrayWnd", NULL), SW_HIDE); //to show the taskbar again ShowWindow(FindWindow("Shell_TrayWnd", NULL), SW_SHOW);
Last edited by Dave Sinkula; Oct 30th, 2005 at 10:22 am. Reason: Added [code][/code] tags.
![]() |
Similar Threads
- Making a Fullscreen form and hiding the Windows Taskbar (Pascal and Delphi)
Other Threads in the C++ Forum
- Previous Thread: New to C++ need some help
- Next Thread: Coverting varibles
| Thread Tools | Search this Thread |
api array arrays beginner binary bitmap c++ c/c++ calculator char char* class classes coding compile compiler console conversion convert count data database delete desktop developer directshow dll dynamic dynamiccharacterarray email encryption error file forms fstream function functions game getline google graph homeworkhelper iamthwee ifstream input int integer java lib linkedlist linker linux loop looping loops map math matrix memory multiple news node number numbertoword output parameter pointer problem program programming project proxy python random read recursion recursive reference return rpg sorting string strings struct template templates test text tree unix url vector video visualstudio win32 windows winsock word wordfrequency wxwidgets





