Results for "Category: Custom Controls/ Forms/ Menus"
This proggy will set the text in your label box on fire! =)
The purpose of this extremely small code is to take a form within your application and keep it on top of all the forms within your application. (Modal Forms) Note however that when you use this code, it will make all other forms in your application inaccessible until that form is closed. This is great for times when you have a form like starting a new game, or a form that tells about your program that you want to stay on top and "stop" your program until it is closed.
The purpose of this code is to expand on what Ian Ippolito stated in an early post with the same code. I noticed that his same code did not state all the versions that can take advantage of this code. This code will center a form on the screen, not taking into consideration the taskbar. Yes, there are other ways of achieving this, api being one of them, but who wouldn't rather have a smaller, simpler code?
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..
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.
It will make a character of your choice(many to download) talk.
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.
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.
Draw fractal star recursively using the algorithm in the book by Robert Sedgewick 'Algorithms in C++'
simple commented example showing how to move and resize a borderless forms thru the use of labels
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
Load Data to a listview from a sequantial file
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!!
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.
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.
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**
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.
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.
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!
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.