Advertisement

Results for "Volume: 4_2005-2006"

4_2005-2006 #152078
Change image in another frame using onMouseOver

How can I change an image in another frame using onMouseOver? Found at:http://www.irt.org/

4_2005-2006 #152158
Send a string to the clipboard

Without using OLE... Michael Pickens mfc_faq@stingray.com

4_2005-2006 #152163
Windows Screen Saver Password Decoder

Tells you the Windows screen saver password

4_2005-2006 #161595
How Connecting a Access Table Using C#

This example showes you how to access a Microsoft Access Table using a C# class. Any feed back will be appreciate. Do not forget to vote !!!

4_2005-2006 #159698
Send email with Attachments from ASP .Net Page

Send email with attachments from an ASP .Net page. Basically the example demostrates the use of System.Web.Mail Namespace classes. Important:Create a subdirectory "email" in your IIS web root create a subdirectory "uploads" in this "email" directory, copy all files in email directory (with folder structure). Open the project in Visual Studio .Net, change the SMTP server name to your SMTP server name in code and compile before running the example.

4_2005-2006 #152168
encapsulate Memory Mapped Files

Memory mapping is a powerful mechanism Win32 provides to implement shared memory and also to access files though a simple memory pointer without having to implement your own home brewed buffering mechanisms. As an example its as simple as calling void* lpData = mmf.Open(); CharUpperBuff((char*) lpData, mmf.GetLength()); to convert a file (of any length) to upper case. Areas where you might find this of interest include very large database files with fixed records, audio processing, string operations and image processing. The other side of memory mapped files is to implement shared memory. As you will probably know, Win32 puts each process into its own address space, thus making it impossible to pass ordinary pointers across process boundaries. With memory mapped files you get back this very useful mechanism. The enclosed zip file contains the CMemMapFile source code and a simple dialog based application which demonstrates all the functionality of the class. For further details about the example program have a look at the BOOL CTestmemmapApp::InitInstance() function and the CDialog1 member functions both in testmemmap.cpp PJ Naughter at http://indigo.ie/~pjn/index.html

4_2005-2006 #163371
How to create context menus without using contextmenu control

This example will create simple context menus without using contextmenu control.

4_2005-2006 #149685
Quick tip on how to handle NULL in ADO.net

If you're an old ADO programmer, you may be frustrated by not knowing exactly how to check for NULL. Here's a 1 second tip on how to do it in ADO.NET.

4_2005-2006 #152169
Windows 95/98 perfomance counters

DynData v1.0 A collection of freeware MFC classes to encapsulate the Windows 95/98 performance counters. Ever wanted to write some code to determine the amount of bytes sent or received by Dial-Up Networking, what is the current CPU Usage or how many threads are currently running on the system?. The classes provided allow you do query any of these parameters, or to query the availability of performance objects and heir counters both on the local machine and any machine on the network. Please note that since NT has its own version of performance counters which are incompatible with the 95/98 versions, these classes will not work on NT. If you want classes to work with NT, have a look at the CPdh classes which I have developed.

4_2005-2006 #149690
Lights Out!

A simple time-waster game I used to check out graphics and deployment ideas. About as engaging as Minesweeper. Fun for all ages! <g>

4_2005-2006 #154818
Run Program On Startup (Registry)

Places your program in the Windows Registry so it will run at startup.

4_2005-2006 #152170
POP3 protocol

Welcome to CPop3Connection, a freeware MFC class to support the POP3 protocol. POP3 for those not familiar with all the internet protocols is the protocol used to retrieve internet email. For detailed information about the Post Office Protocol Version 3 you should read RFC 1725. You should also refer to RFC 822 which contains details on the layout of messages. You can find numerous Web Servers which carry these documents by going to www.yahoo.com and look for RFC and 1725 or 822.

4_2005-2006 #163590
Website Explorer

Allows user to: -browse the directories on a web server, -create, view and delete files -create and delete folders -edit text based files -view contents of files that you normally could not view over a web server(ex. .aspx files) -upload files to any directory

4_2005-2006 #152171
MFC class to support the SMTP protocol

Welcome to CSMTPConnection, a freeware MFC class to support the SMTP protocol. SMTP for those not familiar with all the internet protocols is the protocol used to send internet email. For detailed information about the Simple Mail Transfer Protocol you should read RFC 821, You can find numerous servers which carry these documents by going to www.yahoo.com and look for RFC and 821 and/or 2045. Features Simple and clean C++ interface. The interface provided is synchronous which provides an easier programming model than using asynchronous sockets. The code does not rely on the MFC socket classes. These classes have a number of shortcomings, one of which causes problems when they are used in NT services. The code can be used in a console application without any problems (Again this is not the case for the MFC socket classes). A configurable timeout for the connection can be set through the class API. The classes are fully Unicode compliant and include Unicode built options in the workspace file. As of v1.1, the classes now fully supports file attachments. Full support is included for CC (Carbon Copy) & BCC (Blind Carbon Copy). PJ Naughter at http://indigo.ie/~pjn/index.html

4_2005-2006 #152172
Class to encapsulate the PING protocol

MFC class to support the PING/ICMP protocol. ICMP for those not familiar with all the internet protocols is the protocol used to retrieve information about how IP packets are routed. Features Simple and clean C++ interface. The interface provided is synchronous which provides an easier programming model than using asynchronous sockets. A configurable timeout for the connection can be set through the class API. The classes are fully Unicode compliant and include Unicode built options in the workspace file. The enclosed zip file contains the CPing source code and a simple test program to exercise all of the functions the classes provide.

4_2005-2006 #163286
Delayed Stock Quotes

Returns Delayed Stock Quotes from a web service.

4_2005-2006 #156617
Speech 5.1 With VB.Net

Simple TTS with VB Net and Microsoft's Speech API 5.1.

4_2005-2006 #149710
Create a form bigger than the screen!

The primary focus here is to allow you to display forms that are larger than the screen can show. Need an 8½" x 11" Form? NO Problem!The size used in this example is 8½" x 11", but it could just as easily be landscape, envelope, or any needed size.

4_2005-2006 #163470
Adding controls withevents at runtime in VB .NET

Sometimes it is necessary to add controls at runtime or use a dynamic array of controls and you want to have events too , this tutorial will show you how to do this.

4_2005-2006 #149711
Create multi-Colored forms without using the API

Although using the API is a nice way to create multi-colored forms, there might be a reason why you would wish to create one without using the API.

Languages
Top Categories
Global Discovery