Results for "Category: Miscellaneous"
It seems that a lot of people are having problems sending Email from VB to multiple people. Here's a procedure that should fix that.
I have submitted a pretty bad listbox example before, but this is one that demonstrates how to use the ListIndex function. All you need to do is place 2 Listboxes, 2 command buttons, a timer, and a textbox. (Don't worry about their position, just put them anywhere and accept their default names. This can be done by double clicking on the icon.) Then, copy the code into the form and run it. Select any item in the list on the left, and double click on it or click Add. It will be added to the 2nd list. Add as many as you like. If you then select it in the list on the right, and click Remove, or double click, then it will remove it. (Note that it will still be selected, see the code for how to do that.) The text box on the bottom shows the two list box's indexes. Please tell me what you think of this example, and vote. Thanks :)
hides program in crtl-alt-menu one line of code
With this code you can scroll text smoothly in any direction without needing any API calls. All you need is a PictureBox control, a Label control, and a timer. The code is fully commented and has examples for scrolling in the four main directions.
THis short piece of code illustrates how to imbed Crystal Reports into VB. While simple, it does not seem to be documented well anywhere.
Set Mouse Trails
I extended this thing, so I should be able to get more than one vote now. ver 1: capture mouse to any rect area defined by any vb rect control(including shape,image..) ver 2. capture mouse to following:"CaptionBar" or "FormClientArea" or "CompleteForm" or "CompleteFormBorderExcluded" All detailed explained in module. Exe that shows things included ( code too ofcourse)
Analog clock: Only picbox and one line of code needed.No other controls. Cool example included.
It shrings any form to nothing before closing, move it out of screen etc, 16 different options. Is it better then similar ? Yes it shrings any form regardles to its border style. Worth to see it !
This program was made to make email accounts very fast. You have the option of choosing from 176 domains to make user@domain.com. All you have to input is a username, pw, and another email that they can send you your forgotten pw. Please comment. I used dssock32.ocx for the winsock to make this.
Allow multiple users to use your app which is *licenced* from one server. Here's the deal: User wants to use 10 copies of your app. So rather than send them 10 individual keys, they get a copy of your server software to install on a server that all users can access. Now the user sends you their server UID (generated byt he program, is actually the users HDD Serial No.). You now create a key file for them for 10 users and send it back to them. They now copy this file in to their servers install directory and get 10 licences. 10 users can now connect and use your end application (any 10 with your application installed, but only 10 at a time. ie, installed on 20 machines, but only 10 at a time can use it!). Your users *cannot* use the same key file twice (to get double the amount of licences) as the key file uses a randomly generated number converted in to hex (encoded inside the actual file) to check that the same file with a different name is not trying to be used. Also, the user cannot run two copies of the server software on the same machine, as the software will only allow itself to be run as long as another application with the same name is not running.The key itself is encoded using the RC4 algorithm, then hidden inside a random generated string which is saved as the key file. RC4 encryption code from PSC, Server Control by Drew Lederman.
Converts the Currency to Text. For Ex: 100.90 is converted as one hundred dollars and ninety cents only.
This is a simple FTP server I developed using the Winsock control. Its got a few bugs in it that need to be solved as well as some missing features. But I think you will find this useful. It is more complete than any other FTP servers posted here. Its got plenty of comments so I hope it is easy to follow. If you make any additions or improvments please let me know. Would be neet if we could make this sort of a collaborative effort towards a decent FTP server. Updated: *FIXED sending files to the client. (FINALLY!)
I posted a first version, but this is better so CHECK IT OUT ! You can create balls that bounce arond the screen interacting with each other. They take into acccount gravity and force. Each ball has its own force and when it hits another force is passed through to it. The balls bounce as if it is in real life. You can increase and decrease both the force and the gravity. The code is done by Using INSTANCES OF A CLASS - so if you want to learn classes look at this it will help This is really cool so check it out !
Cad in vb! Demonstrates Arrays and basic i/o features. If you like the code, VOTE FOR IT!
This code will show some basics such as: * how to create your own subs to decrease the ammount of coding in your project * use the select case feature for manipulating arrays * how to manipulate common controls such as lines and shapes to create dynamic controls such as a "cool button" (without OCX) and creating a rounded frame Please rate this code and leave your comments
The newest version of Excell OS. Here is the list of newest features: Recycling Bin (Still doesn't work) TaskHandler (Still not impleminted) Desktop icon aligning Dynamic drop-down menu's New & improved system clock A Tooltip Helper Much, Much, More...! Please vote and leave comments. If you would like to help me with this program please e-mail me (sullivaneric@hotmail.com)
Hello fellow VB Programmers. This is a project i have been working on, on and off in my spare time. This is nowhere near finished, but i thought i should get some feedback to know if i am just wasting my time or not. This is a fake Operating System (But almost completly dependent on itself), that has such options as: drag and drop creating new folders (can't open them yet) Taskbar (Needs lots of work) Recycling Bin File Renaming And More! If this project gets good feedback i would like to do lots more so PLEASE VOTE!
Tired of having to pause in increments of 1 second? This coding will pauses based on MILLIseconds using the GetTickCount function.
This simple code will convert the Long Integers to it's binary Equivalent...