Category Archives: Visual Basic 6 (VB6)

PopUp

This a great example of different PopUp menus…One on left click, one on right click etc…Very useful !! Original Author: Kevin Attachments File Uploaded Size CODE_UPLOAD3743332000.zip 9/3/2020 3:45:00 PM 2879

Test IsDirty

(Added this Ziped Project to test the IsDirty Function Plus its easier than Copy Pasting for Ya)(Update 3/2/2000 I forgot to add the Enum To be used with the MyFormValuesOnLoad() Array But its in there now:)This code will aide in determining if Data has changed on a form. It serves many purposes. 1. To tell wether or not… Read More »

pong 3D (with pretty good AI !!)

It’s a really cool 3D pong game !! I know the screenshot looks a bit lame, but it really is fun !! I made it because I had just completed Minesweep-experienced again and was looking for some other simple fun. 3D Pong is fully commented and I recently added a small tutorial on how to use the PC… Read More »

E-Biz

Creates an Online Shopping centreThis program shows:1. How to register a new user2. How to accept an already registered user3. Retriving a lost password of a registered user4. Online shopping…shop till you run out of money! Original Author: Krishna Rath Assumptions You should know a bit of CGI..server configurations etc Attachments File Uploaded Size CODE_UPLOAD3807352000.zip 9/3/2020 3:45:00 PM 74935

A PIC Browser

This program is a kind of browser that shows image files, like ACDSee. (Of Course This program is much humble than ACDSee.)Anyway, you can do many things, like magnifying, reducing, copying, pasting, cutting, scrolling, and so on. Original Author: Jongmin Baek Attachments File Uploaded Size CODE_UPLOAD3738322000.zip 9/3/2020 3:45:00 PM 7713

Easy MAPI mail!

This code will help understanding the use of the MAPI controls Original Author: Conrad Inputs Recipient, CCRecipient, Subject, Message, Attachment Assumptions The great thing about using MAPI directly instead of using Outlook’s Type library is that it is so much faster, and uses a lot less memory!! Returns No output Side Effects No side effects Code Public Function SendMAPIMail(… Read More »

IsDirty

(Update 3/2/2000 I forgot to add the Enum To be used with the MyFormValuesOnLoad() Array But its in there now:)This code will aide in determining if Data has changed on a form. It serves many purposes. 1. To tell wether or not it is approriate to prompt user if they want to save changes they have made. 2.… Read More »

Window Selector (Like SPY++)

Here’s a little bit of code that I’m using in one of my apps. I slaved over it for 3 nights, so I thought that others might also like to use it. Basically, it Displays a bounding box around the window that the cursor is over, just like selecting a window in Microsoft SPY++. (I decompiled it and… Read More »

Oracle to ADO Recordsets

It allows the user to access Oracle Stored Procedures from VB, including getting ADO recordsets back Original Author: Aparajit Agarwal Inputs Please read comments in the beginning of the code. Also, you must know how to structure and use REF cursors in ORACLE Assumptions Read the comments at the beginning thoroughly and call the sp_getdata method appropriately from a… Read More »

Export ListView Contents to Excel

This will export the contents of a listview into a new Excel Workbook. Original Author: Cierra Computers & Consulting Inputs frmName.ListView API Declarations Reference the MS Excel Object Code Public Sub ExportListViewtoExcel(lvwList As Control)   Dim vntHeader As Variant   Dim vntData As Variant   Dim x As Long   Dim y As Long   Dim intCol As Integer   Dim lngRow As Long     ‘Get… Read More »