Results for "Volume: 6_2008-2009"
A simple screensaver. You'll see a moving sine curve with a ball on it, a stretching sine curve and a clock. This screensaver also supports the preview mode (you can see this in the control panel where you choose your screensaver) and has a config window (just a little about-box).
FQS (File Quick Sync) is complete app. for synchronizing files and folders on local and network shared disks. Easy-to-use app., very functional (like Windows backup software but much user-friendly :) ). Scheduler sync included. You can create, modify, delete, import and export sync templates. I use this app. for over 9 months ... try it yourself! Post some comments if you want. Regards, Struja. Note: you must have True DB Grid 5 control (tdbg5.ocx). You can download it from: http://web.vip.hr/struja-online.vip/tdbg5.zip
This article is for you who struggle to find out how to create a screensaver with vb. This article is an update to my last one. This one includes a working source code example. I have updated this yet again. This one ends on mouse movements. Please vote for me.
Present a concise, easy-to-understand, and easy-to-use method of binary encryption. It could easily be taken and twisted into something more complex and harder to crack.
V 1.2 This is the most advanced gradient painter on PSC it can paint a liniair gradient in any angle WITHOUT blank areas!!! but that's not all you can also paint a radial gradient and define youre own center!!!
Show a wait box with progress while your program is performing a task that takes a long time. This project shows an application modal wait box while doing a work. You can change the progress value from the owner form with preventing the user from activating it. The wait box also shows time infos such as start time, elaspsed time, end estimated time, remaining time.
First some clarification: This takes a number (say, 65) and the number of bits you want returned (say 8) and returns a STRING of 1's and 0's (such as "01000001"). Also converts the other way, too. Since VB doesn't have any bitshifting capability, this MIGHT be the only way to do it. (If someone has a better method, by all means PLEASE let me know.) I came in here looking for a quick and dirty method of doing this. I don't mean to be rude, people, but if you don't know what you're doing, don't upload the code. I poured through well over 2 dozen horribly ugly "methods" of conversion that all involved nested loops, select case, if/then trees, and all other sorts of nonsense. Finally, I gave up and wrote it myself. Once you understand the maths that go into making a binary number, you'll understand how simple this code really is. It can manage to convert any Long Integer to binary, and back again, quick, easy, and with a minimum of overhead. I'm sure there's probably even APIs to do this, now, but they likely wouldn't be available on legacy systems, and this method will work in any language. Note that this is marked as "Advanced" code. If you can't figure out how to use it, that's on you. In reality, it's pretty straightforward.
--->---@@--->---
The clone of OS X. Renamed. All New. This is Beta Release 1 and COULD SOME ONE tell me some code so you click and drag the dialogs? I will release Beta 2 upon completion and bug fixes!
This is now the working Version of the Matrix ScreenSaver. The Settings now work and it has been improved
just a small, triple triad game featured in final fantasy 8..ill expand it for online gaming and stuff soon, add all the rules...i just need someone to do the GFX for each card :/
Simply and efficiently rename all the files of a directory. Select a directory, Choose what type of files to rename (All, Graphic, text), Enter a starting number, Select a number of 'padding' (zero's) and thats it!. Good example of simple error handling, Loop Structures, etc. Nothing too exciting, but it works on Windows 98 - XP. Mail me if you need more functionality.
the purpose of this code is just to make a circle by using lines of different gradients
Complete Library Management Software fully commented,No dirty coding. Very useful for beginners!!!!!! Please vote
Prevent your files from copying by unauthorised person. By default any file's Attribute is Archive. You have to just remove this Attribute from it's property. When any one copy this file,at this time the file is again became Archive we can use this to identifying Unauthorised user.
A little animation
Pure VB version of Yahtzee. A version that you might actually play, rather than one you'd write and never look at again! Please vote for me.
This program allows you to type in multiple ebay auction item numbers and it will load the info about them. In a list box, it tells you the auction name, the number of bids, the price, and when it ends. When you click an auction on the list, it re-loads the auction and displays the most current info.
This code shows how to hook a progress bar up to a timer accurately. You can stop and resume from where you left off. I designed this code for a game I plan on designing. It shows the percentage and it is easy to change the max value and increments of the progress bar during run-time. Please feel free to use the code as you like. I would really appreciate it if you can leave some feedback and vote. Thanks!
This code looks up MX (Mail eXchange) records for any domain from a DNS server (For those who dont know what a MX record is, MX records contain the name of the SMTP server which receives mail for a domain). This is an improvement (I hope so :) over Jason Martin's code (http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=11006&lngWId=1). Here are the changes I made: 1. It uses winsock and not API for the query. 2. It wont freeze if you give a non-existent domain or DNS server. 3. It gets the DNS server in use by your computer by network api instead of registry. 4. There was a bug in Jason's code due to which if the DNS response was compressed it would return only the first MX record. For example, Jason's code would return one MX record for earthlink.com while mine will return all five. I'll appreciate any feedback on this code.