Advertisement

Results for "Volume: 3_2004-2005"

3_2004-2005 #141589
[Aurora Borealis] Visual Color Converter

Converts any color to any format... Thanks to Dan Redding - Blue Knot Software for making the VBColor to RGB code. Please notice me if something is not working. I made this program becouse I was trying to make better GUI's, but none of the default VB Colors was good enough for me. So I used Photoshop to find the color I wanted and then needed something to convert it to VBColor. And since it was pretty simple to make, I made some other convertions as well. As I said earlier, the last one by Dan Redding - Blue Knot Software, was really good. Thanks.

3_2004-2005 #141590
Run and return a SQL Query from Excel, into an Excel Sheet

Define a connection in Excel, run a SQL query from excel and return the results into an Excel spreadsheet.

3_2004-2005 #141591
Line of Best Fit Demo

The line of best fit is the line that best fits a set of data that is more or less linear. There are a number of ways to calculate this but I'll use the method of sum of least squares. In this method, we find a line where the sum of the square of the distances from the line to each point is minimized. While that sounds complicated to do, the execution is actually quite simple. If you are interested in the derivation of the math, I found a website through GOOGLE that has the required formulas: http://people.hofstra.edu/faculty/S...regression.html For the line of best fit Y = M * X + B: M = (n *Sxy - Sx * Sy) / (n * Sx2 - Sx * Sx) B = (Sy - M * Sx) / n Where: n = number of points Sx = the SUM of all the X coordinates Sy = the SUM of all the Y coordinates Sxy = the SUM of all (x * y) Sx2 = the SUM of all (x * x) So to calculate the line of best fit, set up a bunch of variables like above. Then, everytime you get a new datapoint, update the variables and calculate a line using the equations. You can then check the coefficient of correlation using a formula found on the URL. In the Demo program, you simply click on the form to place data points. The program will then draw a line of best fit based on those data points. Double click on the form to clear it and start anew.

3_2004-2005 #141592
Access / Excel Comparer

Generic Utility to compare an Access Table with an Excel SpreadSheet. Neither Microsoft Access, nor Microsoft Excel needs to be installed to use this, since it uses ADO to compare the files. Multi session settings can be saved. This is a complete VB project. A precompiled Installation/Setup is available on my site, http://wolfwares.com

3_2004-2005 #141593
Multiple whiteboard /chat application

Best example to show multiple whiteboard service and multiple chat..the code are very short...very very short...and to the point...and it's easy...the best use of tcp/ip protocol....u can remotely do paint and display on other computers....nice example of multichat...plz vote..for me..otherwise i wont get enthu to submit my other projects..thx..

3_2004-2005 #141594
Winsock API server

This is a fully functioning server written without the use of the Winsock control. It uses API only. It can accept a theoretically unlimited number of clients and features an ICMP ping feature. This code uses my recently submitted Winsock API DLL. Download it here: http://www.pscode.com/vb/scripts/ShowCode.asp?txtCodeId=39858&lngWId=1 Your votes and comments are greatly appreciated ;)

3_2004-2005 #141595
text picture maker

+++++++++++++++++++++++++++++++++++ +++++###+++++++###+###########+++++ +++++####+++++###++############++++ ++++++###+++++###++###++++++###++++ ++++++###++++####++###++++++###++++ ++++++####+++###+++###########+++++ +++++++###+++###+++###########+++++ +++++++###++###++++###++++++####+++ ++++++++###+###++++###+++++++###+++ ++++++++#######++++###++++++####+++ +++++++++#####+++++############++++ +++++++++#####+++++###########+++++ +++++++++++++++++++++++++++++++++++ Do i need to say more.... make stuff like this for ur ftp server or readme files easily =) And with a simple click save them to an text file... plz vote and comment.... thx

3_2004-2005 #141596
Click On Any Menu

Click on any menu in any programs with this - Like you can click on Yahoo messenger menus and any other windows . you give the menu name to it and it will click on it . a must have for all

3_2004-2005 #141597
[_Create_EXE_Files_During_Runtime!!!!!]

This tutorial explains how to create executable files during runtime ! Visual Basic does NOT even have to be installed on the computer running your Application !!!! the bas file included in this project helps you to create exe files which include customized data! DURING RUNTIME! "What we do is coding an exe file that opens itself for read access during runtime." Reading the Tutorial won't last longer than 10 minutes and the method you learn can be very EFFECTIVE.

3_2004-2005 #141598
Shadow for controls

i saw many people creating shadow by adding a label control it dosent matter if you have min no of controls but when you have large no of controls So here is the code to create shadow without using any other controls Just paste this code ***Have Fun***

3_2004-2005 #141599
Get Computer Information

Read all Information of Your Computer.

3_2004-2005 #141600
Fully Functional Pop-up Killer (Updated) !

The update to the Complete Popup-Killer, it has a new option called "Stereotype Windows". This option Closes windows if they look like they might be popups, in Ex: no Min Button, no Max Button, no TitleBar ... it is an option, so you can turn it off if you want. You may also select which of the 3 you want it to look for. This is to prevent having to add each individual popup to the blacklist. It still has everything it had before, including the Quick Closing Speed, Sound on kill Option, Exact Title of Window Match or Keyword. It is now, i think, the Best Popup-Killer i've seen. Also, Thanks for your Help LaVolpe

3_2004-2005 #141601
DUN- Dial up networking

using advanced dial-up networking functionality in your projects.

3_2004-2005 #134510
Manage your code snippets AND generate an HTML bookmarked page with them! 2 Apps!

Two Applications in one submission! Manage your code tips, functions and subs in one app and the other will generate a web page from those code snippets with bookmarks. Just point a link from your site! couldn't be simpler! 150K code file supplied please comment if you find this useful

3_2004-2005 #141602
Generic Client and Server (Winsock API only, multiple instances, subclassing) _____ updated oct 21

New version with bug fixes and improvements can be found at: http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=44590&lngWId=1 With this it is easy to run multiple instances of a client or server. It is an API only winsock wrapper setup as an active X dll. There is also a sample application from where you can open multiple servers and clients which can communicate which each other. This code will also show you how to Subclass without a form. (actually the form is generated by code) Updated on Oct 21 : Cleaned up the code (variable names, removed unused code, added remarks) and fixed some minor bug's.

3_2004-2005 #141603
EASY CGI Counter

demonstrates an easy way to make a cgi program that counts independant page hits for any page you specify

3_2004-2005 #141604
VBLayers ActiveX Control

VBLayers is an ActiveX Control that will create a Layers Window, similar to that in Adobe Photoshop (see Screenshot). Features dragable layers, automatic scrolling, drag tracking and more. Very well commented and clean code. I welcome any feedback towards making this a better product, and appreciate any votes. (Note: Archive corrected to contain image references for project.)

3_2004-2005 #141605
ICQ SMS Activex Component (Updated 19th October 2002)

For all those developers who want to integrate the Mobile SMS feature in their applications can now do it using this ActiveX dll component in Visual Basic which can send your SMS messages through the ICQ Network from ASP / Visual Basic applications and that too for FREE :) I would be glad if you all please do give your valuable feedback and yes don't forget to vote for my code. Till then Happy SMS'ing.

3_2004-2005 #141606
Connector Line with Arrow

The connector line draws three lines between two controls(here label). The user can change the control type if they want to. The connector line change its position whenever a control is moved. It supports runtime control movement and line position.

3_2004-2005 #141607
lottery number selector

This program is a random number generator designed to help you pick new and different national lottery numbers. It was part of my college assignment to demonstrates the Random function and also the use If statements.

Languages
Top Categories
Global Discovery