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

Latest Resources - last update November 10, 2009 [08:53:40AM]


Implementing Associative Arrays In C + + September 11, 2009

Implementing associative arrays in C/C++ This article demonstrates using string/char* indexes in regular C array, e.g. myArray["age"]=10; We usually use numaric indexes in arrays with C and C+...



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...



Creating Web Browser Easily In C With Mingw Gcc Dev C++ 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...



Easy C++ Delegates Generic Properties Closures Thunks August 22, 2009

Easy C++ - Delegates / Generic Properties / Closures / Thunks Purpose of this document is not to start yet another discussion, but taking implementation of delegates in C++ (which nomrally most of ...



Why Unicode Is Important Before You Start To Program August 22, 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 22, 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 ...



Reduce Executable Exe Size August 22, 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 22, 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 ...



Create A Textbox And Track Change Event In Winapi August 22, 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 ...



Create A Dialog In Winapi August 22, 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, ...



Create A Checkbox And Track Check Uncheck Events August 22, 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...



Create A Button And Track Click Event In Winapi August 22, 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...



Reading And Writing Files In Php August 22, 2009

Reading and Writing files in PHP PHP follows almost same way of writing and manipulating files as in standard C. That is why it becomes so easy for a developer with C lanaguage background to c...



Easy Way To Upload Files Using Php August 22, 2009

Easy way to Upload files using PHP There is a traditional way of uploading files in php usually developers use, that is, use functions is_uploaded_file() and move_uplaoded_file(). These funct...



Using Vector Instead Of Arrays To Prevent Most Of Memory Leaks August 22, 2009

Using vector instead of arrays to prevent most of memory leaks Most of beginners define arrays of limited size such as: int array[100]; // array that can accomodate 100 integer values ...



Tcc Efficient C Compiler Discovery August 22, 2009

There are many C compilers available around you, some are free and some are packaged as commercial products. The ones you definitely already know are: Microsoft Compilers GNU Free Compilers (G...