Results for "Volume: 2002C"
Hide the clock on the taskbar with not much code.
Improved code production, index/relation handling and now supports Queries. Database Coder analyses an Access Database and produces the code to create a blank copy of it. Supports Tables, Fields, Indexes, Relations and Queries. Interested in comments. Updated 26 May 2000: Improved handling of default field values and minor bug fix.
SMTP email without mswinsck.ocx using Windows api's Hai friends at psc... This is the implementation of smtp (Simple Mail Transfer Protocol) using the winsock.dll. Till now i have seen only implentations of the above protocol using the bulky activex control mswinsck.ocx(106 kb). All you have to do is to include the module in your program and call the smtp( ...) function. It will return a 1 if succesful, 0 if an error occured during transmission and -1 if a serious error ocuured. Your mail enabled program will be just about 30kb...Wonderful...No need of any support ocx files for your program to work. This program uses just pure windows api's only..Send in your comments and bug reports to josephninan@crosswinds.net.. The problem is that i have done extensive tests with the loopback ip address(127.0.0.1) running a mail server on my machine...Hadnt got the time to check out live at the net. Also do mail me the latest version of the winsock.dll's basic module if you have...Thanks in advance
Ever wanted to extract a filename only from a path including the filename, well this simple function will do it for you! (I know its not ground breaking but its simple easy and useful)
Takes a screenshot of the screen using the Windows API. The subroutine ScreenShot takes a screenshot of the entire screen, the subroutine PartialScreenShot takes a screenshot of only part of the screen.
Open a homepage or a mail link with just one line code.
Connect to your www script and fill out the form on your site using GET or POST method.. It's currently set-up to connect to FormMail.cgi script, by Math Wrigth. (script included) which will then email you the information. Don't forget to change the recipient email address (put your email in).
For the newest version that supports Local Color Tables and Transparency visit my Website here: http://www.lebans.com/animatedgifplayer.htm NEW! Animated Gif Player ActiveX Control with full source code. Written completely in VB6, no third party or external DLL's required. This is a complete rewrite of my earlier code to display Animated Gif's. Full featured and fully debugged!
This Custom ActiveX control is useful in creating Internet Explorer style graphical buttons easily. The control has many advantages over other such controls available like it is extremely easy to use, autosizing itself as soon as the main picture is specified, has many events and is more stable and less memory hungry. No image size limitations. FULL SOURCE CODE INCLUDED.Please rate this code. Thanks.
This ActiveX control scrolls any text specified to from right to left direction. You can change the color, size etc. of the fonts, color of the background and scrolling speed. Is is extremely easy to use. You can enhance the look of your multimedia application using this control. FULL SOURCE INCLUDED. Please rate this code. Thanks
This code is an update of an ealier post(Now deleted). I have added LOADS more stuff to the code. Including :- Add Bitmaps to submenu's, mouse and cursor stuff(Trap, Hide, Move, Get co-ordinates), Keyboard stuff. I have also added loads more comments to the code and included more mudules to make using the code in other Apps easier.
Many people have built projects to capture desktop screen. Many functions have been called, BitBlt, GetDesktopWindow, GetDC, even keybd_event, to execute this process. There is one thing you should know about screen capturing in Windows. Windows itself provides function to capture the screen! Actually, you do not need to build a project for it. Just press PrintScreen, and the captured screen will be stored in clipboard. Run mspaint (or any other graphic applications), and then paste. The screen is now stored as bitmap. Pressing Alt+PrintScreen will capture activewindow. I found this by myself. What you should do is just managing the clipboard, so when user press printscreen, it automatically saves the clipboard to a file. This simple project will manage your clipboard and automatically saves the bitmap as file. Run this app, minimize it, and then you can capture the screen freely.
Zooms in on the screen wherever the mouse is positioned. Could be easily modified to also do screen captures. Has a grid to show each pixel placement. Great for API beginners. Shows the use of API Blt functions, init file functions and much more. Code is well commented.
This code displays a picture of the current mouse pointer in a PictureBox control. This could be useful for doing screen captures that include the mouse pointer.
To Check a Credit Card number for TYPE and VALIDITY *** PLEASE RATE ***
Ok this is a small little program I made to sit at the end of the deskbar You can do many things like Hide desktop icons change desktop Picture and more
Recieve POP3 email without using mswinsck.ocx using pure Windows API's Hai friends.. Its me again...few days ago i had submitted a code on how to send SMTP email without using winsock.ocx and just pure windows API calls......I got lots of comments on that and some of you requested a similar POP( Post Office Protocol ) email reciever.....Here is an untested version of POP email reciever.....I have done test with my own mail server and machine but not on the internet.....You guys should do that part.....I will soon update the code if it contains any errors....but for now this is it.........Also all you have to do is to include popmail.bas and winsock.bas to your project and just call the popconnect, getmail functions which i have written....The small bug in my earlier program has been debugged and the thing is working fine...Do send in your comments and bug reports at josephninan@crosswinds.net.....And do vote for me..... Bye for now Joseph
I recently developed a database application and wanted to use only ADO and no DAO. I soon found out that compacting the Jet database was impossible using ADO (until 2.1+ came along that is). This code requires a reference to Microsoft Jet and Replication objects 2.1+ Library (which comes with ADO 2.1+). You can download this update from http://www.microsoft.com/data.
This is a utility that allows you to perform simple administration tasks on the MTS packages of your computer or any remote computer connected to the network. The program requires the VB6 Service Pack 3 version of the following files: COMDLG32.OCX MSCOMCTL.OCX and also references the MTSAdmin library MTXADMIN.DLL that shoud normally reside in the MTS subfolder of your System folder.
Tired of having to pause in increments of 1 second? This coding will pauses based on MILLIseconds using the GetTickCount function.