Category Archives: Microsoft

Kewl 3D Star Field! User can change camera angle!

This code generates a moving 3D star field, almost identical to the windows ‘flying through space’ screen saver, except this runs in a window of any size, and when the user moves the mouse over it, they can change the camera angle, which I suppose could make a neet game back ground for an outter space filght sim.… Read More »

Enter to Tab

This code gives the “enter” key the same functionality as the “tab” key in a vb form. When the user presses the “enter” key, it moves the focus to the next control, based on the tab index order. Don’t forget to set the KeyPreview property of the form to True. (My thanks to Pennington. His TabToEnter2 code laid… Read More »

About the “Compressing Files thru VB(w/WinZip)”

this is actually not a code but this is just a list of parameters to use WinZip in VB.. I hope this will help those who are interested in my previous posting namely: “Compressing Files thru VB(w/WinZip)” Original Author: Jaeger Assumptions you have read my previous posting.. the “Compressing Files thru VB(w/WinZip)” Code Adding files:The command format is:winzip[32].exe [-min]… Read More »

Slot Machine Example

The simple code generates a Slot Machine where you pull the lever and different images appear in the 3 boxes. The Graphics aren’t really good, but you will get the idea of what the program is doing. If you want, you may add more images to the application so the game will be harder. Original Author: Jason Brimblecombe Assumptions… Read More »

VBThreads

Create separate running threads in Visual Basic 6 without having to use the CreateThread API call ,which can be unstable to say the least!IMPROVED VERSION! Original Author: B.Bowler Assumptions This code was written in VB6 and works fine on 95/NT/2000 platforms. Feedback is welcome not matter how small (abuse is welcome to put your point across..no probs!)(CODE HAS NOW… Read More »

Book Agency Billing and Reports

A simple project which can serve as a good example for use of crystal reports,DAO and dynamic control arrey. Original Author: Sachin Palewar Attachments File Uploaded Size CODE_UPLOAD239712181999.zip 9/3/2020 3:45:00 PM 17683

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 »