Advertisement

Results for "Volume: C_Volume2"

C_Volume2 #68018
[A++] Java Button-Maker

This is the first time I'm releasing the source of one of my commercial applications! I wasn't been able to stay with all the competitors, so I've made my program free and release the source! Enjoy and don't forget to vote if you like it! Thanks! Free Java Web Button creates Java applet buttons for the Web without requiring any Java or HTML programming. The program can create several buttons on one applet (even one on top of another), which can also include images and text labels for all three states: up, mouse-over, and down. You can also attach sounds to your buttons using the Wav2Au program (included free as a bonus), which converts WAV files to AU files. You can change button colors, position elements on the screen, set the height and width of objects, add links and target URLs, adjust the font, and more. Free Java Web Button is flexible and easy to use and can produce highly professional results. Binary can be downloaded from here: http://www.emu8086.com/wb/

C_Volume2 #68019
RGB Colour Wheel

You may never again want to use VB's internal RGB function, after seeing how much simpler and better this HSV function is. Use the full colour spectrum in new and exciting ways, that are simply difficult (if not impossible) using VB's internal RGB function. It saddens me to realize that Microsoft programmers could have easily placed this routine into VB, but didn't. I wonder if this functionality is even in .NET yet? Anyone?

C_Volume2 #68020
Make thumbnails with aspect ratio!

This will make thumbnails of all images in a directory. You can choose the size on the thumbnails and they will keep aspect ratio. A viewer is also included! Please vote or leave a comment!

C_Volume2 #68022
m2 3d polygon engine

A 3D engine in VB, using polygon drawing on a form. Not as fast as DirectX, no textures, and probably not good for a game, but still fast enough to make an interesting screensaver.

C_Volume2 #67948
[A++] NUMERIC LED - sample IO Devices for 8086 Microprocessor Emulator (update)

This sample just reads and writes data to a virtual port. You can use these sample to create your own devices for Emu8086 (emulator8086). You may try creating a robot or something, and then use assembly language to control it!

C_Volume2 #67949
SQL Server Documenter

SQL Server Documenter can display, print and export to Excel a complete overview of all fields and indexes in a table. This started as a "hello world" type of thing for SQL-DMO and this is the result. It's great for debugging or documenting your databases (that's why I wrote it ;-)). Try it and any suggestions are always welcome.

C_Volume2 #67950
SnackMan

This is an older project I wrote - no documentation, but game play is simply enough - the title should sound familiar enough.

C_Volume2 #67951
Advanced Like

Compare using wildcards like * and ?, ranges like "at[0-99].gif", and a new wildcard %. Which is like *, but goes only at the end. "at%" would be like "at", and also "atquaz".

C_Volume2 #67952
Image Hover Button

I looked on planet source code for an image hover button (a 3 state image button that changes pic when mouse is on it.) Couldn't find any... So I decided to make my own, and since I am so nice, I uploaded it to PSC. Sending comments will motivate to give you more... ;)

C_Volume2 #67953
A 3D Lesson v2, Very Simple

This 3D application shows you just how simple 3D computer graphics can be to program. Pure VB code and the only mathematics is division. Simple hey? Objects that are far away, appear smaller. Thus simply divide our 3D object's X and Y coordinates by it's Z coordinate. NewPixelX = X / Z NewPixelY = Y / Z That's all you need for 3D computer graphics, and that's all this program does.

C_Volume2 #67954
User Agent Fake Referer OS Spoofer

*Udated: July 26th 2003* This code allows you to spoof your user-agent (e.g. Internet Explorer), OS (e.g. Linux), and change the referer to anything you want (e.g. google.com). Now, why do this? Simple, to pass protection.

C_Volume2 #67955
Logicon File Viewer 4.05 (Release 2)

This is a RAW hex/ascii file viewer/editor. Use with caution - don't edit important or sys files unless you know what you're doing!!! (modRegistry has been added - sorry for inconv.) Great tool for tweaking (cheating) an RPG save file.

