Advertisement

Results for "Volume: 2_2002-2004"

2_2002-2004 #124619
A Skiner for Winamp

WinSkinMaker transforms a picture into a skin for Winamp(see the screen shot).You just have to choose the picture and give a (single!) click.Is in pure Visual Basic.

2_2002-2004 #124620
Child Mind

It' a game drag and drop game for children. Created by Sunjay Kumar & Afaque Ahmed Memon. visit: http://www.afaqmemon.com

2_2002-2004 #124621
OO7

This submission subclasses a folder via a com object I created. The COM object uses a callback to a function defined in a module , through an undocumented API which hooks into the event notification system of the shell. In this a case I created a small form to allow you to see it in action. Click Command1 To register the window for notification of events triggered in the C:\temp folder or any folder you want(just change the code), Then copy a file into the folder,or rename a file in the folder, or delete one- whatever. You will get a msgbox alerting your application window that an event has occurred. It also logs to the NT log or a textfile, and detects the current operating system (all via the windows API). I use this in place of timer based routines that just wait poll folder for the existence files. Like the SMTP Service.

2_2002-2004 #115049
CodeDawg Toolbar (100% Source Code Included)

CodeDawg Toolbar Assistant Introducing 'Guard Dawg'. This Add-In for VB 6.0 gives you the power of saving your precious code while running, or even while in debug mode. If that wasn't enough this incredible tool even saves your bookmarks and breakpoints. Never forget where you left off again!

2_2002-2004 #124622
HTML to VB color converter - A must have for web programmers!

I have a program I'm working on right now where the user settings for the app are done on a website. What I didn't realize was that with HTML colours being stored in RRGGBB format, you can't automatically use it in VB, because VB uses the &HBBGGRR format. Here's a little function to bring back the right colour.

2_2002-2004 #124623
Adv Connection Detection

This source code will allow you to detect if you are currently conencted to the Internet. Unlike other source code, this code also demonstrates how to return information about your connection (if any!). The program will detect if you are currently connect to the internet and also report any of the following information: 1) If you are connected via a modem or a LAN. 2) If you are connected via a proxy 3) If your modem is busy doing something that is not Internet related. This source code is very small and will come in very handy for anyone developing Internet applications. Please judge my entry as this is only my second entry.

2_2002-2004 #124624
Factoring

This program was written to factor quadratic equations. The user will put in the values for A, B, and C according to the format Ax²±Bx±C=0. After the user clicks the Figure button, the program will either tell them a way to factor it, or it will tell them to try to use the quadratic equation, which is another program. Say you want to factor 5x²-3x-14. In this program, all you have to do is type in 5 for A, -3 for B, and -14 for C. In the label below the command buttons, the program will print out (5X+7)(1X-2). If you foil that out, you will get the original equation. If you like this code, please vote for it.

2_2002-2004 #124625
Octa CarrierDetect (WarDailer)

dails phone numbers to detect a carrier, great for looking for tollfree internet dailup numbers or other computers that pick up the phone. Can also send files over connection.

2_2002-2004 #124626
Easy IP Resolver

This program will resolve a host name (ex. www.planet-source-code.com) to it's IP address. I've seen some code to do this here on PSC, but they all seems like a hassle so I made a way to do it quickly and easily. The only downfall to my version is that you have to be able to establish a connection with the host in order to get their IP, so it may not work for inactive domain names etc, but then why would you want their IP address anyhow? Enjoy, and leave feedback if you find this useful!

2_2002-2004 #124627
ActiveX Goodies

A few ActiveX controls for you usercontrol folder including 2 types of ToggleSwitch's, A Progressbar, L.E.D., Custom CheckBox, And an easy to use SystemTray control.

2_2002-2004 #124628
MiFFT

An oscilloscope and Audio Spectrum "Viewer" with an hyper piano to help interpret the output. I've been trying to understand the output of the Fast Fourier Transform for a proyect I'm working on in which I plan to use the dominant frequency to associate sound with color in an analogic way (low frequency colors with low frequency sounds, etc.) I made this example, based on Murphy McCauley's Deeth Spectrum Analyzer v1.0 changing only the portions of code that I needed for my purpouses. (By the way, someone uploaded the original program some months ago, changing only the name of the author). The program is oriented to help understand how digital audio is recorded and how you can use it for an aplication (your own CD or MP3 player) using the FFT. The program will graph only de peak frequency (the loudest) in each sample of 1024 (every 0.0232 sec.) drawing lines in the position given by that frequency, using some tricks to be able to represent 22,050 positions in a 512 width picturebox. Hope you like the result and find the code useful.

2_2002-2004 #124629
REAL Transparent Textbox

Makes a textbox transparent. Here's how I do it: Get the DC from the textbox hWnd. Paint the textbox text onto the textbox parent. Paint the parent's image onto the textbox. Pretty Simple eh?

2_2002-2004 #124630
Move control's at runtime!

Really great code for MOVING CONTROLS AT RUNTIME. This means that the client can customize the interface of your program at runtime. Really nice touch to your program. If you like it and think it is useful, vote for it, if not, email me at [email protected] and give me some constructive critisism! Thank you =) Armen Shimoon

2_2002-2004 #124631
Simple File Transfer

This is a simple file transfer using the winsock control. It can resume a download if canceled or disconnected. I have seen other file transfer code on planet source code, but I felt I needed to write one with resume.

2_2002-2004 #124632
Subforms in VB UPDATED

Subforms in VB UPDATED!!!! This OCX allows you to set any one form in your project as a parent form and display all other forms within the project as a subform within a client area of the parent form. A demo client project within a .vbg is included (run_this.vbg). Register the .ocx using regsvr32 first. Major news: User control with CAPTION User control MOVEABLE at runtime User control SIZEABLE at runtime Change the ATTACHED Window Style Event GetAttachedWindowStyle(ByRef NewStyle As Long) (you can set your own Attached Window Style) Event NewStyle(ByVal PropertyName As String, ByVal newValue As Boolean)

2_2002-2004 #124633
How to make Your Own MSN messenger in vb

Article explains you how you can make your own version of MSN messenger in VB.IF u find any dll files missing you can find it at http://www.venkydude.com/articles/msn.htm

2_2002-2004 #124634
True Multi-Threading

This project shows you how you can write multi-threaded components, in true VB style (i.e. Not using API). This code should ONLY be downloaded with those who have the _Enterprise_edition_ of Visual Basic, because I have used parts of Visual Basic unavailable to those who've got the standard editions. The multi-threaded example is a conversion of my A* code into a threaded DLL. _This_code_is_also_NOT_for_the_newbie - I'd say you need a good understanding of COM (and preferably threading) before you attempt to understand how this project actually works. Please follow the instructions in the ReadMe file to compile the right things in order. Good luck!

2_2002-2004 #124635
SysTrayText

display a text in the system tray (you know, next to the clock). has auto-scrolling for large texts. [update]found a little bug in the first code, its ok now[/update] for those who think its useless, i'm currently working on some usefull things to use it for (displaying system status etc)

2_2002-2004 #124636
Returning an ADO Recordset to Visual Basic/ASP using (Oracle PL/SQL Stored Procedure) REF CURSORS

This document explains how you can write Oracle stored procedures, that will return ADO recordsets to your VB or ASP application.

2_2002-2004 #124637
Move controls at runtime - new version 0.2

An update to my code on how to move controls at runtime. With version 0.2, the program saves all the settings to the registry, so that the next time a user opens the application, the settings will be restored. PLEASE VOTE IF YOU LIKE IT Armen Shimoon

Languages
Top Categories
Global Discovery