Creating c , c++ dll file in windows platform, example prog
[H3]C and C++[/H3]Microsoft Visual C++ (MSVC) provides a number of extensions to standard C++ which allow
functions to be specified as imported or exported directly in the C++ code; these have
bee..more
vcpp - A simple printing Application
In this application we would draw a circle and a rectangle, display
some text and then try to print it on the printer. We would also
provide support for print previewing and print setup. The 'File..more
VC++ - Line Drawing using Document / view Architecture
/*
The view class should access this data and draw a line in the view window.
Here is the program which achieves this..
*/
// cline.h
struct cline
{
CPoint startpt ;
CPoint endpt ;
} ;
..more
VC++ - Simple program creates window , Hello world program
// Header file 1
// myapp.h
class myapp : public CWinApp
{
public :
BOOL InitInstance( ) ;
} ;
// Header file 2
// myframe.h
class myframe : public CFrameWnd
{
public :
myframe( ) ;
void OnPaint(..more
VC++ - Display message box and simple window
// Header file 1
// myapp.h
class myapp : public CWinApp
{
public :
BOOL InitInstance( ) ;
} ;
// Header file 2
// myframe.h
class myframe : public CFrameWnd
{
public :
myframe( ) ;
int OnCreate ( LPCREATESTRU..more
VC++ - Line Drawing, Shapes and saving, using Document / vi
/*
The cline Class
Our program stores the information about the lines thar are drawn in an array of cline objects. The cline
class is publicly derived from CObject. This makes it easy for us to add serialization support to the cline
class. so..more
Beginners Guide to Dialog based Application
In this tutorial we are going to create a simple
dialog based application. We will use Button, Edit
Box, Combo Box, List Box and Static text controls
to develop our project. We will be going throug..
creating Dll in windows
Dynamic-link library (also written without the
hyphen), or DLL, is Microsoft's implementation of
the shared library concept in the Microsoft
Windows and OS/2 operating systems. These
libraries usu..
VCpp - S60 SDK and tools on Windows Vista - a
Developer Discussion Boards Multimedia Technology
and Content Location Based Services and
Navigation Is Realtime Fishing LBS Content the
Killer App for Nokia Mobile?..
VCpp - Driver Development Part 6: Introductio
Introduction
It has been a while since I have updated this
series and I have found some free time to write
the next version. In this article, we will take a
look at how to write a simple display..
VCpp - This is a simple Windows based service
This is a simple Windows based services
application which is created using
Win32 - VC++. The usage of this
application is - it will act as a
Windows service which is able to fork
and monitor..