Free Educational Resource Center for teachers and students. Includes Interviews,
Sourcecode, Free Software, Research Papers, Articles, Tutorials and much more..
     R E S E A R C H A C T I V I T Y . C O M
Our Fellow Research Center for Ph.D Schollars
Home About Submit & Earn Archives: C And C + + Programming » Dev Packages » Interviews » Php Mysql Programming » Windows Programming
search

Articles




Create A Dialog In Winapi (August 21, 2009)
Create a Dialog / Window ./aimages/fig2.gif Here is a minimal dialog creation example which may help you getting started. [HCODE] #include BOOL WINAPI myProc(HWND hwnd, ...


Reduce Executable Exe Size (August 21, 2009)
Reduce Executable (exe) Size There are many ways to reduce size of the executable, Am presenting you general size reduction techniques, Compiler specific (which apply to every C/C++ compiler y...


Play Mp3, Wav, Wmv, Mpg, Avi Etc Files In Win32 Api Program (August 21, 2009)
Play au, snd, mp3, wav, wmv, asf, wma, mpg, midi, rmi, vob, dat files in Win32 API Program Playing any video or audio such as au, snd, mp3, wav, wmv, asf, wma, mpg, midi, rmi, vob, or dat files i...


Create Dll Easily In C (August 22, 2009)
Create DLL Easily In C DLL stands for Dynamic Link library you probably already know. You put few functions (and may be classes) in external file, compile it as DLL, then you call these functions ...


Creating Web Browser Easily In C With Mingw Gcc Dev Cplusplus (August 23, 2009)
This resoruce is specific to MingW-GCC users only. Your firewall software might start reporting your executable as as spyware (becuase browsers connect to internet), so better is compile projec...


Using Static Control As Image Display Box In Winapi (September 03, 2009)
Using Static Control As Image Display Box http://www.apitalk.com/aimages/fig6.gif This is a very short tutorial (a kick start), to give you idea of loading adding images to your projects. It is...


Create A Textbox And Track Change Event In Winapi (August 21, 2009)
Create a Textbox / Edit control and track change event ./aimages/fig4.gif In this example we will create a simple dialog and a simple edit control on it (text box), and track the change by the ...


Why Unicode Is Important Before You Start To Program (August 21, 2009)
Why UICODE is important before you start program First of all you must have question in mind: What is UNICODE? Unicode is a coding system in which each character is stored in 2 bytes (16b...


Start Windows Programming Win32 Api Basics (August 21, 2009)
Start Windows Programming (winapi/win32 Api basics) If you read documents one by one carefully and do not skip any part, then it is somehow guarantee that you will be able to program any kind ...


Create A Button And Track Click Event In Winapi (August 21, 2009)
Create a Button and track click event ./aimages/fig3.gif Creating simple button on a simple dialog using pure window API. And tracking the user input, i.e when user clicks the button. [HCO...


Create A Checkbox And Track Check Uncheck Events (August 21, 2009)
Create a Checkbox and track check/uncheck events ./aimages/fig5.gif Checkboxes are also created using BUTTON class, the difference is just the style, while creating a push-button we supplied...