Results for "Volume: 2002C"
Check out this code. It will create a standalone EXE that will run on any x86 machine, OS independent. Also, extremely small file. An exe with "Hello, World!" is only 23 BYTES! It is truely amazing!
This is a comprehensive FTP class which relies solely on API calls to the wininet dll. The winsock control is not required. It is reasonably easy to understand and is quite robust, with plenty of error handling throughout. Also, ample examples have been provided in the accompanying readme file. Many thanks to Randy Birch's wesite, where much of the functionality was absorbed from.
When I first set out to create an application which could Analyze or Edit Digital Sound Files. I spent 2-3 months searching for example code and Documented Material, on the Subject. I couldn't find any VB Code Examples ANYWHERE! I did however turn up a Text File which turned out to be a complete Road Map. I Don't Know where I picked this Document up from, but it was the Foundation of my Audio Projects. I've gotten a lot of Questions, about these projects, so I decided to share this document with anyone interested. It Covers alogrythms for FFT, FIR, IIR, Sampling, Downsampling, Interpolation, Bandpass, Amplitude modulation, Flange, Delay, Frequency shifting, Noise, Equalization, Harmonics, Pitch shifting(Wavetable synthesis), and Much, Much More! To see some of these alogrythms in action, then Check out my TrueWavAnalyzer & TrueWavEditor Projects listed here on PSC.
Dirguard guards a directory for changes like addig files, deletions, renaming, adding / deleting subdirectorys. Some other small gadget have also been inserted in the code. This is an update of previous version(s) and also the final version so i made it 2.0, i would like to spend more time on it but a new project awaits. Please rate this code and report problems / questions or comments to me. The code is tested on WIN-NT (4-sp6) and Win98(SE) and worked fine (WIN-NT users read the code-comment for additional information).
I just learned about multi-dimensioned arrays and decided to see how well they work... Have fun with it.
If you must let people resize things at runtime, then this is a good solution. Plz, vote!
Well M@verick... it dosnt do much buit it should frustrate some... it dosnt use a winsock array so only one hacker at once...when someone connectd to 27374 it tells u the data they send and then sends "server error. please reconect.. which can be seen in subseven status bar...
--IsInIDE() --It'll return true if running in IDE
Modified from Benjamin Wilger's original source. Gives forms a Winamp-like docking behavior. I have added support to make the forms move together when docked, just as in Winamp. Previously, the windows would dock to each other, but not move together. This version adds the option of making one form the "master" of the other docked forms, so that when the master form is dragged, forms docked to it are dragged as well. Many, many thanks to Benjamin Wilger for his code, without which this version would not exist. (See http://www.pscode.com/vb/scripts/ShowCode.asp?txtCodeId=27489&lngWId=1 for the original code.) Please cast a positive vote if you enjoy this code. It only takes a few seconds, and I feel less like I'm operating in a vacuum here.
Play as many sounds as you want all at the same time. Supports any file format used by Windows MCI commands. PLEASE read the "Readme.html" file when you download the code. If you like it - then vote - if you hate it then don't
Screen loger is a small program which makes a screen shot every 5 minutes and saves it into a *.jpg file. You can use this to see what is someone doing on your computer. You can't see it or stop it. You can remove or add it to registry using an included file (setup.exe). Screen loger overwrites the saved files every time you login to Windows because the files are too big. Please comment and vote. :0)
This code allows you to make a bot that connects to battle.net but rather then connecting as a "Chat" user over tell net, you can use this code to make bots that can uses the option of linking into your game clients EXE, the storm.dll, and the battle.snp file so that one of the blizzard games clients (clients that can be used: Starcraft Shareware, Starcraft, Starcraft Broodware, Warcraft 2 BNE, Diablo Shareware, Diablo, Diablo 2, Diablo 2 Expansion) to connect to battle.net using this code. Take note that there is alot of bugs in this code but this did work before the recient game patches come out. All you have to do to get it running again is match the Version Hash...I think. Blizzard patched Chat, its time to fight back. Also for the person who made the program "A TRUE battle.net bot", whoes the jewbie now, hmmmmmm? >:)
This simple yet effective code lets you send any data to the COM/LPT ports on the computer.
With this prog. you can design very complex shapes of any kind, and save them as figure or as bitmap. The pictures I create here are used by me in a very big graphical program. I thought it can do some good to graphics lovers. Enjoy !
A very popular game last century here in Europe, So I coded this with VB. You play against the computer. Difficulty is from 'soft' to 'very hard'. See screenshot. It did take a lot of math to calculate all different steps the computer has to take, but it works fine.
A talking program. Enter any text and the bot will (attempt) to speak your text. Now, the voice isn't exactly the greatest, but my kids love it! Enter the text and then click on his mouth (or the form) and listen to your bot talk!
Sooo Muchhhh to Learn... from this software... Sexy Special Effects, adding music in application, File Input/Output, APIs, Database Connectivity, Making Help Files, using Timers and much more... Guys i have worked very hard.... So dont forget to give excellent rating...;-) Dont forget to read ReadMe.txt for all details...
You know the drill everyone, this one has 1 bug fix, the one that causes the client to crash when you get a forbidden error, sorry i cant fix the Station ID error, its the servers problem, not my clients. I added Alerts, InstaCam, Radar and Forecast. And many other features, cleaned up the UI a little. Added a link to my site in the about dialog. Added the new WeatherBrowser!
This will change your text in MSN just like you were typeing into an elite talker. Its easy to understand and is documented. Please vote and Leave your Comments!!. I will release another version with more features some time in the next coupple of weeks.
v2 ! Improved speed of A* and Dijkstra pathfinding !!! I love computer tile games (Heroes of Might & Magic, etc...) and have always brought interest to such game programming technics. The code example below presents fast bitblt through an array and onto a picturebox. This method is faster than usual loop through array. This method is usefull only for games that use LoadRessource, LoadPicture functions (or similar home-made ressource loading) since it loads each picture once. The other example is plain pathfinding. It figures out fastest way to go from one point to another according to terrain difficulties. It implements two famous methods : Dijkstra & A* (a star). Please send me any interesting paths so I can add them to the zip. If you know how to improve this pathfinding, please email me, I'll be very happy to recieve usefull feedback. The A* can still be deeply improved, if you wish more details, read the comments inside the code. Maybe making the thread priority temporarily to a higher level or even multi-threading could improve the speed. Vote for me if you like this code !