Learn how to Make Money Online | Free Tech Magazines
Go4Expert
Go4Expert RSS Feed

Go Back   Programming and SEO Forum >  Go4Expert > Articles / Source Code > Programming

Post New Thread  Submit New Article Copy HTML to Clipboard  Copy BBCode to Clipboard  Add to del.icio.us  Add to Google  Digg it  Add to Yahoo !  Add to Windows Live  Add to Facebook  Add to StumbleUpon 
Tutorials and Source Code in : MFC / Win32 Bookmarks Forum Tools Search this Forum
Announcement
Views: 11,611 View Announcement Announcement: Rules for Duplicate Article Submission
10-08-2008 shabbir (Go4Expert Founder)
  Rating Article / Author Last Post Reverse Sort Order Replies Views
Wink
d_arin100
Introduction Event is one type of kernel object that Windows provides for thread synchronization. Here I shall describe the Win32 event as well as MFC event. MFC's CEvent class encapsulates Win32 event objects. Generally events are used in cases when one thread is supposed to start its job...
11-18-2009 05:56 AM
by rasd123 Go to last post
2 422
Cool
d_arin100
Introduction This article is about how static or implicit linking can be done and how the client program gets the information from Dynamic link library (DLL). The two ways we can link a DLL to the client program. One is “Static linking” another is “Dynamic linking”. Here our topic is static...
11-17-2009 09:27 AM
by shabbir Go to last post
6 634
Arrow
d_arin100
Introduction This article is about how we can create controls dynamically without using wizard and how to handle notification for dynamically created control. Here I will try to explain it by the notification BN_CLICKED for a button. Working Following three things we need to do for...
11-11-2009 06:18 AM
by rasd123 Go to last post
2 411
Cool
d_arin100
Introduction This article will explain how we can explicitly link a DLL and why this approach is better than the implicit linking mechanism of a DLL. Explicit linking is more appropriate for interpreted languages such as Visual Basic, but we can use it from C++. In this linking mechanism we...
11-08-2009 06:28 AM
by rasd123 Go to last post
2 607
Wink
d_arin100
Introduction Here I shall describe the methods of how data is exchanged between windows of different processes. Communication between windows means one window process send/post a message/data to the other window process. The Windows operating system provides the mechanism for communications and...
11-04-2009 08:23 AM
by rasd123 Go to last post
2 700
Wink
d_arin100
Introduction Subclassing is a very powerful tool in creating your own custom controls and modifying the standard windows interface. This is typically done by replacing the Window Procedure for a window with application-defined window procedure. Subclassing is a technique that allows an...
11-01-2009 07:50 PM
by shabbir Go to last post
2 442
Wink
d_arin100
Introduction Socket is an interface between an application process and transport layer. The application process can send or receive messages to/from another application process (local or Network) through a socket. Winsock is the lowest level Windows API for TCP/IP programming. Part of the code...
11-01-2009 07:50 PM
by shabbir Go to last post
1 379
 
