Results for "Volume: ASP_Volume3"
Help you send mail in HTML format , Here you can change the variables as required to suit your needs , please make it sure that the code is on live server (Server Connected to Internet) which can be accessed by http protocal
Cool GUI paint utility for C++ use. You can use the software to make and edit the Images and the add them to your programs. It even loads 16-color low resol ution BMP images, so you can transform them into this format and load em to your programs. I works only in VGA HI mode. It has many cool tools that make it a complete image editor. - It has standard tools like paint,Draw , Ellipse , Box , text with changable fonts etc.. It also has these : Flip the image horizontally or vertically , Invert colors , Cut , copy paste , Color replacer, Selective Saving capability. It manages all These functions without any memory constraint. Its memory is as big as your hard drive, but you will never need more than 350 kb. I am also supplying the file IMAGE.CPP - this is an include file for cpp programs, it contains the function to load the image : - SYNTAX : image(x1,y1,"filename") - x1,y1 are the coordinates of the image. Please see the screenshot. Have fun !! and don't forget to view the readme (V.V. Imp) I will be grateful to you for your comments and suggestions. Please Vote for me. Thanks !!
This subroutine shows how to Really put a ComboBox (or any control with a hWnd) onto a ToolBar (or any other control/window with a hWnd).
This code can be used to determine the X,Y coordinates of the mouse cursor and use them to check for idle mouse activity. This code is useful in that it does not require your current form to be in focus (active windows status). The GetCursorPos can be used in conjunction with or be replaced by another API call GetCaretPos, which determines the X,Y coordinates of the text cursor. Hopefully this will be useful to anyone looking to check for an idle desktop. (Richard Puckett, puckettr@mindspring.com)
The movie Scroller component is something I did to use in my about box for a program I'm working on. But I figured I might as well make it public so anyone else who wishes to can use it. The movie scroller component is better than the one's I saw available though I suppose there may be ones I missed which do beat it out. Here's some of the things it can do that most can't: - It uses double buffering so no flickering. - It utilizes a simple per line script that lets you define how each line of text looks. This allows you to set font, font style, and font color. - It allows you to display a shadow and control the offset and color of the shadow.
WinAdmin is based on a sample from MS. It is a taskmanager like app with extended info on drivers, services, and applications, plus a built in control panel, a change log, and quick support tab for looking up Windows errors and finding solutions. There are many examples here to learn from. The code is slightly messy and not commented very well. I hope this helps! PLEASE VOTE!!!
This is a console menu foundation class. This allows you to create menus in seconds! Methods include: AddMenu(int ID, char *Name); AddItem(int ID, char *Name, void (*Function)()); Draw(); Run(); ...
Reformats URLS for a search engine friendly format (ie look like HTML pages) back into asp querystrings for the ASP pages to use normally.
The following procedure acts similar to strtok in C++. Call it once with your string (S), and then everytime you call it from there on out, you can break your string apart with tokens! Included is a function StrMid() and an overload for StrMid that simulate the Mid() function in Visual Basic.
This is a nice and easy made PHP calender, that i easy to change and implant to your site. Pleas give a comment god or bad!
Get .exe file header info
show you how to convert a bitmap to a jpeg and how to draw a translucent color over a image
Explains an interesting way to shutdown a Windows 9x PC in only 1 Line of Source Code. But not only to shutdown... have a look for details
This code shows how to make your first C program. Nearly every line is commented. So if you are willing to learn C language then you must see this !!
This is a flat file mailing list system. It saves all member names and emails to text files and send confirmation signup emails. People can signup easily with a simple form and you can then send out an email to all members in one hit very easily.
how to make modules in delphi
A good thing to do is to never rely on autoglobals. They might just be turned off. For those not familiar with how autoglobals work, if you call a page say test.php?foo=bar, autoglobals allow you to access foo by using $foo, rather than using $_GET['foo']. However, if autoglobals are off, $foo will give a warning, and it's value will be empty rather than 'bar'. This little piece of code mimics autoglobals, thus preventing you from having to rewrite entire applications because they relied on autoglobals. Note that as of PHP 4.2, autoglobals are off by default.
This code is just an example of how to use context menus in Windows Forms, using VB.NET. Hope this helps...
This program is a console word processor that replicates Windows NotePad. So far you may only open text files and move around it. Editing feature will be added soon.
Allows sending of e-mail (SMTP) directly from a VB app using Winsock, WITH OUT having to buy an expensive add on componet