Advertisement

Results for "Volume: 5_2007-2008"

5_2007-2008 #176345
The Game of Life

This is an implementation of the infamous 'Game of Life'. Made with VC6, as Win32 application. Demonstrates double-buffering, window clipping regions, bitmap buttons and more.

5_2007-2008 #183017
Who is online ASP.NET (Sessions tutorial)

This tutorial shows how you can list the users authenticated in your site using session object.

5_2007-2008 #184910
Drag and Drop the .Net Way

Drag and Drop in Visual Basic.Net. I haven't found any articles about this essential subject in planet source code or any of my favorite web sites. So I thought I'd help out a bit. Visual Basic.Net has changed the way data is moved using drag and drop techniques. This is a quick redirection to dragging and dropping in VB.Net. It also includes a bit of error handling using "TRY-CATCH" block statements.

5_2007-2008 #184911
Button Control Array w/ Event Handler

Button control array with event handling. This code will show you how to create control arrays in Visual Basic.Net and have each array member respond to events by using the AddressOf operator. Though it looks like a calculator, it has no calculation functions. The purpose of this project is not to show how to create a calculator.

5_2007-2008 #172237
Close/open the CD Rom door

Open and close the CD rom door from code! Note:comment out the unneeded api declaration (16 or 32 bit) depending on what operating system you are using!

5_2007-2008 #183586
System Tray Notify Icon

Shows a simple way of how to use the Notify Icon control. Includes a simple timer that changes the icon every second so that it appears to be flashing. Simple code for simple project unlike some of the hairy code I found on PSC for doing the same thing in Dot Net. Also shows how to use the contextmenu along with the Notify Icon control. Please vote.

5_2007-2008 #183498
Translucent Delphi Forms - Win2k/WinXP only

::UPDATED:: With these procedures, you can make your Delphi forms translucent [see through] using some API that's in Win2k and Windows XP. If you like it, please vote. This is written in the newest Delphi version (6).

5_2007-2008 #188006
Angle

This code allows for the easy drawing of angle measures (in either Radian or Degrees). It also provides a simple code for drawing lines in VB.NET

5_2007-2008 #177630
Updated ASP .NET Forum

This is a working message forum you can use on your web site. It now has user register and logging in features as well as replying to a post. You can try a demo at http://www.vegaware.com/board/forum.aspx

5_2007-2008 #172238
Printing a Microsoft Access Report from Visual Bas

How to print a Microsoft Access report from within VB. Also, VB 16-bit. (by Jose Garrick)

5_2007-2008 #176413
Learning C/C++ Part II: IF statements and variables

Hello, this is Alexander. Since I finally got an email from someone who liked my previous lesson, I am going to make the second installment. This one will be about variables, and stuff like 'if' statements.

5_2007-2008 #176414
Basics of C/C++: Part III--Loops

This is the third installment of the Lessons in C programming tutorials created by me, Alexander. In this lesson I will cover loops. Loops basically do what it sounds like, loop. If you have read lesson 2 you should understand some Boolean expressions. If you do not, you should read it again. When working with loops it is important to understand truth and false. Maybe you should try doing some truth tables with problems.

5_2007-2008 #172239
GetWaveInfo

If you've ever wondered how sound applications can show the kilohertz and samples per second information about a waveform file (.WAV), the answer lies in the RIFF file format. The RIFF file format is designed to be as generic as possible. It is used for waveform, AVI, palette, and other information standards that may need to be mixed and used together. Generally speaking, though, any file with a WAV extension will only contain waveform data. RIFF provides information in chunks and subchunks. The header for each chunk describes the length of the chunk and the type of data the chunk contains (WAVE, for instance, is the string identifying a WAVE chunk). The Wave subchunk is immediately followed by the WAVE Format Chunk. It is this small chunk that defines the structure of the waveform data that will follow. It defines the format of the waveform, the number of channels used (with 0 being mono, 1 being stereo), the sampling rate, the kilohertz at which is was recorded, and the data block size. Of these, only mono/stereo and the sampling rate are likely to be of interest unless you intend to write your own custom waveform player.

5_2007-2008 #186131
All C# Beginers Programs

Helping hand for the beginers! the .zip file contains these files Add.cs,Fabo.cs,Add.cs,Sort.cs,Greater.cs,Binary.cs,Reverse.cs,Prime.cs,Gcd.cs,BinSort.cs,Pascal.cs, Calendar.cs

5_2007-2008 #183829
User Input Text Editor

Updated on May 06, 2005 This was made with Delphi 6.02 Professional And will work with Delphi 5 not sure about any version below. Give it a try with Versions below 5 and email me please. For Beginners to Intermediate This is an intense tutorial on how to create a text editor. Thought that I add something to this sight, instead of just always taken from it. This tutorial is very detailed on what needs to be done, and all source codes are highlighted. With a grayed background. I am very proud of this tutorial and would really like to hear from you, about how you feel about it, and would like for you to votes for us on it. Rather good or bad. Thank you and please enjoy For the images that are used in the editor. that go with the tutorial please click on the email link below. Add Editor Images to the Subject Heading. And someone here at the office will try and find them for you, as this project is very old. And we are not sure if the actual code for it was destroyed or not. But please feel free to contact us anyway, if just to say hello :-) Thanks All; Wayne & Carr Barron Carrz-Fox-Fire Promotions (Please check out our other code samples and Delphi Registry Backup information as well)

5_2007-2008 #172240
control subclassing switchboard

The Switchboard:A method for handling subclassing in ActiveX controls f you develop ActiveX controls and intend to subclass or hook a window, you'll very quickly discover a problem when you attempt to site multiple instances of your control. The subclassing, which worked fine with a single instance of your control, now no longer works and is, in fact, most likely is causing a GPF. Why is this happening? The AddressOf operator requires you to place the callback routine in a module. This module is shared between all instances of your control and the variables and subroutines that the module provide are not unique to each instance. The easiest way to visualize the problem is to imagine a shared phoneline (or a partyline as we hicks call it) where multiple parties are trying to dial a number, talk, and hangup, all at the same time. What's needed is an operator, a routine that controls the dialing (hooking), the talking (the callback routine), and who routes information to the instance of the control that requested it. The Switchboard subroutine (see below) and it's supporting code provides a method for subclassing from multiple instances of your ActiveX control. It is not memory intensive, nor is it slow. It's biggest weakness is that it is hardcoded to intercept particular messages (in this case, WM_SIZE, to trap resize events) and will require some minor modification on your part to use.

5_2007-2008 #172241
Mouse manipulation

At some point, you may find it useful to manipulate the location of the mouse cursor. Perhaps you are designing an interactive tutorial, a walkthrough, or maybe you plan on controlling another application through mouse events. Regardless, you will quickly find a number of hurdles to overcome and it is the goal of this example to help you over, under, or around these hurdle

5_2007-2008 #183336
A Beginner's Guide to Controls Using Pong

This is a guide meant to help beginner's grasp the basic concepts in Delphi through the simple game of Pong. It includes manipulation of controls and uses the KeyDown Event to control the Paddles. Lines commented to tell their usage in the program. If you have any questions, then email me. Vote for Me!

5_2007-2008 #175600
GRAPHICAL WELCOME SCREEN

GRAPHICAL WELCOME FOR ANY PROGRAM OR PROGRAMMER, WHO WANT'S TO IMPRESS HIS USER, MAY IT BE A CLASS PROJECT OR A PROFESSONAL PRESENTATION.

5_2007-2008 #175499
Cyber Ship

Pure Entertainment. A space shoot-em-up game. Shoot the spce aliens before they shoot you.

Languages
Top Categories
Global Discovery