Category Archives: Visual Basic 6 (VB6)

AppBar

It just pops down a bar when you put the mouse at the top of the screen. it then detrects whether the mouse is still on the form, if it is not it hides the little bar. Original Author: Chris Rose Attachments File Uploaded Size CODE_UPLOAD240412191999.zip 9/3/2020 3:45:00 PM 3501

**A Bouncing Ball**

This code shows a circle bouncing off of the sides of the form like Jezzball (But not as good). Original Author: Ben Doherty Assumptions you need to make 2 timers named Timer1 and Timer2, make a circle shapeand name it pic. set the background color to black. Code Private Sub Form_Load()Form1.Height = 4770Form1.Width = 5865Form1.BackColor = &H0pic.BorderColor = &HFF&pic.Top… Read More »

Error Handler Document

This code pastes into a Module that Create (if not exists) a MDB to record the errors that occur in your application. Original Author: WalkerBro Inputs Needs (DatabaseName, Date, Err.Number, Err.Description, PrivateNotes, Optional(User))Load in “References” the “Microsoft DAO 3.51 Object Library” Assumptions Basic Error handling information. Returns True or False if it was succesful. Side Effects No known side… Read More »

Awesome Raise 3D almost any control! [FIXED]

Holy cow! This is awesome! This actually works. You can make almost any object or control in VB6 have a raised 3D affect. You have to check this out. You have to try it. And you have to help me improve it please. If you make any improvements, please re-upload it thanks. there aren’t any comments in the… Read More »

Verme – a famous worm game

This is just another worm game. But it uses bitmaps, with a beginner concept of double buffering, also something about sorting elements in arrays. The game has a Configuration window (you can choose world size and game level), and a Hall of Fame window (shows top 10 hi-scores). Code is clean and well commented. Original Author: Sonic Attachments File… Read More »

Get Version Number for EXE, DLL or OCX files

This function will retrieve the version number, product name, original program name (like if you right click on the EXE file and select properties, then select Version tab, it shows you all that information) etc Original Author: Serge Assumptions Label (named Label1 and make it wide enough, also increase the height of the label to have size of the… Read More »

MP3Snatch v2.0

This revised code finally supports the MP3 “Genre” tag (WinAMP 2.22+ compliant).Loads of you have emailed me requesting this facility – I think this is the first such VB code to support it! Easy to implement and the new genre routine is compact. It was a right pain in the arse collecting the Genre descriptions 😉 Note:- A… Read More »

ChangeRes

This Function will change your Windows Resolution. It is very simple, and it does what most Resolution Change Functions don’t do, it changes the the Bits Per Pixels as well as the Screen Width and Height. Original Author: ScAnFrEaK Inputs Dim RetValue As IntegerRetValue = ChangeRes(800, 600, 32) Returns 1 = Resolution Successfully Changed0 = Resolution Was Not Changed… Read More »

Enable/Disable Close, Minimize, & Maximize Buttons

Earlier on I submitted some code to Enable / Disable the Close button an a form. Back by popular demand, this code module allows you to do the same to the Minimise or Maximise (Queen’s English!) buttons on the form. Here’s the code module in a VERY Mickey-Mouse Demo App. Original Author: Pete Cozens Inputs N/A Returns N/A Side… Read More »