Results for "Category: Files/ File Controls/ Input/ Output"
Why are you waiting for ?? quick download this and become a really awesome GUI maker. This contains a list of new functions which will enable you to put 3D Windows - like buttons,windows,checkboxes,progressbars etc.. to your programs. This also contains an example to what you can really do. example: to open a 3D window with a close button , title etc you can use --- openwindow(10,10,620,460,"Title"); That's it & you will have a cool window on your screen. Not only this , you can change colors,fillpatterns etc for your things. For your benifit this also contains codes for using mouse in TC.
This is a console menu foundation class. This allows you to create menus in seconds! Methods include: AddMenu(int ID, char *Name); AddItem(int ID, char *Name, void (*Function)()); Draw(); Run(); ...
This program is a simple Menu which uses the UP, DOWN, PGUP, PGDN, ESC and ENTER keys. You can use is to create more then one menu with the same code.
This program displays a message in a small default Windows message box along with an icon. It performs no other function.
This program adds a toolbar without modification to the cWindow class. This program also incorporates a menu and a text edit client area. When the user clicks on the On/Off icon, a different message is displayed in the client area. This program performs no other function (at least, any useful function).
Simulates wait time (time unit is one loop iteration) of a queue much like a line at a bank. Uses a Que Class, Server List Class, Server Class, Timer Class and a driver (Simulate.cpp)
It's an example of using a few controls on a dialog box. The program doesn't really do anything useful.
Just a skeleton to look out when building yours. So you can remember how each part goes into the window skeleton using the platform SDK. My friend asked for this.
A class for creating Windows, Buttons, Edit boxes, and Multiline Edit boxes. It is very simple to use, and later I will add more types(Listbox, static(label), frame, etc). I included project files for Brland C++ Builder 5, and MS Visual C++ 6.
This is a GREAT / COOL program that would let begginers write your C, C++ programs in windows rather that DOS.
Heres a good example that shows you how to create a window, with a rich edit box. Also shows how you can manipulate the edit box, attach notification messages to it, and highlight/change areas of text.
This source code will show you how to setup your program to be able to minimize to the system tray, or to make a program that runs from the system tray. Shows how you can make a menu (not from resource), and then have it popup when they right click, or double click the icon in the system tray. Fully commented so you can understand.
There are two different programs which come in this *.zip file. One of them is about User-Feedback. The other code is about using edit boxes. This also comes with a really great e-book on: “Writing your first dialog based application using Visual C++.” I strongly recommend you read this e-book if you are just starting to program in Visual C++ (Uses MFC).
Simple program to show how the change the text color of a static/label window. Also how to use the Font common dialog to change the font. Written with only Win32/Platform SDK (ie. no MFC or VCL)
Simple Win32 program to demonstrate the shell 'Select Directory' browse dialog. This is useful when you want the user to select a directory, rather than a specific file. It is not as well documented as the 'Open File' common dialog in the win32 help. It took me a while to find it.
Demonstrates how to make a hyperlink, no subclassing or mouse capturing, and the result is a proper looking hyperlink...really easy! Also includes a statusbar if anyone's interested. (win32 API code, heaps of comments)
How to use 'Regions' to create different shaped windows.
This code shows how to easily and quickly create a menu on a non-mfc window using winapi. I this code is versatile, and extremely useful as I for one hate resources. This example deals with making a "file --> exit" menu. The methods used in making this apply to all menus.
Shows how to implement menus in your Win32 application
An example of how to use the WM_NOTIFY message to give tooltips when the mouse hovers over a button in a toolbar. (Also shows toolbar creation).