Results for "Volume: C_Volume2"
This is my first usercontrol in VC++ act as button , their look are NOT rectangular and have a vertical gradient. See the screen shoot!! (NOTE uses my WindowClass)
Uses SetWindowLong to turn a PictureBox into a "Child Form". Rather amazing to an unexperienced programmer. PS. Visit my new site: http://smartsite.cjb.net
Demonstrates how you can minimize your app to the system tray and reactivates it by double clicking on its registered file type in Windows Explorer, without leaving the second instance running. Covers three techniques: 1-Hooking; 2-Registry functions; 3-SystemTray functions. VB6 tested OK.
example of use ADO to CONNECT to your database *.mdbfile on the hard disk without need ODBC and treat it like DAO in visual basic
Replaces a character in a string with another character. Pretty simple to understand. Uses a For...Next loop.
This is a Dos progressbar implementation code without using the library file. You can easily view the code and then use it because its implementation as a class. You have several examples to prove its effectivity, although i will may still work on it
Notice: THIS CODE HAS BEEN FIXED! PLEASE READ THE COMMENTS AT THE BOTTOM OF THE PAGE TO SEE WHAT WAS WRONG BEFORE. Create real C++ style command buttons with ONE line of code!!! You can use this code on any of your commands buttons. You will loose any images and the BackColor of the button, but that really doesn't matter because you can 'paint' images onto the button using the API. Make sure you set the style property to 'Graphical' or this will not work!. OK here is how it works. You see, by default Visual Basic's command buttons are drawn with the 'Default Push Button' style, which makes them flat and ugly when pushed. But when you set the style to 'Graphical' its really just a C++ button with a single pixel outline drawn around it. This code basically just stops the button from drawing that line to create a sunken style button. This code is not compatible with Visual Basic 4.0/32 because its buttons don't have the style property. However, in Visual Basic 4.0 you can apply the code to an option button and it will appear as a C++ push button (they both have the same basic events and properties: Click, MouseMove, etc...) which is a 'rigged' kind of way of getting it in to Visual Basic 4.0...hehe. I wrote this code because I got tired of all the people trying to create C++ style buttons with CreateWindowEx and Message Hooks, and all that other difficult stuff.
This ActiveX allow you to use animated gifs in your applications. I saw examples of modules before but not ActiveX.You can make OCX file from this and use it in other applications.
This function will tell you if your form is loaded (instantiated) or not. If you use the form's "Visible" property to determine this, the form is instantiated if it's not already loaded. This results in the form's "Load" event being executed unnecessarily. This function has none of the above overheads...
Allows programmers to access Windows version information using the properties of a class module. This includes Windows version (95, 98, NT), browser version, Netscape Navigator version, registered company and user. Also included is cRegistry class to access the registry. This code was downloaded from VBAccelerator. VB Accelerators page is http://www.vbaccelerator.com/.
Returns the path to a system folder, based on input. This code is based on a submission by 'Don'. Originally the code only found the System Folder on the machine. I have added all of the system folders (MyDocuments, System, Cookies, etc), and made it into a class/dll for ease of use. The code is relatively self explanatory, however, I have added comments, just in case.
This is a cool game engine it has alot of things for a game programer to learn from , Loading Models , Movement , Skybox and even sound this has all the things you need to know now for starting your game Don't Forget To Vote :).
This program uses API calls to find the text of almost any Window, including ones blocked with password characters. Just hover the mouse cursor over the window. Also shows Window handle. Makes use of SetWindowPos for "Always On Top" API call. Note: This Visual Basic version makes use of the GetWindowText call, which does not always return Window text, while the SendMessage call with WM_GETTEXT seems to work more often. Contact me to obtain the VC++ version which uses SendMessage instead.
My program help you organize your VB6 recent files list. It allows you to delete and move the files in the recent files lists to fit your needs. I should also give some credit to the person who wrote the cReadWriteEasyReg.cls , I down loaded from this great web site :) make sure Visual Basic is close before runing VB6RecentFileOrg.exe files. This project can also show you how to use the listbox
The best encryption program I ever saw on the internet. You write text and password(ALL characters are allowed) and then you save it to an encrypted file. This is VERY GOOD protection for files and it comes with a form of (encrypted)file manager. ***BONUS*** for SUPER skill programmers : I added a file called trythis.txt. Try to decrypt it!!! THIS CODE YOU MUST SEE!!!!
This is a simple, but addictive game. The object is to clear the screen of all of the blocks. You may only select blocks that have neighboring blocks of the same color. This is not an original idea. I saw the game on a B&W handheld PC, and wanted to have it in color on my 'work' computer. It uses a complex sorting algorythem, which could possibly be used for sorting non-linear arrays of data.
This project of mine logs every internet connection and saves it into the access database. It is hidden when started but you can press F9 to see when it was connected/disconnected since the program was started in a listbox. Its a really good project which illustrates diffrent techniques in diffrent subjecs such as database, listbox, internet etc.
This is Tic Tac Toe game Consist of 15x15. Firstly view the screen shot...........
It's a simply program that can view picture, paste pictures & copy pictures. Too can save the picture at bmp or ico. Is easy ans beautiful. Es un programa para ver gráficos guardarlos en bmp e ico y tambien puede copiar y pegar.
Text base file or string encryption/decryption. All the encryption/decryption can be call by the external program through the DLL.