Results for "Volume: 2002C"
Due to the recent interest in providing Bug Tracking software, I have decided to submit this application (with source!) to assist developers in the software development process.
BMGDocumenter is a Visual Basic 6 Project documenter. It handles Forms, Modules, Classes, and insert information about Designers (no handling yet for User Controls, etc.) Source included.
You can use FM20.dll library from Microsoft forms 2.0 for create easily Multi-Column Combo and Transparent Text Box. It is too easy a cool!. Identical to appearence Microsoft Access forms. Rate mi code, please! See you later!
This code demonstrates five sorting algorithms: BubbleSort, Selection Sort, Insertion Sort, Merge Sort, and QuickSort. A simple project is included which allows the user to create a random array of any length and choose the algorithm to sort it. The sorting algorithms are the primary focus, and any CS students taking a Data Structures/Algorithms course could find this useful.
NetTools is a program that a little package that includes PortScan and Ping on a Single or Multiple network, with both simple and advanced options, usefull for seaching a trojan in your LAN, it's user friendly, and has an intuitive disign, it also includes a little BAS that you may find usefull. Comments are greatly apreciated! Next update will have an INI, a little database for maximum control of portscan and if you send any post any adition that i forgot. Please try it it's a good piece of coding anyways^_^!
Complete examples about how to use msimg32 library. AlphaBlend, TransparentFill and more...
Detect multiple protocol adaptors ..find the IP addresses installed on your PC ------------------------------------------------ This program will detect the IP addresses installed on your pc !! It also detects the Subnetmask address , and Broadcast address... Now you can easy use the winsock control to bind to the right IP address ! Example: --------- if you have a networkcard installed on your pc and use a dial up for internet, then you could have the problem that if you use winsock control that its detect the default ip (netw card) but not the IP that you use for dial up... You can now fill down the bind to the right IP!! I've wrote this because i've an application called TCP-IP Datalook V1.3 that checks data on ports - sockets.. but and there was maybe the problem that some people could not use it because it detected the wrong ip address.. TCP - IP Datalook will be updated soon with this new part !! Please Vote for me ! See my other code on PSC ... Peter Verburgh.
This nifty little program interrogates Microsoft SQL Stored Procedures and generates VB code to interface with them. The concept was Adapted for VB from David R. K. DeLoveh's work for Active Server Pages found at : http://www.15seconds.com/issue/010718.htm the article make for a very good read so do so if you can! I converted it to run under VB and spruced it up a bit. While programs like LockWoodTech's PROCEDURE BLASTER do the same thing they cost $$$ and this is free. If you like it remember to give a vote. And again thanks goes out to David R. K. DeLoveh's for his original work. With this code in hand it would be easy to modify it to be MTS/COM+ compatiable. For more extensive developers tools like this one check out www.LockWoodTech.com.
An easy-to-use program to DRAW a shape for your form. Just several clicks ... and you have a beautiful-shaped form designed by yourself! See it and vote for it.I'll appreciate your vote.
This was created because I hated all those rectangular zoom windows. This allows you to magnify the screen in a magnifying glass. Much of this code was taken from PSC, if you want to vote for anyone vote for the people I borrowed from. So enjoy.
This is a 3D tank 'game'. you control the tank on the landscape. You can fire missiles from the tank that forms craters in the land where it hits, or blows up trees. There is full collision detection. Read the readme.txt file in the zip for features and how to play. I created this to show off what TrueVision3D ( the 3D engine) can do, as well as to teach others how to use it. If it is worthy, please vote :) ***** I cant upload to PSC, please get it at: http://storm.prohosting.com/eric650/game3.zip
For Beginners. Copy the contents of ListBox1 to ListBox2 where the contents of ListBox1 is checked off. Remove any duplicates from ListBox2 and remove contents of ListBox2 where the contents of ListBox1 becomes unselected. (uhmmm... hope that made sense)
I have seen many submissions on how to Hide/show windows functions but they werent all written very well or they were "overcoded". This code is very easy to understand and easy to incorporate into your project. I havent commented it very much but it doesnt need it really.I can comment it heavily if you'd like me too and re-send the code to you.Please E-mail me if this is the case. I also didnt consolidate the module's for the reason that its hard for a new coder to discriminate beetween neccessary declarations for there function's. I know this would helped me when I was starting out.Please vote and Enjoy-
This sample application shows you how you can create telephony application using the TAPI 3.0. You can dial any telephone number from your computer using this application. Read the readme file provided with the application for more information about TAPI.
This is a complete TextBox in pure code without any RTF box or anything. It supports custom colour coding, and lots more - now even comment colouring. Also supports external draw events. The Demo is a Java IDE.
Document projects in VB
Ever wanted to rotate your text this is the code for you. Its pretty cool!!! Plz vote & comments =)
This a "pure VB" clone of the original Space invaders by TAITO. NO DirectX, NO Cheating, NO Wizards. ONLY pure VB who anyone can read and understand and... MODIFY! Please RATE IT!
This is an amazing spiral creator. So simple yet so complicated! Look what you can do with a simple PictureBox! Look for yourelf in my screenshot! Please also vote and add comments =)
Networked drives. They're an administrative nightmare. In fact, the average user changes his networked drive letters more often than his underwear. But you can solve this problem of binding an application to a particular drive by using a Universal Naming Convention (UNC) path. This still references a network area, but doesn’t tie it to any one drive letter. And you can retrieve and check the UNC of a particular path in code using this neat little function. To use it, simply call GetUNCPath, passing it your drive letter along with a pre-declared empty string. If a problem occurs, the relevant number is passed back with the function. These can be matched with the possible return code constants. However if everything goes swimmingly, the function returns a zero (a constant value of NO_ERROR) and places the UNC path into the ByRef-passed variable. This code works by making a call to the WNetGetConnection function in MPR.DLL. It's essentially a neat wrapper for a regular API call.