Thread Rating: 2 votes, 5.00 average. shabbir
Define a CBrush pointer in your dialog Class CBrush *brush; Initialize the brush pointer in the constructor of your Dialog brush = new CBrush(RGB(49,49,49)); Add the WM_CTLCOLR Message handler for the dialog and add the following code switch (nCtlColor) { case...
10-01-2009 01:15 AM
by coolerfantasy Go to last post
18 23,272
Exclamation
shabbir
I was a FAN of Resource hacker software and always wanted to create a software like them but one day I just thought lets make a mini version of resource hacker and so wrote a program to change the ICON of an exe or dll file. The idea came to me when I saw programs that can show you the ICONS in an...
09-28-2009 08:39 PM
by shabbir Go to last post
58 33,897
Wink
Obaid
Introduction Windows communicate with the application by sending messages. There are many Windows messages and each message is represented by a unique integer value.In WINDOWS.H there are standard names for these messages. There are some common Windows messages like:-...
09-16-2009 07:46 AM
by rajeev_rsd Go to last post
2 3,087
 
coderzone
Introduction There a quite a few ways to start a process C run-time libraries system() _exec() _spawn() Win32 API
09-16-2009 07:41 AM
by rajeev_rsd Go to last post
2 1,167
Poll
alok
Introduction Hello Guys, Back again with new Article. this time I am going to explain Enumeration of Windows service, it’s Starting & Stopping , Changing Startup Type between Automatic, Manual And Disable, And Most Important One Deleting the Service(Please handle this Option With Care, if this...
09-15-2009 09:07 AM
by naimish Go to last post
4 5,953
 
shabbir
This article will show you how you can convert all your applications from Windows 98 looks to the Windows XP looks. Its just too simple and does not require any code changes from the developers point of view. Other all things are expected to work as normal. Note that MSDN requires you to call...
08-08-2009 08:24 AM
by Michaelzee Go to last post
17 13,928
 
shabbir
MFC does not allow to trap all the events on the CButton control but some commonly used events like BN_CLICKED and BN_DOUBLECLICKED and so to trap a right mouse button events on a CButton MFC you need to derive a new class from the CButton. MyButton.h class CMyButton : public CButton { //...
07-13-2009 06:12 AM
by Panarchy Go to last post
16 7,632
 
shabbir
Create a Dialog based application and add a menu. First you need to declare some variables in the the header file of your Dialog. #define MYWM_NOTIFYICON (WM_USER+1) //User defined messages. CMenu m_TrayMenu; //Displaying menu when right clicked on the system tray....
05-29-2009 02:05 PM
by MunkeN Go to last post
21 20,979
 
Thread Rating: 1 votes, 5.00 average. subhasish
Consider a simple EXE COM server, FooServer. Let's assume FooServer exposes an object Foo that has a method Bar: IFoo = interface procedure Bar; end; Let's also assume that FooServer has no clue what multithreading is and is therefore single-threaded just like any normal application....
05-26-2009 11:34 AM
by rajdeep.podder Go to last post
3 5,709
Lightbulb
shabbir
Introduction Let us see this in details of implementation How Modal and Modeless Dialogs are implemented by Windows How Modal Dialog works How Modeless Dialog works Introduction There are two types of dialog boxes they are modal and modeless. The most common dialog boxes are modal. A...
01-06-2009 12:26 PM
by shabbir Go to last post
1 3,449
 
oogabooga
Introduction Here's a little program I wrote that shows the color under the cursor as well as the cursor's position. It's useful for grabbing colors from websites or pictures. The Code It's in Win32 C. I compile it with gcc under Dev-C++. In order to get it to compile on MSVC++ (which I've...
11-16-2008 06:45 PM
by shabbir Go to last post
1 2,122
 
shabbir
When you insert a picture on a Dialog box the main aim of your dialog box is just not to display the Resource bitmaps that are added at compile time but to display the image from a file. Now to display a bitmap I could not find many good resources but if you google out with the keyword LoadPic.exe...
09-12-2008 12:33 PM
by mcbals Go to last post
44 52,739
 
Thread Rating: 1 votes, 5.00 average. aisha.ansari84
INTRODUCTION This code will help us to understand the working of a pop3 client server through sockets. BACKGROUND Through this any person can retrive certain details of his mails such as the subject , the size. The person needs to know about his username , his password, IP address...
06-20-2008 08:02 PM
by asadullah.ansari Go to last post
1 2,327
Post New Thread  Submit New Article Copy HTML to Clipboard  Copy BBCode to Clipboard  Add to del.icio.us  Add to Google  Digg it  Add to Yahoo !  Add to Windows Live  Add to Facebook  Add to StumbleUpon 

Display Options Currently Active Users
Showing articles 1 to 20 of 42 3 (0 members & 3 guests)
 
Forum Tools Search this Forum
Search this Forum :

Advanced Search
Bookmarks

New comments New comments More than 15 replies or 150 views Hot articles with new comments
No new comments No new comments More than 15 replies or 150 views Hot article with no new comments
Closed Thread Article is closed  
 
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump
 

All times are GMT +5.5. The time now is 03:59 AM.