Advertisement

Results for "Volume: 3_2004-2005"

3_2004-2005 #138065
Program invisible in CTRL+ALT+DEL

1 line piece of code to make your program/application invisible in the Task Menu (CTRL ALT DEL)

3_2004-2005 #138066
RECORDSET COPYING USING ADO 2.5 STREAM OBJECT AND XML (MDAC 2.5 REQUIRED)

PROBLEM: Creating a copy of a Recordset could mean using the Recordset.Clone method sometimes. However, this is not always appropriate because ADO’s Recordset.Clone method creates a Recordset which points to the same data as the original Recordset. This means that you really do not get a physically distinct copy of the original Recorsdet. Consequently, changes to the clone copy could modify the data in the original Recordset. An alternative solution would be to use a loop to append each record to a new recordset. This, however could end up being an unwieldy solution with potential performance penalties. SOLUTION: ADO 2.5 comes with a Stream object that can be used to create physically distinct copies of Recordsets. The article below demonstrates the use of the ADO 2.5 Stream object in copying Recordsets and the difference between the Recordsets created by the Recordset.Clone method and ADO 2.5 Stream object. Please see attached file.

3_2004-2005 #138067
Put your app in the system tray

This is a module that contains functions to display your app in the system tray. You can set the icon, the tooltip and what appears on the the menu. All put together into a simple example app.

3_2004-2005 #138068
MS Agent Tutorial

learn how to program ms agent using vb. tutorial is available at http://msagentworld.tripod.com/programagent.htm

3_2004-2005 #138069
Parse Person Name Class (variety of formats)

Got extremely tired trying to find a quick and systematic way of parsing a field that contained a user's name in a variety of formats, so I created this little class that will parse out a person's name into first, middle, last, title, prefix, suffix. It can handle names like Dr. John Doe - Dr. Doe, John P - Doe, John - John P. Doe, Jr. - and a few more formats. Hope others will find this useful. Currently the class cannot handle muliple suffixes and multiple titles. If someone reworks it to make it better, please send it my way. FYI- commented all over, should be easy to read.

3_2004-2005 #138070
New NotePad (The Best)

New NotePad has the same purpose as Windows NotePad To Create and edit text files. With this new version it has line numbers to the left of the text which changes when you scroll with the scrollbar/Mouse scroll button. Also comes with line count. See the screenshot.

3_2004-2005 #138427
Splitting With Compression

PowerSplitter is the program for splitting with "Compression" of huge files to the parts of required size and combining back all that you have split withoptions . It is suitable solution if you're dealing with floppies (and superfloppies) and large packages often. This means that you use this program and freely modified it. But Please,Please tell me before doing it.please Report Me any Bug.....to me at. please rate this Project .............

3_2004-2005 #138428
Life

Simulates the "game of life", by Conway.

