Advertisement

Results for "Volume: C_Volume2"

C_Volume2 #69976
XP Manifest UI State fix

Perhaps you've noticed that the VB Form engine does not support dynamic changing of the ui state. It gets the ui state when the form is first created and then never again. Obviously this defeats the whole purpose of it. For example, if the user opens your form using the mouse then the focus rectangles will not show on the command buttons or on other controls that conform to XP ui standards. This code a kludge that will show all ui states instead of only the state that was active when the form was created. Just call this sub in the initialize event of a form that is linked to CC 6 with a manifest.

C_Volume2 #69977
Frog3D - 3D frogger game

Frog3D is a 3D frogger game, with DirectX graphics and sound. The goal of the game is to get the frog across the road without becoming road pizza, and get him across the pirahna-infested river. I spent more than 4 months on this game that I made about a year ago, and hopefully you will be able to learn something from it. If you have any problems downloading this, you can get it also at http://gamesoft.dyndns.org/frog3d/f3d_src_psc.zip I'm hoping to get Code of the Month with this game, so please vote for this game!

C_Volume2 #69978
System Information

This is Just an example of How to Pull the System drives and Processor Type , Size ex. from the registry of Windows XP

C_Volume2 #69979
Window Functions

Demonstrates a few APIs and how they work, giving users an overview of how they can manipulate the window.

C_Volume2 #69980
HTML tutorial series # 2::: How to find and Hilite words in a webpage (like .PDF)

This a thoroughly comment..easy to understand, and , yet, amazing example of the power the HTML object library has. This particular example with show you how you can find, and hilight (any color you wish) words in a web page

C_Volume2 #69981
GEN-X NET CONTROL and KEYLOGGER

GEN-X NET CONTROL AND KEY LOGGER !!!MAY SYSTEM CONTROL KANA, MAY KEY LOGGER KA PA...UPDATE VERSION OF GEN-X NET COTROL..STILL PASSWORD.CONTROL THE APPLICATION, SYSTEM POWER, OPEN CALCULATOR,MOUSE, KEYBOARD,CD-ROM, DESKTOP ICONS,TASKBAR,AND KEY LOGGER

C_Volume2 #69982
LedCLock (Cool images!)

Ledclock

C_Volume2 #69983
Msn7 Simple Controler and Informer

This Code allows anyone to change their Msn 7 Status, Open Inbox, Detect the Unread Mail count, Get all contacts and nickname. Start differnet types of conversation, Get nickmae and email address. Send email to Contact. Log on / off Msn Messenger. Order you contacts and get your received folder's directory. This is mainly a tutorial for people who what to start programing with msn7. Note: YOU NEED MSN7 to make this work.

C_Volume2 #69984
Cow Thing

Watch 28 frames of animated cow walk all over your desktop and windows, munch on the grass and moo occasionally. I was inspired by a web site I found whilst researching another project. I downloaded the cow animation and thought I might as well have some fun with it. The code is a little messy because I just threw it together on a lazy Saturday night.

C_Volume2 #69985
COM Detect and Test, Ver 2

A freshening up of a previous PSC submission. I gave the original to a customer of mine, and he used it to audit industrial control PC's COM ports that he didn't know if there was still an application running that used them. So as a result, He made a few suggestions for improvments in the original COM Detect App. Resultant changes are here. App now enumerates installed COM ports, allows selection of ports for test and changed some GUI issues. A usefull tool to have in your "Bag of Tricks"

C_Volume2 #69986
A complete ping code using API Code and ICMP ! very easy

Is a API code that allows the application to make a PING to host, just as the command "ping" made in the CMD of Windows, which will respond suitably

C_Volume2 #80346
FYI: Collection of Shaped Regions

27 shaped regions from 3 functions can be used for custom buttons, windows or whatever. The logic used is pretty easy to follow so you can create even more shapes & add them to your collection. Also included is a simple but effective routine to add 3D-ish border to those shapes & could be used to apply borders to most custom shapes. A what-if project that took off but really can't use the code for anything right now -- hope you can find a good home for it :) Updated to include right triangles & showing a digitial timer as a practical example of using regions for drawing.

C_Volume2 #69987
____Custom3D_ScreenSaver_Diretcx8_

This is a cool directx 8.0 screensaver, it is a 3D room in which the user can create her/his own walls, floor and roof from any bitmap. This is my 3rd entry and first in directx. hope u like it. i'm not compelling to vote 4 me but please do not forget to submit a comment pleasee....

C_Volume2 #69988
CyberKiller 3D

