Advertisement

Results for "Volume: 2002VB"

2002VB #21170
_***Path options***_

Does the following... 1:) Gets files out of paths... 2:) Gets path out of shortcuts... With file on the end. 3:) Get's drive.

2002VB #21165
_GradientV2_

Gradient made easy...

2002VB #21822
A 3D Level Editor

A 2d map editor which allows you to convert the 2d map into a 3d level which you can walk around. You can save you map and load maps. requires directx 7 or higher. i did use some code from other examples to speed up the time. Please Vote for me!!!

2002VB #21487
Cool Print Preview!

Nice Print Preview with zoom in/out and more (See Screen Shot) Please leave your comments

2002VB #21620
Jumble

Jumble is a scrambled word puzzle, like those you see in your local newspaper. Unscramble 1 letter for each square to form ordinary words. The maximum length for each scrambled word is 7 letters. The letters from the ordinary word that will be part of the answer are highlighted. A caption is included to help solve the puzzle. The answer can vary on length and number of words. The maximum number of scrambled words is 5 and the minimum is 4. Jumbles can be added to the database with the add feature. The Regular word is the ordinary or unscrambled word. The scramble word is simply that the ordinary word scrambled. The final answer column is the letters in the ordinary word that are in the answer. Example suppose you have a word CLOTH and scrambled THLOC with LO from cloth in the final answer, the format is number of letter in this word that are in the answer and the corresponding letter placement. In this case you will enter 2,2,3 in the final answer column, meaning 2 letters from this word are in the answer and those letters are in the 2nd and 3rd positions. The answer text box is the entire answer for this jumble. The format for the final words is: Number of words in answer, followed by any words we need to display. Example the final answer is TO GREAT LENGTHS where TO is to be displayed, you would enter 5,1,TO in the Final Words. Note: If you put the project into a different path make sure to change the Data1 connect object path to the jumble.mdb Don't forget to rate this program. Enjoy

2002VB #21636
Rex - MusicManager

Simply the biggest and best mp3 / media player with source code on the web. Recurisive search on the disk, reads / writes m3u files, retrieves tags, CDDB support, powerful find feature, Save custom playlists, Parameters on startup, song properties with more than 60 tags, soon a CD Write support. This program is always under construction so please check it out...

2002VB #21637
Get ready for VB.Net - The good stuff #1

Microsoft Visual Studio.net (v.7.0) Including the awesome new Visual Basic.net language is now available. VB is now 100% object oriented, threads are now available, no more runtime libraries etc. Check out this small article with a screenshot to learn the basics of the new stuff in VB.NET ...

2002VB #21701
_*a 3D 2 player game*_

its a 2 player 3D game and p1 has to catch p2. please vote for me if you like it

2002VB #20841
Memory Game

The classic memory game in mrkan-ic variant. Features icon themes with card backs/fronts. Cool interface, very well made, almost no bugs.

2002VB #21171
_*Hotbar Skin Changer*_

Very simple, but usful because the only thing hotbar haven't thought of yet is changing back to older hotbar pictures. This program enables you to do so. Please vote for my code.

2002VB #18018
Picture Browser

Puts up a thumbnail size picture of all the pictures in a directory. Single clicking on a thumbnail takes you to a full size preview of that picture.

2002VB #21149
_-! Customizable Message Box !-_ A MUST-SEE Active X: *3rd Update!* Close btn, Picturing, Auto-Focus

This UserControl Generate a Message Box that you can customize every detail of it. This is a 3rd update! Increase customizing performance, so you can adjust its... Title Bar Color & Font, Message Text Color & Font, Title Caption, Message Text, 4 Buttons Text, Button Highlight & Lowlight Color, Close Button Color & Back Color, Icon Back Color, Border Color, Border Style, Message Box Back Picture, Text Area Picture, and Message Box Back Color. Button now automatically recieve focus if you move your mouse over them, and the highlight color will be set to that button. Button also invisible if you don't set any caption data into it. If you think the desing is ugly can download it and customize yourself. In this version you also can insert picture in Message Box, and also another one as a background at text area. The screen shot is uglier that its real picture because this's .gif image. License problem is fixed so you shouldn't have problem with Regsve32 anymore. Old ugly close button now replaced with a better one. Please VOTE for me and leave comments. Good, bad, are strongly appreciate. Anyone who want to develop this with me just send an e-mail to [email protected] . Note: if you know how to play windows sound (set by user) like when you click Start menu or Minimize program, please tell me so I can put it in this code. Anyway, in this version, if you launch a message box, it also generate "Beep" Sound. Console Panel now very cool and so colorful, but you won't see it in screenshot. Now have method "SetBtnFocus" so you can set highlight to any button. 3 screen picture are add as template picture to put it in message box. Every time button recieve focus it generate event seperately. Console now have status bar to inform when any event has been raised. All properties is run-time customizable. Was it buggy? well, not in this version (3.2 R17) anymore. The most important thing, don't forget to *V*O*T*E* for my code.

