Advertisement

Results for "Category: Miscellaneous"

7_2009-2012 #236346
Key Finder (Key ASCII,Key Down,GetAsyncKeyState)

This is a very basic but handy program that tells you the key down, key ascii, and getasynckeystate values for a key you press. enjoi! -LCSBSSRHXXX

7_2009-2012 #236350
[Progressbar Based Clock]

A clock that uses progressbars to show the time. Teaches how to get hour, minute, and second. And how to make a simple animated icon, and make a tray icon.

7_2009-2012 #236359
Save/Load Treeview with Propertybag

Update: Ver 1.0.1 29 Feb. 2008 Drop modTVpropbag.bas into your project and you can save and restore treeviews with 2 simple calls. This is as close to "plug-n-play" as it gets... even a very new newbie can make this work in minutes. I include a demo project for your perusal. Supports multiple treeviews (easily modified to work with other controls). Saves and restores: Nodes/child nodes, Node.Key, Node.Tag, Icons, Expanded state, sorted state, checked state. What else could you want for nothin'? Version 1.0.1 implements the .tag property (per request) and is considerably cleaner/optimized code. Appreciate your comments most.

7_2009-2012 #236369
Simple Batch Tutorial + Examples

This article I am not finnished yet, but I wanted to released it. I want to add tons more to it, like how to get user input (yes possiable in batch) and more and get alot more advanced. Here is the pre-release... Also I have no idea where to put this, so sorry its in the vb 6 section.

7_2009-2012 #236413
Genealogy report for binary MLM system

This is a genealogy report generation for a binary structured multi-level marketing system. The report is in listview, but stored in an array. The program is a little slow but there are other ways to process the report faster. The program took 1 min. to process 678 members (at 31 levels). It will work a lot slower if the all the nodes in the binary tree is full (have 2 downlines each). This program is dedicated to Ms. Sheryl L. Taripe. 2 (,") (",) 28

7_2009-2012 #236417
Make Trial-Version software the easy way

This short program shows how to create a trial-version of your software that is not crackable or hackable (without decompiler) because the code is embedded within the program. By coding the expiration within the program, registry hacks or serial hacks will not work. The users would contact the software provider for a non-expiring version. I have sold many products using this method. Any feedback or comments welcome.

7_2009-2012 #236425
Solution for Windows Vista

Use of the API SendInput instead of SendKeys! This will prevent the error of access denied in the Windows Vista.

7_2009-2012 #236434
Open Default Program for Given File Extention** - An Easier Way

Type in a File extention and click Open and the Default program will be opened for that extention - - E.g: if you type .bas then VB will load or if you type .htm internet explorer will load

7_2009-2012 #236437
Learn Visual Basic - Beginners, Start Here

I first found Planet-Source-Code.com in the seventh grade, and as a programming enthusiast (with then only minuscule experience), I instantly latched on to those helpful submissions encompassing so many of the basic aspects of programming. In return for all the help this site has given me over the years (>5 years experience and even as just a high-school senior a job as a programmer) I have decided to finally submit my own contribution. I designed this with the near know-nothing computer enthusiast in mind-- those desiring to learn visual basic (as well as general programming concepts) but still having trouble finding good resources of information. From the main menu, you may select a topic, wherein its respective window will appear. You will then be able to actively explore each subject as it will appear to the user and by clicking on the question mark in the lower right-hand corner, draw up a screen showing the exact code and APIs/applicable controls. And for those who have moved beyond these tutorials, there is also the actual program's code to be read. Overall, it should be quite a helpful guide. Covered are subjects such as: > Simple animations > Button events and properties > Combo boxes (and managing their data) > Drive, Directory, and File List controls (linking, etc.) > File manipulation > Input boxes > Labels (properties and styles) > Listboxes (and managing their data) > Loading images from files > Loading text from files > Message boxes (formatting, styles, and returns) > Option buttons > Playing .wav files > Progress bars > Saving image files > Saving text files > Visual Basic Shapes (styles and properties) > Status bars > Text to speech > Timers And such general programming concepts as: > For loops > If...Then...Else statements > Select...Case structures > And many others in the program's code itself! I only hope this can be a truly helpful aid for those trying to begin programming, and might perhaps fill in any possible gaps from those programs that so helped me when I was just beginning... Good luck and happy coding! * As a side note, XP-styling on controls will only be applied upon compilation execution of the .exe file.

7_2009-2012 #236450
A Road Users Guide To Intersections

To teach new drivers the rules of intersections. i made this with some hjelp from some of my friends.

7_2009-2012 #236472
KBC(quiz)

QUIZ

7_2009-2012 #236477
Tamper Verification - Software Protection

Protect Your Software Against Crackers. See If Tampering Evident Using CheckSum's. Protect Against Hex Editors etc (Twin Project Example Included Incase You Dont Have A Hex Editor) First Project Checks For Tampering. Second Project Will Tamper With First Project So You Can See The Function In Action. Follow Simple steps in HOWTO.txt for full demonstration (Only 1/2 dozen steps) Comments/Votes welcome.

7_2009-2012 #236518
MicroSearch

This is a tool I built to allow you to enter almost any U.S. telephone number, and it will find the person(s) Name (First/Last), Address, City/Zip, etc.. This only works if they're listed in the phone book! But it's still a nifty tool to keep around.

7_2009-2012 #236519
YCht Protocol for Yahoo!

This is an example I created, how to use 'ycht' to login a Yahoo! chat room, and how to do a lot of cool things while logged in.

7_2009-2012 #236539
Simple Explorer

A simple explorer clone. It is heavily commented and shows you a way to show alpha-blended icons, extract icons based on extension or from files themselves, a simple (or recursive) way to collect information about drives and folder, and some other useful stuff for the in-experienced vb.net programmer.

7_2009-2012 #236553
Power

Shutdown, reboot, log off, standby or hibernate system. Also included code how to detect when computer goes standby or hibernate. I've wrapped everything in class for easier use.

7_2009-2012 #236557
How to shuffle a deck of cards efficiently

This example is to show how to shuffle a deck of cards using an extremely fast algorithm that does not have to check if a card has already been chosen. What this means is that the code is very fast making it very scalable as well. Although the example uses a deck of cards, it could just as easily be used to shuffle any series of objects with thousands of items.

7_2009-2012 #236579
Yahoo Packet Coding

Well i made this tutorial a long time ago back when i had www.elite-crackers.com! well anyways this tutorial will show u how to sniff packets for yahoo and code them so u can use them in ur Visual Basic Projects! well please vote cause i would like to win something from here atleast once Lol!!

7_2009-2012 #236609
process injection/API hooking

This shows you 2 API hooking techniques. IAT hooking and function redirecting, also how to inject your code into another VB process and hook a function remotely. Thanks to Ion Ion Alex Ionescu for his injection demo. It's important that you read the readme in the "inject" directory.

7_2009-2012 #236637
WebOne Windows XP Classic Theme On Detection *Minor Fixes*

*MINOR FIX* NOW YOU CAN DETECT Whether Windows XP is running in classic style or without visual styles. The function called can also be used to tell theme color if themes are on. If themes are not on then the function will fail and this code will trap the error and return False. REQUIRES "themeui.dll" Should be on Windows XP versions because this is the theme system. THIS FILE IS NOT THE ONE USED FOR DRAWING THEMES. Please let me know of any problems. I reply to all emails. Also check out my other cool submissions. THIS IS DONE IN ONLY 14 LINES OF REAL CODE NOT COMMENTS

Languages
Top Categories
Global Discovery