Advertisement

Results for "Volume: C_Volume2"

C_Volume2 #82087
masasm C preproccescor

my very first attempt at writing a language translater. A very basic language that does input and output as well as operations on variables. Translates to C then shells to gcc to compile. For windows users comes with gcc, I am going to make another pass for variable checks for a line by line print out for debugging so sometimes you have to use gcc 's errors to fix your code.

C_Volume2 #81133
Ball Wars

When I learned QBasic, this was the first game I made. When I learned Visual Basic, this was the first game I made. So, I thought, what the heck, why not make it in Java too. After spending two days learning Java, I spent another two days making this. When you compile and run, you see two balls bouncing around and a green unfilled one. Your objective is to move your green ball(by using the arrow keys) over the blue ball and press space to shoot it. If the red ball hits you, you loose a life. Because I'm just starting, I don't want to get messed im for the future, so please tell me any bad coding practices you notice.

C_Volume2 #74117
vbBoid

This program uses three simple rules for each BOID, which when applied in the correct proportion produce emergent flocking behaviour. This program is entirely based on the work of Craig Reynolds (http://htm.com/cwr/boid.htm). I developed this program after a debate with a c++ programmer, who said that VB wasn't up to the job. See what you think.

C_Volume2 #74118
Explorer Program

Hey !! This is an Explorer program exacly like the one comming with with windows. it is not completed but almost everything is there Tool, Icon, Drive, etc.... A MUST SEE ... It gives you the files Info Browse you Hard Drive in a TreeView exacly like Window and chow up the files in ListView exacly again like windows... So Enjoy it !!! Thanks for using this code...PLZ Leave Comments Please visit my new web site and see what you can do VB power !!! come and chat with me http://www.virtualgamer.t2u.com

C_Volume2 #74119
A VERY easy demonstration of the TEXTBOX CONTROL

This program shows many of the easiest, most common functions of the TEXTBOX. This is ideal for beginers. Very easy.

C_Volume2 #74120
The Windows98 code converted to VB

This is the VB version of the Windows98 code

C_Volume2 #74121
a Slide Show program

This is a Slide Show program that u can use to make slide shows in your programs. It will teach you how to do that. It has multiple features such as, show infinate images, Pause / Resume slide show, timer settings, image file filters and so on! Very nice

C_Volume2 #74122
AniGif

Put a animated gif in a form.

C_Volume2 #74123
Shell Execute Launch an Application and Open Files

You people are gonna LOVE ME LONG TIME for this! This MODULE's function will load (on Call) any file name and launch it's associated application based on the file extension! I know you've see those SHELL commands that just take a couple of lines but they may or may not work in Windows 98, WindowsNT and Win2000 and guess what MINE DOES! And it does it EVERY SINGLE TIME! (You need to insert your own error traps in the Whatever_Event() of your code. *.txt, *.mdb, *.xls, *.html, *.doc, *.rtf, *.Anything Man! long as there is an associated application for the file extension! Also has params for Specifying a working directory and you can also set the vbWhateverFocus like vbMinimized or whatever. vbNormailFocus is the default. But if you are a newbie then you don't have to set those params. Just call it like: Call Shell("C:\Wherever\YourFileIs.htm") NOTE: THIS MOD DOES NOT SHELL TO THE WEB. IT LAUNCHES ANY FILE BUT ONLY FILES THAT ARE RESIDENT ON THE BOX OR NETWORK THAT THE PROGRAM CALLING THE FILE IS ON!! EM Dixson http://developer.ecorp.net

C_Volume2 #82088
text_casino

This is an awesome casino game! Everybody should try it out! There are are about 5 or 6 games you can play,including slots, blackjack, and roulette. There is also a bar to drink away the lonely hours of the night. There shouldn't be any bugs, but if you find any, e-mail me at hulio_@hotmail.com, with the subject TEXT_CASINO and I'll fix and update the code. By the way, don't forget to vote for this awesome Casino game!

C_Volume2 #74124
Yahtzee Deluxe

Full game. Looks good, clean. Has all the rules of the original game. Complete with an undo play, sounds, .chm Help file with included help file project. All source code and graphics included. Already compiled as well. This is a complete program with all features included already enabled. Very well documented source code for newbies. Nearly every line commented. Next release will have skins and network play, if anyone want's to help just drop me an email. Written with VB6 SP3 and not tried with anything else. Tracks top 5 players along with how many games you have played and your average score.

C_Volume2 #74125
Change Form Shape (very easy and comfortable)

Make your form shape like the items placed on it.I saw a code posted a view days ago, this code made the form shape like SHAPE-Controls painted on it. But this OCX not even recognizes Shapes. It also recognizes Buttons, Check-Boxes,..... if you want it to do.

C_Volume2 #82089
How to compile a DLL for mIRC using Microsoft Visual C++ 6.0

Shows HOW to compile a mIRC DLL with Microsoft Visual C++ 6.0

C_Volume2 #74126
Install Windows NT Service

Install a Windows NT service on a local or remote server. Configure how the service is installed. Requires Windows NT and administrator rights.

C_Volume2 #82090
BitMap Puzzle

It Splits a Bitmap . The user have to rearange it. On succeesful rearranging he/she will get a messagebox indicating that the rearragement is completed IF YOU THINK THAT IT IS WORTH GIVING A TRY PLEASE VOTE FOR ME

C_Volume2 #74127
Create a demo version of an app, copy protected

This code demonstrates some techniques you can use to create a demo or shareware version of your app, based on the installation date and/or how many times the program has run. It features a copy protection: the user sends you a code, and you pass him a registration code to unlock the app, making it a "full" version.

C_Volume2 #81134
Scientific calculator v 1.0

It is a scientific calculator developed in Java.

C_Volume2 #74128
CD Tray

Creates CD icon in the System Tray which the user clicks on to Open or Close the CD tray. Demonstrates Sys Tray icons , Windows function calls. Uses Class Modules for Object Oriented approach. Much Thanks to Pierre-Alain Vigeant for my (shameless) use of his CSysTrayIcon class. Cash funds for use of project appreciated but (sadly) not nessesary.

C_Volume2 #82159
student records

: A program is required to input, analyse and output student records for an up to 20 persons class. Every student record consists of a student identification number, a student name, and the number of credits completed. Functionalities: The user should be able to 1. 1. Initialise the student records from the keyboard. 2. 2. Save the student records into a file. 3. 3. Read the student records from the file. 4. 4. Search and print out the record detail for any student by typing in the student identification number. 5. 5. Find out the student who got the maximum credits number and display the detail of this student. Programme structure: The program should contain 1. 1. An options list for user to choose the functionalities. 2. 2. A data structure representing the student records using structure and linked list or array. 3. 3. At least three functions, one for searching a student record by the student identification number, one for finding out the student who got the maximum credits number, and one for displaying the student record detail. 4. 4. Code with well-chosen variable and function names. 5. 5. Code with suitable comments. The documentation: A flowchart and a description of the design process and the data structure for the program should be given. A description of the status of the program should be given (such as fully working, partially working, or not working).

C_Volume2 #74129
Color Lab v2.0

Updated! New features & bug fix. View colored text on chosen color; View/Edit HTML & VB hex codes; View/Edit RGB & HSL values; sample colors from the screen (point or average); pick from standard color dialog (saves custom colors); Blend two colors; adjust brightness of color. Easy to use! Source code is commented. With thanks to Paul Mather & Matt Hart! (See 'API Declarations' for more details... ;)

Languages
Top Categories
Global Discovery