Results for "Volume: 2_2002-2004"
Secure method of removing duplicate entries from a combobox. Optional second pass to remove possible 'left-over' dupes after first pass.
Explains the basics of using the App Object.
If you liked the Report Manager you'll love this. Again, it's very simple but effective. It allows you to manager both your Access queries and reports directly from a VB6 program, which sure beats writing code to do it. Have fun!
Create and manipulate 3D Logos. Apply bitmap,jpeg,gif textures to the fonts or just use colors. Apply filters to textures (nearest,linear,mipmapped) My VB installation is messed up a bit so couldn't use common dialogue to choose fonts but if anyone wants should be able to implement that quickly. Uses API's to save the openGL scene as a bitmap and a few to setup the openGL scene No help file included check the code to see what keys do what. Requires vbogl.tlb 'I got from http://is6.pacific.net.hk/~edx/tlb.htm and ogl32.dll 'which should be included in most systems
I really don't like Database's so I came up with a new way to do it without all the hastle. I am not saying it is great, but its a quick fix. More file saving tasks must be implemented but so far so good.
Analysis any kind of report from a company. Cash Flow Analysis Working Capital Analysis Ratio Analysis
This code is an Image/photo editor witch allow you to transform, draw, all pictures you want! It's composed of 19 effect like photoshop's plugins and 9 drawing tool like pen, brush, line, ... See screenshoot for more!
This is just an easy, simple, short, fast and effective way to randomize a listbox. Useful for playlists etc. I took this out of a bigger "auto dj" program I made for our local radio station. I have submitted this for the newbies who might be having the same trouble I did when I first tried to randomize a list of items. :o)
The purpose of this demonstration application is to illustrate advanced techniques in using forms within the application or in an process (not remote) DLL to encapsulate functionality without effecting usability. The key benefit of using an in-process DLL is in application distribution. If a change is made to only one part of the application contained in a DLL, then only the DLL needs to be distributed. Another benefit could include cross application useability. An example of where this might be useful is if we have an inventory application and we want to view the suppliers on the same screen with the stock item or view all stock items on the suppliers screen. A common viewport is used to display associated information. If we are looking at the supplier screen, other information can be displayed in the common view port and could include outstanding orders, reports, historical data, etc. Each screen of data would be stored in their own forms. The same information is displayed in both of the inventory application examples but requires no double coding as each form encapsulates the code for the interface and functionality/business-logic. For this to work, an interface class would be created and implemented into each form creating a common method of communicating. A Form can be both a parent and child. The viewport on each parent form would be enabled or disabled depending if it was the parent or child form. Vote for this project and Happy Coding...
Replicates MS Works 2000 horizontal and vertical menus. Displaying Disabled Items, Hover Items (Hot Tracking - v1.01), ToolTips (v1.02), Seperator Lines, etc all configurable. Demonstration application included to demonstrate all the features of the controls.
This control was used in several commercial applications that I've written as an on-screen Help system. I've included the prototyping code (non-api) and the flicker free API version. I hope this helps someone ..... Happy Coding!
Hi this is a little program that can remove Items left behinde by programs, It rmoves old files form the Temp folder., Removes Items form the Recent Doucemnts menu, Removes old Typed in web address form IE and Netscape. Removes Netscape cache, Clears Items form the Run Menu, Emptys the Recyle Bin And also has some more functions like a Simple but effect File Wipeing. anyway I hope you like this program and please Vote for Me... Also please leve lots of comments.
Deletes multiple lines/rows from MSFlexGrid and confirms the number of rows to delete.
This VB Add-In helps enforce and customize codeing standards. It works similar to the "Add Procedure" tool in VB but is customized. The program demos the use of the Connection Designer, Creation of VB Add-Ins, the VB IDE, and Resource files.
This program uses the concept of fractals in nature and generates realistic Trees using recursion ( the recursion part is heavily commented ). Each branch can be thought of a small tree on its own and every other branch on that branch. Hence this program uses the concept of recursion very effectively in creating trees
It allows you to import any .DBF file into an access database. You can choose the new table names, select individual fields, and create a new Access97 or 2000 database if one is not there already.
You can view the real text in password fields
I found a calc on PSC, Herman Lui´s, to which I added some functions. Such as, listbox to display your calculations/inputs, print receipt, ability to change layout during runtime. F-key, percentage-key, VAT-key functions. Allways on top. Help and aboutform. The objctive was that the user should be able to operate the calculator by using the keyboard. Of course the mouse works to. This Calculator is aslo included in my Financial Analysis App.
This is an incredibly basic countdown timer, Originally created to time starting from a specific amount of time and counting down to zero. This program has hundreds of usefull applications. The code is extremely easy to use and incorporate into your program. Enjoy.
Explains the basics of using the Dir() command to get file and folder information.