Category Archives: Microsoft

Custom Form Shape Template

Easy-to-use template for creating a non-rectangular form. So simple, even Homer Simpson could use it (if he had a computer). Original Author: VB Overlord Inputs An image to use for the form shape. Assumptions None. Returns None. Side Effects No border on form. API Declarations Included. Attachments File Uploaded Size CODE_UPLOAD1589.zip 9/3/2020 3:45:00 PM 3945

StopFlicker

Avoid the FlickeringUse this routine to stop a control (like a list or treeview) from flickering when it is getting it’s data. Original Author: Strider Solutions Code ‘Get more great source code from’ http://www.stridersolutions.com/products/cs/Option Explicit#If Win16 Then  Private Declare Function LockWindowUpdate Lib “User” (ByVal hWndLock As Integer) As Integer#Else  Private Declare Function LockWindowUpdate Lib “User32” (ByVal hWndLock As Long) As Long#End… Read More »

A SQUASH GAME – Second Edition / More clever PC!

Hi, I’m back. I have updated my squash game so it’s more powerful.Anyway, I changed something so the PC player engine is more clever so nobodycan beat it. (Maybe somebody can. Though I make the program, I can’t beat it.)Now you can control your pad with your mouse. Enjoy! Original Author: Jongmin Baek Assumptions For new users! : You… Read More »

ListSelect on mousemove

Select item in listbox on mousemove; Drag an item to different position;Most source from MSDN , two lines from yours truly. Original Author: oigres P Attachments File Uploaded Size CODE_UPLOAD1578.zip 9/3/2020 3:45:00 PM 2758

FireSTARTer (Animate The START Button)

FireStarter is a app to set your START button on fire.If you simply hate the start button then try animating itwith this short and very simple code. Please send commentsans sugesstion.CODE BY – NILESH P KURHADEEMAIL – bluenile5@hotmail.com Original Author: NILESH P KURHADE Attachments File Uploaded Size CODE_UPLOAD1583.zip 9/3/2020 3:45:00 PM 23523

Systematic Buzz Phrase Projector

The Systematic Buzz Phrase Projector creates technicalsounding phrases that you can drop into any report you maybe writing. You’ll sound like you really know your stuff, thepeople reading the report won’t have the slightest idea whatyour talking about but surely won’t admit it! Could be agood tool to use on pointy haired boss types! I wrote thisproject for… Read More »

Display long text in tooltiptext in listbox

This code displays the text on the line the mouse is over in the tooltiptext box. This is useful for when your text string is longer than the textbox can display. Original Author: unknown Assumptions Just place a list box on a form (less than 25 lines to see thescrolling ability. More than 25 to see empty space handling)… Read More »

Locking multiple files

Program opens text file for input, reads name of files in list, then locks thosefiles. Uses form and module, also shows system tray icon. Original Author: Tim Fischer Assumptions Code is NOT FINAL, must be customized to needs.Have picture box as picture1 hidden and the picture be your system tray icon.Have timer as timer1 and set interval for time… Read More »

create a YES or NO msgbox

simply pops up an msgbox with a yes or no choice below (very simple) Original Author: sean mckeown Code dim a as integera% = msgbox(“Message box message ;-)”,10+10)if a% = 6 then ‘6 indicates a YESmsgbox “yes was choosen”elsemsgbox “no was choosen”end if