C_Volume2 #67956
Ten Different Sorting Methods

This program is to demonstrate the use of 10 different sorting methods. They all vary in speed and complexity. They are the following: Insertion Sort, Bubble Sort, Selection Sort, Shell Sort, Heap Sort, Merge Sort, Quick Sort, Radix Sort, Shaker Sort (Bi-Directional Bubble Sort), Odd-Even Transposition Sort). There will be more to come later on.

C_Volume2 #67957
Alarm task Schedule

Project includes an Analog clock,An Alarm Clock,A Task Schedule .. And It tells current info about year and time like it`s midnight/evening.you can select date and time for alarm and task.Please Vote ..

C_Volume2 #67958
Internet downloader

download any file from internet and view the progress

C_Volume2 #67959
[A++] The Enigma PRO Encryption Machine (updated!)

Here is the concept behind this representation of the Enigma Machine: The program uses virtual "wheels" that contain all of the printable characters on the keyboard. Think of the first wheel as the keyboard you are typing on. All of the wheels contain the same characters, but in a random, non-repeating order. Each time a character is pressed, the location of that character on the one wheel is used to as the index to lift the character off of the next wheel. Then the new character is searched for in the next wheel, and the pattern repeats itself across each wheel. The character lifted off of the final wheel is the output. This step is repeated for each character in the message. Decryption simply sends the message backwards through a similar, but reversed process. What really makes this encryption effective is that like the real life machine, the wheels rotate either to the left or right after each character. So the relationship between each character shifts constantly. As a result, even repeating characters such as "aaaaaaaaaaa" are represented with garbage such as "zkhfXSURMBe". Another great part about an encryption scheme like this is it's flexibility. You can add more wheels, more characters per wheel, change the order of the wheels, the directions the wheels spin, and change the starting position of each wheel. So, unless someone can figure out: 1) How many wheels are being used... 2) How many characters are on each wheel... 3) The order of the wheels... 4) The direction they spin... 5) The initial position of each wheel... 6) The order of the characters on each wheel... It would be virtually impossible to look at the encrypted characters and determine their relationship to one another. There are so many possibilities and combinations of the above criteria, it would have to be solved through brute force. I am no mathematician, so if anyone can tell me the possible combinations, I would appreciate it. When the Germans used this machine, it baffled the Allies, who frantically tried to break it with no success. It wasn't until a German U-Boat was forced to surface in a naval battle and was captured that the Allies got a huge break. An Enigma machine was captured along with a code book that showed the information needed to decrypt the messages. The U-Boat was scuttled and the crew was kept in a top secret location. The U-Boat was simply considered lost during battle and Germans continued the war not knowing the truth. When the war in the Atlantic turned for the worse, the Germans, who believed their code to be unbreakable, believed that there were spies in their top level officials. They never considered that the code was being decrypted through a captured machine, so as a result, they set up elaborate networks to try and find these "spies". Paranoia being what it was, many loyal German officers were tortured and murdered for treason, even though they had committed no such offense. This code is by no means complete. I will try and enhance it's speed and toughen it's encryption even further. I'll also try and build a better sample app with more features. If you find a problem or have a suggestion, I would love to hear it.

C_Volume2 #68194
HTML ColorTags

...

C_Volume2 #67028
Silly Drawing Tool

Make shapes with this code. You can choose: color, shape, background; save your drawing, and more... I say it is silly, but you may not.

C_Volume2 #67029
skater boy! (small update)

This is a small update to my previous submission,fixed some bugs,added a new background,more detailed comments.Handling of PAK files,Use of DirectX7,Some physics(gravity)...

C_Volume2 #67030
GetDateDiff

This post is sort of a response to auJohnm posting of Date and Time Difference. This function uses the DafeDiff function built into VB to return a string like "1 Month, 2 Weeks, 4 Days" - without the time difference. I was just messing around and want to know what you think.

Languages
Top Categories
Global Discovery