Category Archives: Visual Basic 6 (VB6)

Disable ALT+F4 in a Form

Disable the shortcut ALT+F4 in a Form Original Author: Marcus Schmitt Code Private Sub Form_Load()  Me.KeyPreview = TrueEnd SubPrivate Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)  If (Shift = vbAltMask) Then    Select Case KeyCode      Case vbKeyF4      KeyCode = 0    End Select  End IfEnd Sub

Combine pictures transparently at ANY percent!

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… Read More »

Processor Usage

Processor Usage with Progressbar.Windows NT is not supported 🙂Who find a way ? Original Author: Marcus Schmitt Attachments File Uploaded Size CODE_UPLOAD2716152000.zip 9/3/2020 3:45:00 PM 2987

Random Terrain Generator

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. Original Author: Alan Buzbee Attachments File Uploaded Size CODE_UPLOAD29311182000.zip 9/3/2020… Read More »

Anonymous Email Msg [ASP Code]

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,… Read More »

ColorLab v3

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… Read More »

T3D. Puts a real 3D border arround ANY control !

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] Original Author: stephan swertvaegher Attachments File Uploaded Size CODE_UPLOAD2693132000.zip 9/3/2020… Read More »

Make a Non-Ole project 100% Stealth

This code will make a Non-Ole project 100% Stealth (Which means that it is invisible on screen, TaskBar, and the TaskList! Original Author: Tucker Nance Attachments File Uploaded Size CODE_UPLOAD2675122000.zip 9/3/2020 3:45:00 PM 2943

API Form

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… Read More »

Rich HTML

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. Original Author: Joseph Huntley Attachments File Uploaded Size CODE_UPLOAD2683132000.zip 9/3/2020 3:45:00 PM 5279