Advertisement

Results for "Category: Custom Controls/ Forms/ Menus"

C_Volume2 #72959
A Few Function's For You To Play With And Enhance.

A Few function's For You To Play With.. Trap Mouse In A Form, Random Object/Form Color's, A Wacked Screen Closing Special Effect, And Download File's Via The Internet..

C_Volume2 #72981
Scrolling Picture Control

The Control Will Take an Image And Scroll it Across It's Parents Background. There Are 8 Directions To Choose From, And All The BitBlt Styles Are Availiable. This Control Has Only Been Tested In VB6. It May Need Minor Modifications To Work On VB5, If This Is The Case Please Notify Others in the feedback section.

C_Volume2 #72985
Make Characters Talk! MS Agent

It will make a character of your choice(many to download) talk.

C_Volume2 #72997
Wipe a Banner transparently in a PictureBox

Wipes with SIN-Effects a Picture(BMP) transparentlx over a Background-Picture(BMP).Both Picture can be loaded at runtime. Based on different Source from Planet-Source-Code-Website.

C_Volume2 #72998
List Box Function Demonstration

Demonstrates basic fuctions such as Add, Remove & Clear; but also some advanced funtions that use API tricks to find the index value for a string (or partial string); change an item in the list without knowing the index value in advance; and display a tooltip containing the complete name for items too wide to fit in the visible box (and only those items! Even checks for the existence of a scrollbar on the listbox). The comments in Instructions.bas will walk you though all the functions, and the code is heavily commented for the novice.

C_Volume2 #73001
Draw fractal star

Draw fractal star recursively using the algorithm in the book by Robert Sedgewick 'Algorithms in C++'

C_Volume2 #73028
borderless form move and resize

simple commented example showing how to move and resize a borderless forms thru the use of labels

C_Volume2 #73078
ISCombo 2.1 Versión en Español