2002VB #20381
A bit of API

This code shows you how to display the run dialog box, the find dialog box, how to shutdown windows and a some more stuff too. Check it out and use it in your applications!

2002VB #18462
Disable Low Level Keys

There are many situations when it's need to disable some combinations of keys from a VB program. For instance, ALT-TAB, CTRL-ESC, ALT-ESC or others like these. Other combinations could be tested at form level using KeyPreview property and KeyPress / KeyDown / KeyUp events. All system keystrokes won't fire key events in a form (or other controls) because they are handled internally by the system. Since application threads never receive messages for these keystrokes, there is no way that an application can intercept them and prevent the normal processing. This behavior is "by design" and ensures that a user can always switch to another application’s window even if an application’s thread enters an infinite loop or hangs. The question is how we can intercept this keystrokes? The solution could be achieved using hooks. A hook is a point in the Microsoft Windows message-handling mechanism where an application can install a subroutine to monitor the message traffic in the system and process certain types of messages before they reach the target window procedure. For Windows NT SP3 (or higher), Microsoft introduced a new hook: WH_KEYBOARD_LL. This hook is called the low-level hook because it is notified of keystrokes just after the user enters them and before the system gets a chance to process them. This hook has a serious drawback: the thread processing the hook filter function could enter an infinite loop or hang. If this happens, then the system will no longer process keystrokes properly and the user will become incredibly frustrated. To alleviate this situation, Microsoft places a time limit on low-level hooks. When the system sends a notification to a low-level keyboard hook’s filter function, the system allows that function a fixed amount of time to execute. If the function does not return in the allotted time, the system ignores the hook filter function and processes the keystroke normally. The amount of time allowed (in milliseconds) is set via the LowLevelHooksTimeout value under the following registry subkey: HKEY_CURRENT_USER\Control Panel\Desktop. The program (VB) is disabling some of these combinations (ALT-TAB, CTRL-ESC and ALT-ESC) as long as the option is checked.

2002VB #21147
The easiest way in the world to make your own animation! A MUST-SEE Code!!!

This CODE (not article) will guide you to the easiest way in the world to build and customize your OWN animation! Take very short time to download and ALL code are include! Please download, leave comments, and please don't forget to vote.

2002VB #20376
How To Use Winsock for Beginners (Update)

This tutorial shows newbies to VB, basically everything they need to know about Winsock. It shows how to open and close a Winsock connection and also how to send and receive data via a Winsock connection. Very easy to understand and use. Includes sample code that can be used in your applications! A few bugs have been fixed in this update so try it out!

2002VB #20377
MS Agent Control Tutorial for Absolute Beginners

This tutorial will teach you how to use the MS Agent control. It will show you how to get a character file associated with MS Agent and then how to use it in different ways. Does not require any previous knowledge of using the control. While this tutorial shows you the inns and outs of using the MS Agent control and the various characters that can be associated with it, it also shows every step in an easy to understand manner. Although this extensive tutorial covers nearly all the aspects of using the MS Agent Control, even novice programmers will be able to understand this tutorial and use the example code in their own applications.

2002VB #21071
FTPx(ZIP)

This is the zipped version and it contains all the forms and code necessary to compile the .OCX Also included is a pre-compiled FTPx.ocx ready to use. Thanks This custom control allows applications access to FTP sites without the need to re-invent the wheel. Just set the Hostname, Username, Password and port properties and execute the Connected method and you're connected. You can Get, Put, Rename, Kill and Execute custom commands. The very best thing is progressing. This controls provides download and upload progressing.

2002VB #21634
rexFormats.DLL Beta #2 - The most awesome playlist DLL ever written (mp3, m3u, wav, rex).

Most playlist do not contain more than two or three fields. They are missing powerful search engines. If you have more than a 100 songs on your computer, you may have difficulties finding them in your playlist. By using rexFormats.DLL (freeware) you can build powerful music applications with the most awesome playlists ever created, more than 100 tags and a powerful search engine comes with it. A sample application comes along with it. Try it now. Just Updated to beta 2 with more powerful search engine, mp3 engine etc.

2002VB #20049
Draw it!

Use this code to learn how to get an effect when left, right mouse button is pressed and many others. Please vote!

Languages
Top Categories
Global Discovery