Advertisement

Results for "Volume: 2002C"

2002C #11890
Get PI

Another PI program. This one allows you to get PI for any number of decimal places up to 1000. It doesn't calculate PI, it is hard coded in! All you do is pass the number of decimal places required.

2002C #11237
Textured 3D Tunnel Effect, Real Time Rendering, 70fps on p450, Adjustable Speed/Rotation *Must See!*

I'm re-posting this because I've fixed a few minor things and made a few minor improvements. This demo runs at about 70 fps on my Pentium 3 450mhz. One executable runs in a window, the other runs fullscreen. It is a simple textured tunnel effect. The texture is wrapped around the tunnel and the bitmap is scrolled to simulate motion through the tunnel or rotation in the tunnel. The code involves methods that provide for very fast graphical manipulation, including lookup tables with mathematical formulas and pointers to a bitmap. The code includes gaussian blurring to smooth the texture and pointers to quickly change the screen. You can change the tunnels texture in the code. To exit the program, double click on the screen. Please vote for this project and leave a comment! I don't care if you give it a bad vote, just vote what you think... I really like to see what people think of it in general.

2002C #11909
Netab 1.0

Just like netcaptor except I ran into a few snags I couldnt figure out. Its IE in tabs. Includes full favorites code(retrieves favorites in menu) retrieves the typer urls for drop down box like in ie. Does a search and favorites side bar just like ie. Has an animated icon in the upper right hand corner. Opens new windows in new tabs. Has unfinished code to block popups by url or caption(if you are advanced enough you will find this part). ALL I ASK IS THAT ALL CODE REVISIONS BE SENT TO ME!!! (UNLESS OCX'S OR RESOURCES HAVE BEEN ADDED) ONLY CODE REVISIONS. THANKS! Try to fix the bug with the popup windows being really big(if the popup window is large it messes up for some reason) but if you make the window redraw by minimizing and maximizing it everythings ok..) I couldnt seem to fix this so maybe someone else can =] Just to clear a few things up this is only compatible with vb 6. Also to run the exe you need all of the vb6 runtimes. IF you still cant get it to run you can download the full package setup and all at http://elucidsoftware.hypermart.net/netab.zip

2002C #11749
How to Append a file to an EXE

This is just to show you how to append a file to an executable. Could be handy if you wanna save maybe a tag to your exe file. Have not test it with very large files but small file works perfectly.

2002C #11728
Virtual (pointless) VCR

Simulates a working VCR, is pretty pointless but im submittin it cuz i like the effect i had created with the fading labels, which i did in such a small amount of code.

2002C #11257
Direct X-files game

Direct X-Files is a really cheap game I made very quickly, mainly because I downloaded the X-files theme tune and I felt that I needed to find a use for it so I made this X-files game in a few hours (so don't expect anything amazing). Alot of the code has been re-used from my old DirectX-games. However, if you are new to DirectX, I think that you will find the code very useful as it demonstates the basics of DirectDraw and some really basic DirectMusic. If you are not new to DirectX the code is still interesting because it uses the Sine function to make UFO's fly in wavy line and it also does a cool lightning effect from the lone cloud which you are supposed to dodge. The aim of the game is to shoot at the UFO's. Even if you don't learn from the code, download it anyway just for a laugh. The game is probably far too easy so if you get bored just walk under a cloud just as it is about to stike lightning and watch your skeleton light up as you cry out about how your burning to death (that means the game has sound FX too!). If you learn from or laughed at this game that please vote to show your appreciation of my efforts. THIS GAME REQUIRES DIRECTX 7. I take no responability if it crashes especially since the DirectMusic part has no error handling.

2002C #11849
Flicker Free Gradient Credits

Allows flicker-free, gradient scrolling credits to be added to your program.

2002C #11462
XML Engine (classes and demo)

The XML Engine is a set of classes designed to make it easy for your programs to parse and construct XML. The parser can be used either to automatically construct an easy-to-use data structure (like I.E.'s document object model) or direct your program (through events) to do what it needs to on the fly. This latter mode facilitates work on the data even as the XML is being incrementally received, as from a long file download. This means your program won't have to wait to start work and can avoid memory overruns associated with "passively" parsing huge XML files. This approach could even be used with an endless stream of XML, which would be great for quickly implementing a simple client/server communication protocol (search for my "Socket Controls" package here at PSC). The XmlElement class, which represents a node in an XML tree, can be used independently of the engine. Your program can easily clone an XML tree, insert new branches anywhere, remove whole branches, and export it to raw XML or plain text (stripped of XML tags). The plain-text export can be given an array telling it what to replace certain tags with, too. An element node can be either a representation of a named tag (e.g., "TABLE") with named attributes or a text block (anything that would appear in-between tags). A demo program is included with simple demonstrations of a number of basic techniques. This engine does not deal with every last idiosyncracy of XML and assumes any XML it parses is well-formed. DTD's are not supported (not that they really relevant, here). But the basics of XML are supported. It can even be used as an HTML generator and parser, provided the HTML is XML-formatted (all start tags must have end tags or be single-tag formatted like "<SOMETAG/>"). Unfortunately, there is currently no documentation, but the code is straightforward and easy to read. Further, the demos should provide enough explanation for how to use the engine. Your comments and votes are welcome.

2002C #10229
Quick Sketch (A Laser Effect) It draws any picture in a picturebox

I have created something like the laser program but mine's alittle different . Mine actually draws out the picture and it looks like a laser while it does it . It can draw any picture you have . It's a must see

2002C #11823
Get the seperate RGB values of a Colour

It turns the Decimal format of a colour value (example: 16777215) into three seperate values containing the seperate Red, Green, and Blue values. (example: red = 255, green = 255, blue = 255).

2002C #11037
Using Collections in VB

Explains the basics of using collections in Visual Basic. These are a very powerful and often unused feature of VB.

2002C #10498
A Cool Starfield

This is a very cool starfield that can be moved in multiple directions. This is definitaly a must see. Please vote for me!

2002C #11912
_A Smart String Comparison

This takes 2 strings and returns the percent alike that they are. (i.e. "test string number 1" is 86.48% similar to "teststring numb 2") This function is very useful! You can use it in databases to match data that may have errors in it. Examples being people's names, company names, addresses, or anything else where you may encounter misspellings or inconsistencies in the data. Your feedback and/or votes are greatly appreciated! -- NEW - updated to use byte arrays instead of strings, 50-300% performance improvement!

2002C #9714
How to code a "wait" function...

This code shows you, how you can easily implement a "wait" function into visual-basic...

2002C #9715
How to hide the Windows95-Startbar

This shows an easy way, how to hide window's 95/98 Startbar.

2002C #10867
Automatic Internet Dialup

Most code snippets simply show you how to display a connect dialog. The problem with this is that it doesn't force a dial-up and won't alert you when a connection is established. This code solves those problems by using Internet Explorer's own 'automatic dial-up' settings (Control Panel >> Internet options >> Connections). It utilises two little-known API calls that can automatically connect / disconnect from the default connection. Note: If the 'Never Dial a Connection' option is selected, this code will not be able to connect. I came across this API awhile ago when my friend suggested a forced dialup and gave me this tip. It's actually pretty helpful.

2002C #9768
Better IsOdd

Tell if a number is odd in one line of code. (and if its not odd its even, but i dont have to tell you that)

2002C #9218
MDI Splitters with 4 Panes

This project Shows how to create a multiple-splitted MDI parent window. This project in particular manages 4 panes. There are only 2 API functions in use too.

2002C #9710
How to turn the monitor on/off

With this code you can turn on or off the monitor ;)

2002C #9711
Uppercase The First Letter Of Every Word Inside A String With Only 1 Line Of Code

This will uppercase the first letter of a every word in a string. For Example "this is a string" -> "This Is A String". You need only 1 line of code.

Languages
Top Categories
Global Discovery