Esta es la versión en español de mi control ISCombo. Esta versión tiene toda la funcionalidad de la versión en Ingles (y mas?) y está mejor comentada. Apoyemos la presencia de la comunidad de habla hispana en Planet-source-code ;). si tienen dudas o sugerencias o quejas por favor escribanme y por favor . . .Voten! si quieren pueden votar aquí mismo, pero si pueden, les pido que lo hagan en la versión en Ingles, la dirección está en el programa de demostración (Ir a la página de PSC), podría poner la dirección aquí, pero eliminarían esta submisión :( por favor dejen comentarios. Fred.cpp

C_Volume2 #73141
Load Data To a Listview From Sequantial File

Load Data to a listview from a sequantial file

C_Volume2 #73157
SkinDemo - Updated!!

Updates and fixes 11/11/00:  I have updated the example a bit. I updated the move for (thanks to Joey Burgett). I fixed the code in the OpenSkin sub, now if the user is a first time user it will load the default skin! Because of a request i also made it so that the form can be in the Windows task bar!  I also updated the SkinBuilder, now you can make the exit and minimize buttons show or hide its captions and i added a new feature that allows you to preview the skin in a form so that you know what the skin will look like (this is why the skinbuilder source is now in the "skin" directory)  And i also made 4 new Skins (Some graphics are from SoftShape, view skin comments for more)!!   ============================ Hello VB'ers. This code allows you to custumize (skin) your project 100% (size, shape, etc) It also comes with a skin builder and 4 skins. It can save the last used skin, move the position of object and much more! Check it out, very easy to edit and understant, totally commented. please vote! Thanks Matt!!

C_Volume2 #73178
A multiple connection server control *UPDATED*

This ActiveX control makes it extremely easy to create server applications. It uses an array of Winsock controls to handle multiple connections. Start the server with one line of code! I included a sample project and a detailed explanation of all the events, properties, and methods, so you can see exactly how it is used (readme.rtf). Since PSC removes the OCX file from my zip, you can get it here: http://www.bouncefilterware.com/drew/ServerControl.ocx -- Your comments/questions/suggestions are welcome. UPDATE: I added a broadcast function. Although it's not the proper way to broadcast data, it works.

C_Volume2 #73184
Multi Font / Color Listbox

Visual Basic Listbox with highlight and scrollbar. It allows multiple fonts, and different backcolors and forcolors concurrently. This demo uses a mini database to populate the listbox.

C_Volume2 #73187
Great button control with 6 styles

This is a great button control if you want to build professional-looking applications. It provides 6 different styles, including a Cool (Rebar) style, flat, standard (3D) and 2 different Options styles. Allows for different pictures, colors and fonts in all 3 states -- normal, hover and selected. Has all the other properties of a standard button, so it is a great replacement. 12/21 -- added Cancel and Default properties. **Feedback is greatly appreciated**

C_Volume2 #73188
AutoText/Combo ActiveX Control

Autotext is an extended API implementation of Visual Basic's Combo Box. The control can be used as an autotype combobox or an autotype textbox. This code contains a proper implementation of an API timer class as well, using soft references to avoid GPFs. Allows custom context menus and allows the default context menus to be disabled. Raises a Menu_Click event which specifies which menu item was clicked. Has mouse down, mouse move and mouse up events. Code shows how to create a mouse hook. Switchboard code insures that the proper control recieves the right notifications. Has a SyncByItemData function to select an entry by an ItemData entry. Has a FillWithRecSet function to enable it to be filled directly with a recordset. You can specify the ordinal postion within the recordset that you want the drop-down list to be filled with. If you do not require the ItemData to be set, you must specify the optional default ordinal position of one to be zero. Implements an extended interface to make the control faster than the default implementation. eg. Dim eboName As IAutoText Set eboName = cboName.Object I have borrowed many snippets of code from this site an thought that it was my turn to share one of my gems with the people of Planet Source Code. This ActiveX is being used by many programs and has been thouroughly tested for flaws. My thanks to all the people who have contributed to Planet Source Code. PS. Vote if you want to.

C_Volume2 #73193
Custom Tab

Have Tabs without Microsoft big OCX. I think this is nearly finished. Try right clicking on the frame control to bring up a popup menu.

C_Volume2 #73202
File Upload Component for ASP Apps (includes demo)

Want anyone with a common web browser to be able to upload files to your ASP application? Here's a great little component to help you do it. This component builds on the standard mechanism web browsers provide for uploading files. Since IIS doesn't provide any simple built-in way to deal with this, this component fills the void. Here's how simple your ASP code can be:     Set Upload = Server.CreateObject("Carnicelli.FileUpload")     Upload.Save "C:\Temp"     Response.Write "<LI>" & Upload.Form("Email")     Response.Write "<LI>" & Upload.File(1).FileName I crammed a number of useful features for manipulating the resulting files, generating unique file names, and more. This code teaches many programming lessons. It demonstrates MIME processing, array and string manipulation (includes powerful array and string manipulation libraries), generating unique file names, real-time stream processing, interfacing with IIS' built-in objects (e.g., "Request" and "Session") without help from the ASP code, binary file manipulation, processing with a finite-state-machine model, MTX (Transaction Server) components, and more. Please comment on this code and vote for my hard work if you like this code. -------------------------------------------------- Now there's a commercial version of this product available. It's been rebuilt from the ground up, correcting all the issues you've reported here and including new features. And it comes complete with extensive documentation and good service. Check it out!

C_Volume2 #73225
Alternative progressbar

I came across an alternative progressbar. I thought it was a good idea, but it didn't use smooth 'scrolling'. I came up with this sub routine. I included an example.

C_Volume2 #73232
Pixel Manipulation

Ever wanted to make a cool shaped form....well....this code is for you. Just look at the screenshot. Oh and, don't feel obligated to vote!Thanx yall!(inspired by previous PSC entries.)

C_Volume2 #73234
Popup Menu with a file(Like mIRC)(MUST SEE)(UNLIMITED SUBMENUS NO DLL)

It is an example how to make a popup menu using a file (popup.ini) like mIRC. This code is fully commented. I'VE ADDED SUPPORT TO UNLIMITED SUBMENUS AND SUPPORT TO BACKGROUND. I'VE INCLUDED THE SOURCE OF SSUBTMR.DLL IN THIS PROJECT. SO IT ISN'T USING DLLS. THIS IS A GREAT CODE GUYS. PLEASE VOTE FOR ME IF YOU LIKE IT. AND LEAVE A FEEDBACK.

C_Volume2 #73253
REAL Windows XP Command Buttons!

Did you know that VB 5/6 applications will not render their controls with the new visual themes under Windows XP? Obviously, this is not good. This is the solution to this problem. This creates a REAL themed button under Windows XP by calling the Theme APIs, all wrapped up into an easy to use control. All you have to do is drop this control in your forms in place of the regular command button. Plus, as an added bonus, this control is completely backwards compatible! If the OS that your program is running on does not support Themes (or if they are disabled), this control simply displays the standard command button, without any extra work by you. This will give your applications a truely professional touch!

Languages
Top Categories
Global Discovery