Results for "Volume: 2002C"
It is a Slider UserControll
The game TicTacToe for Two Players
This code will make a Non-Ole project 100% Stealth (Which means that it is invisible on screen, TaskBar, and the TaskList!
This demonstrates how to create a form using API only. It also creates a edit control (textbox) and a button control (command button). It subclasses the form and the command button and when the command button is clicked a message box pops up. Code is heavily commented and explains to you EXACTLY what the code does. If you have difficulty understanding the code, then don't hesitate to e-mail me. I'll be glad to help.
If any of you saw my submission awhile ago that converted RTF to HTML. This has the original code from that post, but also has a function that converts HTML to RTF.
OK, I've received some feedbacks on my VB 'Hooking' keylogger asking for DLL code. I am sorry that I didn't post it then 'cause I thought it to be too basic for a person who knows Delphi/C and too advances for the person who is interested in VB only. Well: here's the Keylogger. BTW it will show to some of you how to use the GetKeyName function. I mean, there is no such code: IF Keycode=13 then Log("Enter"), if KeyCode=27 then Log("Esc"), etc.... It logs all the keys except Print Screen. Once again: I AM SORRY FOR POSTING DELPHI CODE - YOU ASKED FOR IT!!! I included the exe file for those, who don't have delphi compiler. Anyway, just try it (and see how a keylogger must be done:) before posting your "timered" keyloggers here. {To you Ian - Why don't you make a DELPHI section here ????!!!!!!}
The previous ColorLab (still on this site) was a color picker/sampler/mixer that displayed HTML & VB Hex codes (among other things...). This one does that PLUS you can now: >> Save, Load, Print & Export your favorite colors >> Generate HTML Color charts from your favorites >> Load a GIF or JPG and see it with your color as a background (yes, transparency works) >> Find the 'average' color of the loaded GIF or JPG. It also demonstrates how to move 'floating toolbar' window when the main window is moved (not MDI windows). Plus, I added some simple 'help' pop-ups and re-labeled the controls to make it easier to use. Again, thanks to Matt Hart & others here whose work I built on for parts of this.
T3D function: Puts a 3D-border arround any control. This border has 2 levels: outer border and inner border. The border can be raised, inset or mixed, filled and not filled. It works only on a normal (standard) form, with the backcolor RGB(192, 192, 192) Syntax: T3D Form, Control, Bevel, [Style], [Filled]
Generate very detailed random terrain. Uses a random seed generator so that if you enter the same number with the same parameters it will generate the same map for you. It includes many options like detail, smoothness and water level. After building it allows you to rotate it three-dimensionally.
Send email messages anonymously across the internet or intranet. Great for making a paging service. Can also be altered to get feedback from your own web site. Just set the To Address up as a static address. Set it up on a Personal Web Server or a Remote Host. If you chain your local server through many proxies, you could essentially have true anonymitity. This code is not intended for illegal use. Please be responsible in downloading this code. Could potentially be dangerous in the wrong hands. I now have a Server setup for you to see how this works live. The only difference is that it tracks your IP, Email Address you sent to, and the message you sent. The email that is sent to the person has YOUR IP address in Bold for them to see. This is just a precaution so that you DO NOT Abuse it. If you want to see the live server and recieve a temporary USERID and PASSWORD, send me an email to mheath30@hotmail.com. Subject="REQUEST USERNAME, PASSWORD, AND SERVER ADDRESS FOR ANON EMAIL". In the body leave your name and address.(For security precautions only.) You must use a real email account! No hotmails, yahoos, email.com, or anything like that. I'm sorry that the prerequisits are high, but I have to ensure you won't ABUSE the server. If you feel like sending more email, send me a second one Subject="Send EMM Info". Thank you, Enjoy the code!
Disable the shortcut ALT+F4 in a Form
This killer code demonstrates the fastest and most efficient way to combine pictures transparently. Designed to be used in a paint program or game, this picture will combine 2 pictures at any percent transparency. I haven't seen code of this nature anywhere else on the site, so be sure to check this out. This code could also be used to fade pictures into eachother (like they do in MYST with transitions mode on), if you're interested. Includes picture loading and saving code as well.
Processor Usage with Progressbar. Windows NT is not supported :-) Who find a way ?
(My first submission to PSC). It is a complete fakemail application, which allows you to send e-mail using any e-mail address. Also includes Name of sender and Name of receiver + subject line! Log window shows all actions taken by the program.
Hi folks. This is an advanced scientific calculator version -2 . Performs trignometric , logarithamic , exponential functions , memory operations. Also it can store infinite number of values in memory u can view and copy down the values from memory to your display. Compleete source code is avail in ZIP. Thanks for your cooperations .....also don't forget to rate the software please.
This code converts picture files to .TXT files. Works best with photo's. Start a new project, insert a picturebox, and past the code in the code-window, HAVE FUN !!
This is the version 1.0 of MtMWeb Forum - a fully functional ASP Forum, where people can submit their doubts about something for example and others can answer. It is not a complicated code, but very effective - great for people who want to learn how to deal with databases ( recording, reading, separating in many pages and so on ). If you want to start working with ASP, it is a must see. If you want to check the latest version of this forum go to http://mtmwebforum.vbf1.net The version 2.0 of MtMWebForum is available here : http://www.planetsourcecode.com/xq/ASP/txtCodeId.6365/lngWId.4/qx/vb/scripts/ShowCode.htm
You were waiting for it didn't you? NO MORE TIMERS and GetAsyncKeyState. About 40 lines in VB (excl. declares) and a DLL. Logs ALL keys except PrintScreen. Is this the end of the war of keyloggers? :) (I hope not).
Lately, I've seen a couple binary convertion functions. I decided to "up" how powerful the converters are. I've created a base convertion that can convert 2 (2 is used to create binary) to 9. There is also a converter to convert everything back to normal. So, let's say you want to convert 150 to binary, and put it in the string Binary: Binary$ = Base(2, 150, True) And if you want to convert it back: Binary$ = Dec(2, Binary$) Simple as that. You can also convert to other bases, which could be useful in an encryption (if you really want to confuse crackers). There are also comments on virtually EVERY line. All in all, this is a must see!
In a Drop Menu in one of your programs, you can list the last eight files the user opened. This will allow the user to quickly access a recent file again. I literally copied a sample from the VB5.0 package and eliminated the uneeded code.