Advertisement

Results for "Volume: ASP_Volume2"

ASP_Volume2 #29886
Implode Form (with API) Project Included

I posted this code yesterday but I had comments on it and emails sent directly to me from my web site asking how to use it. Guess that is the problem when you only post the sub routine. So, here is the code again, but this time with a demo project. This uses the API to simulate the minimize effect you see of a form shrinking to the taskbar, but with this code you can shrink it to any place you want, like itself to show it imploding, or the tray, or to the mouse. KEYWORDS: FORM ANIMATION DRAWANIMATEDRECTS FOLD IMPLODE MOUSE TASKBAR EFFECT EFFECTS

ASP_Volume2 #29887
Weather Display Program

Displays the current weather and forecast for 7 days. Also has tabs for Local Radar loop and a East coast Hurricane watch loop, and also a pollen count tab. When minimized it has a mini weather form with current temp and conditions image. Can also be fully minimzed to the tray. I download the webpage code and make a new local webpage based on what I am looking for and then browse to the local page. Let me know what you think. Later

ASP_Volume2 #29888
Quick String Parsing of a Comma Delimited String

This example will show you how parse a list a variables quickly with minimal coding.

ASP_Volume2 #29889
A basic encryption thing

This is a nice basic Encryption Program. It reverses and encripts text streams. You will need to log in as N: MSanders P: mypassword53 The login reads from an encrypted file, gets the passwords and compares the feilds. Give it a look it's worth it to get you started on encryption. I did this a while ago now so i'm just updating the entry. The encryption/decryption algorithm is not as good as it could be, but take a look.

ASP_Volume2 #29890
Syphon - VB IRC Bot

This is a fully functional IRC Bot written in VB6. There are lots of other applications I'm building into it, but I thought I'd release this stable BETA so long. The applications to come are: 1) Statistical logging to a SQL database from which Analytical reports can be drawn. 2) Dictionary driven events. 3) Owners/admins list for stopping normal users abusing the bot (this section is actually almost complete in the version i'm working on now) I've included these instructions for operation: Inside the /media/ subfolder, there's a file called "settings.conf" .. inside there, change the bot's connection details to the server you want it to connect to. Run the program (debug or compiled) and the bot will connect to that server. You can view the bot's progress in the /media/logs/ folder, under the log file that matches today's date. Once the bot has connected successfully, you can then control it through IRC. Commands are sent like this: /msg . example: /msg MyBot .join #bots When doing commands, if you get the parameters wrong, the bot will give you a syntax breakdown.. Here's all the commands so far: .join .part .say .notice .action .quit .kick .ban .mode (eg. .mode #bots +b ) There should be lots more coming in ver.2 :) So tell me what you think? And remember, vote lots!!! ;)

ASP_Volume2 #29891
Change of field Size-Source

Sorry !, My contents of snippet was posted very strange as below. So, i will post my source code Once again, Sorry

ASP_Volume2 #29892
Projectile Physics (useful for games)

The program is demonstrating a module I wrote for calculating things about a projectile (For example a mortar) it gives things like the range, the time till impact and it graphs the flight path. Any questions of comments? post here New version : fixed Gravity constants and set autoredraw on pic boxes to true ... thanks rick =D

ASP_Volume2 #29893
API Detailed Progress Bar

This is basically a smooth-scrolling progress bar that is able to take a caption. I know there are loads of these already on the site, but the code is well commented, and wth anyway :)

ASP_Volume2 #29894
Pocket Calculator using a State Transition Table

This pocket calculator is meant as an example for the almost forgotten State Transition Table technique. With this technique the complete behaviour pattern is stored in a two-dimensional table containig Reactions to input-triggers (in this case key presses, but depending on circumstances the triggers may be anything else), and States. An STT is an ideal tool to control game characters for example because it allows different reactions to identical inputs. The code is documented and also contains a short description of how it works. It's worth the download if you want to learn more about STTs, so give it a try. Download is 18 kB.

ASP_Volume2 #29895
Capture Active Window The Inventive Way (without API calls)

Capture snapshots of your active window, taskbar, desktop or even start menu itself WITHOUT API calls!!! No create bitmaps and palletes. Just capture and save by clicking on them. It practically captures anything active. See Screenshot taken by the program itself or download it (2.5 Kb). If you like it, please come back and give comments or vote...

ASP_Volume2 #29896
Sine ScreenSaver

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).

ASP_Volume2 #29897
File Quick Sync

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

ASP_Volume2 #29898
Screensaver Tutorial *UPDATED* (Again)

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.

ASP_Volume2 #29899
___Binary Encryption___

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.

ASP_Volume2 #29900
[***Gradient painter Liniair+Angle / Radial***]

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!!!

ASP_Volume2 #29901
Wait Box (Application Modal)

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.

ASP_Volume2 #27592
Binary String<--> Numeric conversion - THE RIGHT WAY!!!! {Updated!}

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.

ASP_Volume2 #27593
How to Terminate Process By HWND

--->---@@--->---

ASP_Volume2 #27594
XDows (OS X Clone) 2002 BR1

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!

ASP_Volume2 #29902
Matrix Screensaver with Settings

This is now the working Version of the Matrix ScreenSaver. The Settings now work and it has been improved

Languages
Top Categories
Global Discovery