3_2004-2005 #138429
WhizzoMenu Control (Not Windows Menu's)

WhizzoMenu Control. This control uses forms,graphical effects and hard code. all you have to do is understand how to use my control to create your own menus. This control doesn't use VB's Menu system and it doesn't use Windows Menu API. This control is also customizable. See the screenshot.

3_2004-2005 #138430
Mandelbrot

With this code you can calculate the fabulous pictures obtained with the Mandelbrot-fractal. There is a popup-menu when clicking with the right mousebutton. Clicking with the left button in the image calculates a new picture.

3_2004-2005 #138431
DAO Label Printer - Updated 7-13-02

Update: Added a new print option. This is an address label printer. It was originally created for church use and mass mailings. You can have multiple files to help organize your address; the program will remember the last 4 you have opened. You can search for a specific address in a variety of ways. It allows you to move address from one file to another (one at a time or a selected group) by opening a selected paste file. You can Import/Export address from/to text files; you pick the field delimiter (Tab, Semicolon, Comma, or Carriage Return). You can print a single address label, selected address labels, all address labels of selected zip codes, or all address labels in a file at a selected starting row and column. You can print a single page of labels beginning with the first address you select. You can use it to print nametags by selecting the print option "Print Names Only". You can create and save different printing schemes which contain label size/layouts as well as what font will be used to print. You can view/edit one address at a time or view all the address in a spreadsheet format. In the spreadsheet, you can filter the information displayed to show only the address you want. The data in the spreadsheet can be sorted by column heading in either ascending or descending order. Included with this project are several cls files, which contain a lot code that you will find very useful to use in your project such as: * Play wave files stored in a resource file. * Many screen utilities like Center Form, Vertically Fit Form to Screen, and Make on top. * File Open and File Save dialog boxes without using an OCX. * Auto match Combo Boxes. * Masked Text. * Format text as it is typed. There are two versions of the project included, PrintLabels_MsGrid.vbp and PrintLabels_SheridanGrid.vbp. PrintLabels_SheridanGrid.vbp uses the Sheridan Data Widgets and PrintLabels_MsGrid.vbp uses Microsoft's data grid control. To select a group of connected rows using the mouse and the shift key, you need to click somewhere inside the grid; to select several non-connected rows using the mouse and control key you need to click on the Record Selectors bar located on the left side of the grid. The dbgrid32.ocx can be found it on your Visual Basic CD under ?:\Common\Tools\VB\Controls. You can find the ADO version of this project at: http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=36736&lngWId=1

3_2004-2005 #138432
Darrens Hotkeys

Darrens Hotkeys. This program is to assign the windows key with another key on your keyboard to a program, so when you hit the two keys at any time while your computer is on the program assigned will open. I use it all the time. See Screenshot.

3_2004-2005 #138433
Msn Messenger Advanced Auto Responder

This tool automatically replys to specific messages that you can custimize. For example you can set it so that if someone says "Hey!" it replys with the message "Hey How's it Going?".

3_2004-2005 #138434
CD Ejector

CD Ejector. CD Ejector runs in the system tray. When you click on it you get a menu with a list of your CD/CDR/CDRW/DVD drives. Click on the drive you want to Eject/Close and wait a second. Click the exit button to close and remove from system tray. See Screenshot.

3_2004-2005 #138435
IP status checker, loop through a database of IP's

This program loops through an Access database of IP addresses and pings every one continuously. You can add, delete your own IP addresses. You can customize a status event to trigger when a time tolerance is reached. Then you can be notified of a problem. I wrote something like this years ago for our network department to alphanumerically page the on call if an IP timed out. We had servers, routers, and switches in the list. I chopped this code together from code I found here and on www.vbaccelerator.com. I have one small thing I would like to fix, that is how to add all listview’s into just 1 listwiew. If you can show me how I will fix and re-upload the code.

3_2004-2005 #138436
Total Control

This program lets people send commands over msn messenger to make what ever command they send happen to that person's computer. It is not a trojan as it does not let you do bad sh1t to their computer but it will show u how to accept and carry out commands which are sent over msn messenger.

3_2004-2005 #138437
Basic Pc Login

*UPDATES* 'For Windows 98, does not seem to work for win2000 or NT, sorry* Simple PC Login. Disables CTRL+ALT+DELETE! Add this to your windows starup or whatever. The password is set under the "getid$" section of the ok button. BE SURE TO SET THIS YOURSELF! DEFAULT IS "testprogram". !!!!!!!!----->DO NOT RUN THIS UNLESS YOU KNOW THE PASSWORD

3_2004-2005 #138438
Global Keyboard Hook Dll

This is a dll to intercept all keyboard messages to any program in Windows (except for the ALT-TAB, CTRL-ALT-DEL and CTRL-ESC keycombo's). It uses a C++ dll found right here on PSC, I just wrapped that one into a friendly ActiveX DLL for ease-of-use.

3_2004-2005 #138439
save-get settings from textfile-demo

Teaches how to store custom settings in your application to a textfile, cause its much easier than the registry. Store textentries, checkvalues, colors, filepaths and more. See Screenshot! Its easy and every beginner should know about "writeprofilestring".

3_2004-2005 #138440
Access deduplication

We had a client who 'accidently' copied one databse table into itself causing duplicate records. Unfortunately Access only allows 10 columns in its De Duplicate wizard and we had twenty! This code allows you to pick the database you want deduplicating, lists the tables and the fields within the table so that you can chose the 'key' fields to deduplicate on. Then it creates a table within the database which contains all of the deleted duplicates from the table you chose. It assumes that you don't mind which instance of a duplicate record you want to keep and it uses Jet 4.0. Also if you run the appliaction twice on the same table you will loose all of the deleted records from the first session (it dosent create a second instance of the deleted table). It also dosen't contain Error trapping as I use Aivostso's VB Watch addin that creates error trapping for you. However, leaving that in would add superflous code so I have omitted it here. This code was wriiten on the quick but it has ben used in anger with correct results. Any constructive comments will be appriciated.

Languages
Top Categories
Global Discovery