Advertisement

Results for "Volume: 2002C"

2002C #8817
Associate file type and icon with your app

I made some improvements on the code I submitted way back on 12/20/1998 (WOW! today is 12/20/2001 - its been 3 years to the day! My, how time flys!) There has been about 11,000 downloads and a lot of comments on this code since then so I thought that an improvement should be posted. I've added a SHChangeNotify function to update the icon in Windows immediately. Original post: For those of you who want to add a touch of professionalism to your program, now you can create a file type in the Windows Registry database which will associate all files ending with your program's file extension (yourfile.xxx) to your program. You also specify an icon for your file type and a description. This example also shows you how to use Command$ to open these files in your program once the file is clicked or opened in Windows, and a quick tip on creating files in the Windows Recent file folder (Start > Documents). Email rgardner@rgsoftware.com if you need help. Good luck.

2002C #9422
Resize Picture to Fit Picturebox

A one-liner that resizes a picture to fit the dimensions of a picturebox. No API calls.

2002C #15293
Maris Browser Ver2.0

A MUST SEE FOR ALL OF YOU! This is a multi-featured Internet Explorer Loved by all. Don't Forget to vote me! It's features include Favourites, History, Status Bar, Juke Box, Search while online,and is very very customizable!

2002C #13934
Check for extended ASCII

Checks to make sure the contents of a TextBox or String are only standard ASCII; If it has any extended ASCII, the function will return False.

2002C #14180
Traver Jigsaw

Jigsaw program. Load in any JPEG, GIF, etc., as picture. Pieces can be set from 2 x 2 to 12 x 12. Show picture as "normal" size or optimized for screen. Other features: save a position, restore it, provide hidden help, report on progress, print out the picture.

2002C #15434
Complete HTML Editor

This is a straight html editor with many quick entry features and a level of colour coding for tags. The end result is a complete website ready to upload

2002C #9971
GurhanButton 221201 - Final

Custom Button with resizable images. Styles: Flat,OfficeXP,WindowsXP, NoBorder Properties:Transparency,URL,Bevel,LongCaption Wrap,MaskColor... and more

2002C #10045
Designer

A web page editor I've been working on for the past three years. It uses code from other PSC submissions and the main "contributors" are mentioned in the Credits.txt file. This program allows a user to write raw HTML code without the need to worry about correct coding, automatic tag insertion, Web site manager, code formatter, and all kinds of stuff that you'll have to see for yourself :-) This is the project source code, there are some OCX files needed and they are mentioned in the ReadMe file. If you need these OCXs, let me know and I'll send them to you. I will be uploading some of the submissions I got from PSC in a seperate upload so you can see what I used. DO NOT accuse me of stealing anyone's code! I gave credit to the original authors, and if you see any code that looks like yours, let me know what it is and I'll include your name in the credits file. There is still quite a bit of work to be done in this project, but I lost interest in it and uploading it here. have fun! *****Sorry, I forgot to add a few files to the zip...they're included now*****

2002C #9426
Simple Video Capture

A simple video capture program, in only 44 lines of code. Now includes a button to change video size, and a button to change video source. For a more complete implementation, go to Ray Mercer's site at www.shrinkwrapvb.com

2002C #15436
ADO Textbox Autocomplete Class

This code is an ADO modification to the previous post from Robert Row in December of 2000. This class adds AutoComplete functionality to a textbox. You start typing and the class searches for a record in an Access 2000 database that starts with the letters you typed, if it finds one, it completes the rest of the textbox with the record.

2002C #15375
Domain User Locator

The code may be useful for NT/W2K Administrators, or Help Desk personal. It will allow locate the workstation, user logged on to. Home server in user account properties (Connect... To..) must be specified, for the program to work. Once user logged on to domain, chances are good, that at list one resource is accessed on the home server. By enumerating sessions on the home server code retrieves workstation name the user logged on from.

2002C #11989
Sir Launchalot - Program Cycling in the Systray

This code demonstrates how to cycle programs in your systray for ease of launching, it provides a system tray icon which cycles/changes when right clicked, the associated program can then be launched when the user left clicks the tray icon.

2002C #14720
Manifest Creator - Have your programs use Themes under Windows XP

You can make your programs look like true Windows XP programs by adding files called "manifest" files to them. This program provides an easy way to make those files for all of your applications. It includes usage notes on limitations that the manifest files have on them. If you like the code, vote for me please!

2002C #14675
HyperLink Control

Add HyperLinks to your VB programs easily! Control Itself manages to open the target - any Program, Document, Web Address, Email Address.....are fully supported. Looks like a real web Hyperlink, uses appropriate mouse pointers, underlines or changes the font color on mouse hover. Provides like MouseHOVER, MouseLEAVE and RightClick. New programmers can learn many things....(1) How to open any document or URL in its default associated program....(2) How to give mouse hover events in VB controls, and many more. A very useful and handy control, please vote or comment it.

2002C #15273
VBIconMaker

This is a true ICON maker.I found it browsing around the world of V.B. .Anyways , i've tried out all of the icon utilities here on P.S.C.,found 1 that came close to being great but this,this 1 I have GOT to share with everyone!Supports true And has excellnt OutPut of the new Icon you create.While the code is not mine in anyway what-so-ever , I release it here to you on P.S.C. in it's entirety , untouched or altered in anyway and I suggest you do the same because it does'nt need any touch-ups! just enjoy/FREE to ME/FREE to you!This program is about a donkey hair away from being charged for(MY opinion)

2002C #14084
XP Manifest Creator v1.1 Beta 2

(Original concept by Hectorized). Advanced Manifest Creation can be done with this tool. It keeps track of every program 'manifestet', so the user easily can remove manifest it again. Shell integration makes it easy to create/remove manifests again :) . Program distribution is also included. Thanks to those who wrote some of the code i used. NOTE : Using manifests can slow down the target program!!!

2002C #15299
SQL Code Generator in VB

To generate SQL code. Beginners programmer use only a click to generate code. Select a query: Insert Into, Select, Update, Delete, Alter Field, Add Field, Drop a Field. Include DLL (AddIn) to VB6. UPDATED: More Querys (Create Index, Top, Max,...) and a Add-In DLL.

2002C #9421
One-liner - determine whether a string is alphanumeric

This one-line function returns whether or not a string consists of only the characters A-Z, a-z, and 0-9.

2002C #13721
Change Form Styles at Runtime

This sub-procedure will allow the developer to fairly easily switch between a form's border styles during runtime. Normally this isn't really possible because several of the attributes are read-only at runtime. This code overcomes those limitations. I have only tested this with VB6, but since it is basically just API calls it should be able to work with any version that supports API calls. Thanks to Fred_CPP for the tip on using SWP_FRAMECHANGED instead of resizing the form.

2002C #9939
Wrap pic around itself

Original idea about pic deforming

Languages
Top Categories
Global Discovery