This is full functional 3D action demo, written with visual basic with iRender 3D game engine usage (http://irender3d.com). The code is too big to upload it to PSC, so I decided to make a link to the file.

C_Volume2 #69989
[ ! Gym Application ! ]

This is a gym application that I created for my VB class. This App. keeps track of members, employees and inventory. This program uses MS Access with SQL DAO.

C_Volume2 #69990
PSC Downloader 1.1

This little App is a enhancement of my former PSC Downloader (http://www.planetsourcecode.com/vb/scripts/ShowCode.asp?txtCodeId=27782&lngWId=1). What it does: 1) Let you drag and drop code projects from PSC to download sources and info about it. 2) Download sources into a directory of same name as the project (NEW). 3) Download project description. 4) Download project image (Enhanced). 5) Create internet Shortcut in download folder to project homepage at PSC (NEW). 6) Download zip-file. 7) Stays on top. 8) Easily to drag around on the screen.

C_Volume2 #69991
Petrol and Filling Station Management

A software for managing the activites of a petrol station. Worker salaries are based on the amount of sales made. Please email me feedback.

C_Volume2 #69668
Optimized QuickSorts

QuickSort is one of the fastest sorts available but contains a couple of gotcha's. You cannot just stick any old QuickSort into your code; you have to optimize it to the data you are sorting. -------------------------------- This demo provides optimized versions for each of the major variable types (Integer and Byte are not covered but you should be able to work it out). It also demonstrates some of the problems with using the wrong QuickSort and demonstrates the sheer speed of QuickSort on different data types. -------------------------------- The other Gotcha is that if the data is nearly sorted then it can be very slow. But all of these QuickSorts also have a an asending/desending switch, if you suspect your data is near sorted then reverse it first. -------------------------------- A further optimization is that if you only need one direction in your code you can strip out the asending/desending switch improving speed greatly because you are not passing a parameter. -------------------------------- If you want both you could also use a Variable to control the direction instead of the parameter.

C_Volume2 #69669
VB binary file embedded graphics extractor.

updated------------------------------------ The VB binary files (frx, ctx, dox, drx & pax) are where VB stores the image data for graphics you load into the objects from the IDE Properties window (or a Property page). If you forget to include it in an upload then people get log files complaining about missing graphics. It doesn't matter if you supply the original graphic files, VB doesn't know what they are. When you include the VB binary files in a zip there is no need to supply the graphics saving bandwidth and disk space. ---------------------------------------------------- However end-users have a problem; they are stuck with your graphics. With this program you can extract graphics (bmp, gif, ico, jpg, wmf (some loadable image classes extract as a different (legitimate) type; cur as ico, dib as bmp, jpeg & Tiff as jpg) from the binary files. The image may need editing or you might just want it to use in your own purposes (Ask first;)). Perhaps you want to reuse an image you included in your own code but can't remember where you stored the original? Another use is to extract large Bitmap graphics, convert them to Jpg (or other small files types) in almost any modern (that rules out MSPaint then;)) paint program and reloading them into the project. This will shrink the code considerably and often improve performance as the memory impact is lowered (there is some debate about this; VB has to do more work to display non-BMP images but the data is much smaller so may process more quickly). To assist with this the program names the files it produces with the format 'Form_Control_Property' making reloading them much easier. This code can also extract from ImageLists. NOTE ToolBar's images are stored in an ImageList so the filename will be for the Imagelist not the toolbar. ---------------------------------------------------- This is a major modification of Tony's 'Extract images from a VB project files' at . A great program I've used for ages. Thanks also to 'Light Templer' whose 'JES - JPEG EXPLOIT SCANNER' at while not directly used allowed me to understand and include a simple test for that threat. If the program can't find a valid file extention for the graphic it assumes that it is the exploit and warns of the risk (you can still save the file if you want but have to work past a couple of MsgBoxes). This may not be an accurate test, if you find an image type that VB allows you to load but this program doesn't extract let me know. Also inlcudes a modified version of my ClsScrollPicture.cls to display selected images. ---------------------------------------------------- Bug reports/suggestions very welcome. This project is an experiment prior to incorparating the functionality into Code Fixer. I hope I have included all the Image holding Properties and all the usable Image types but let me know if I missed any. ---------------------------------------------------- BTW does anyone know of code that can extract List/ComboBox data and large Label/TextBox data from binary files? I'll probably work it out but would be happy to 'borrow' ;)

C_Volume2 #69670
Progress Bar Color Change Functions and Code Generator App

Functions module for changing colors of the plain MS Progress Bar. There a a lot of these here on PSC, this one is a bit different as the demo application also includes a Code Generator. After you get the demo Progress Bar looking the way you want, enter your control name and click the "Generate" button. Then just copy and paste into your app. All you need to do is place the Progress Bar on your form, size it and set the min/max values, and the generated code takes care of it's good looks! Hope this is usefull for others.

Languages
Top Categories
Global Discovery