Results for "Volume: 2002C"
This program gears towards how it would look like if you were actually riding some of your favorite rides. It uses textures to create the effect of the ride, and uses a base tunnel for the body to paste all the textures on. DirectX 7 or higher only! If you like what you see, VOTE! ;D
to all programmer out there who is like me...download code and don't know how to manage it.. :) this simple program shows and help us (maybe..)to manage code/program/module...u can modified it as u like...i'm new in this area..i'll be glad to have some comment(s) from u to help my programming skills...c ya..
A simple example using List View to display items. Uses the Common Controls 6.0.
Just enter your expression and let the computer do the job. If you have any comments or suggestions, you can email at AJB2001LG@YAHOO.COM
PDFproducer v1.0 PDFproducer produces PDF file of any text file. As this version is first version, no graphics support, no font_size change support. But the really thing I want to show are the basic elements of a PDF file. I have always wanted to do this. The PDF file (generated by this program) is tested on Acrobat 5.0, if tests on 4.0 or below are successful inform me. You can modify its contents, but if you make a major change please inform me. Please spare some time to vote me. If any bugs are found, please inform me. Fixed that overflow bug
A step by step article on how to make an Active X control. In my eyes, I am not an expert but somebody asked me to write this (past comment on another submission) so I did. If you follow it, in the end you will have your own Custom PictureBox control that will have a property to assign a URL to an image to use for its picture along with an event to know when it completed its download. Hope you all enjoy. I did not realize it would take me so long to write.
It allows you to resolve by IP or Host name. It will also allow you to resolve subnets.
Gathers hardware, software, bios, etc information from your computer, or any computer on your network. Automatically gets the names of all computers on your network. Retrieves hardware information including processor, BIOS, windows version, build, service pack level. Shows all hardware in your computer's records and marks those that the computer is currently using. Good example of using the registry, resource files, hex to decimal conversion, api calls, etc. Does not require anything to be installed on another computer. Please vote, i've worked hard on this code, and let me know if you find any problems. Thanks!
This project is an enhancement/rewrite of another submission (see below). This project displays advanced Win2K/XP style "balloons". This version includes a title bar that can be used to "drag" the ballon, RTF support, scrollable text, simple rounded rectangle code, API border drawing code, and completely dynamic resizable balloon. See the readme in the project for details from original author and notes about enhancements. FYI: I had offerred to send this new code to the author for inclusion in the original but he wanted to keep his code separate so I figured I would go ahead and post my enhancements for everyone with his permission. (see the chat on the original post) ------ Clip from other submission ----- This code will show Windows 2000/XP-style popup balloons. They were introduced in Windows 2000, and in XP they're seen all over, especially in the system tray. But Microsoft hasn't released how to use them yet (except for tray icons),and--if they did--it would only work on Windows 2000 or later. This project shows you how you can use these balloons in your programs. Instead of relying on Windows to make them, this program makes its own. Therefore, it will not only work with Windows 2000 and XP, but also with all other versions of Windows (down to 95). ..... Original submission can be found here: http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=31434&lngWId=1
There is no purpose to this i was just real sick today and i always make sumtin when im sick and submit it to PSC. Dont be fooled my circle and box maddness they are actully the coolest ones. Took alot of math thinking. thanks and vote :)
Have you ever created a link for your email or homepage, which uses an object that highlights when you move your mouse over it? This is a much more efficient method of doing this, because it will always show the correct state. The reason for this is that most of you have coded it so the Label_MouseMove event highlights and the Form_MouseMove event un-highlights. This is a terrible way of doing it because it's possible to move your mouse away from the label without placing your mouse over the form. Therefore, the label stays highlighted, which is not the desired effect. See the screen shot for more information.
This article teaches you all about Packaging and Deploying an application using the Package and Deployment Wizard that comes with Visual Basic 6.0. These notes are everything that you need to know about the P&D Wizard for the MCSD Exam 70-176 (Designing and Implementing Desktop Applications Using Visual Basic 6.0). If you plan on becomeing certified, this is a definate must read! Please remember to vote. And if you could check out my site http://PietschSoft.itgo.com Thanks
Demonstrates how to create your own application extensibility, support add-ins and exposed a desired interface to the developer of the add-in, demostrates simple use of polymorphism. *Note: this is only a simple demonstartion of what can be done, the only limitation to creating addins is your imagination!
Class to encrypt and decrypt a clear text with variable character length encoding. There is no relationship between byte boundaries and encrypted characters, ie an encrypted character may theoretically be anything from 1 to 255 bits long; however this depends on the 'quality' of the key. I am not a cryptoanalyst, but I have a hunch that the variable character length makes this code rather difficult if not impossible to break. One approach may be to scan the encryption for repeating bit-groups and guess the meaning of short groups occuring more frequently than others (like "the", "a", "an" and so forth), or for patterns occuring with a language-specific frequency of vowels and consonants. To forestall that, the encrypting engine uses an initial hash (also derived from the key) and XORs every character with that before encrypting, keeping the result of the XOR for the next character. The decrypting engine of course reverses that process. The encryption engine now features an MD5 message digester which produces a key- and message-dependent binary signature. This signature may be included in the encrypted text to verify it's authenticity. Another advantage of prefixing a message with a signature is the additional scrambling of the encryted text through the previous encrypting of the unpredictable signature (see 'hash' above). This makes the encryption key- and text-dependent, that is, the encryption for a particular character is different when the text is different (apart from being different through hashing). Speed (without debugging) is in excess of 40,000 bytes/sec for encrypting and more than 130,000 bps for decrypting (depending of course on your PC's clock frequency).
Do you know that you can call Java classes from Visual Basic ?? well, that's not a fair tale anymore, it's possible. let me guide you through this adventure. Firts at all, we need a Java class, Here you will find an example: Java Code //************************************************** public class MyTest { public int myfunction(int value1, int value2) { return value1+value2; } } //*************************************************** Compile it i.e. javac MyTest.java and when you get MyTest.class file, you must register it for this you will need Microsfot SDK for Java you can download from this link http://www.microsoft.com/java/download/dl_sdk40.htm when you have downloaded and installed. include it on Path variable enviroment just do it using Command Ms-DOS set path=%path%;C:\Program Files\Microsoft SDK for Java 4.0\bin\ (this path could change) then you must register our MyTest.class file. you should do it using javareg.exe file from Microsoft SDK for Java i.e. javareg /register /class:MyTest /progid:MyTest if everything is well-done then you should see a MessageBox displayed with Succesfull register Class message. Otherwise, you must check the correct spelling on the command line. Now, the next step, copy the new Java class file that was generated. MyTest.class and paste in C:\Winnt\Java\Trustlib\ folder if you have windows 98, this folder may change. And the last step, open a New Project on Visual Basic. And paste this brief code on the Form Load event for example and run it. Set x = CreateObject("MyTest") MsgBox x.myfunction(1, 1) Congratulations !!! you can use Java Class from Visual Basic. Please do not forget to vote for this article. =)
*UPDATED* this cool lil program downloads music from a SHOUTcast server into a file on your computer, it also grabs the server info (name,genre,url and bitrate) which i haven't seen any other SHOUTcast s/c's on here do! :) it also tells you how many bytes,kbs,mbs or gbs of mp3 u have downloaded. please vote and leave feedback
Written by: Troy Williams Email: fenris@hotmail.com First off, the most of the code is original. The rest of the code has been put to gether from various sources around the internet including PSC. So if you recognize code that you wrote I will be more then happy to put your name to the code. This program is designed to download source code from PSC.. - It is capable of downloading up to six files at the same time(well actually, the number is virtually unlimited, but more then 4 or 5 will piss PSC off. I found that 2 gives good results). - It supports cut and pasting of urls, as well as drag and dropping urls. I wrote this program because my home computer (win XP pro) could not access the PSC site for some reason. I was receiving the code of the day newsletter, in which were the links to that days uploads. So I put two and two together and wrote an app to download the files. Along the way I discovered a number of interesting things. The urls in the newsletters are redirect links So I developed a way to follow the redirect links. The program has a number of interesting features as well. The urls to download are stored in a listbox, which basically acts like a que. This allows multiple winsock controls to download different files When a valid download url is found (i.e. the normal sourcecode download page) it copies the html to a directory named for the of the webpage. This allows for a description of the code to be saved along with the zip file. Also the html and file headers are saved in that directory as well as a *.url file with the download url. The program also logs urls that caused problems to a log window, which allows the log to be written to disk. The Url list can be saved to a file as well. To use the program.... Start up the program, either from the ide or from a full compile. Select options from the menu and locate the directory where you want to download the files to, also enter the number of simultaneous downloads you want to have. Goto File/New Downloads An URL List window will popup, simply copy and past (or drag and drop) the urls into the listbox When you are ready to begin downloading, click on the download button
Well i decided to make a 3d engine, and this is as far as i have got. It can do ANY polygon that u can make. Runs at around 340 fps on my WinXP machine (1ghz,256mb ram, geforce 2 MX 32mb). I added a VisX editor to make your own 3d objects while seing them rotate in 3d space, then generate the code with 1 click. The only problem i have is i can get the drawing oders right so colours can be used on sides! If you can help please do! Please vote :). Nick
This is the third update to my ExplorerTree, whats new, 1. Icons are displayed in each FileList, this does it a different way than usual. If you have 2000 + files in a Folder, listing all the Files, icons and information associated with those Files takes ages, the File information isn`t the problem, it`s the icon information that takes ages even using API. this version of ExplorerTree only displays the icons as they are displayed in the FileList. Once all the icons have been displayed the gathering of icon information stops (loop stops). Much better than waiting for all the File icon information to display in the FileList.
Ok, in my last posting, once again, somebody requested another article, this time on how to make a DLL. so.... here it is. I hope it fairs well with all.