Advertisement

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

ASP_Volume2 #28802
Data Provider ActiveX User Control

Data Provider ActiveX User Control This Control is Data Provider Control Providing Simple Binding with the User Control; this is the best example of Data Binding User Control, and best for beginners of ActiveX Control Designer. Go through the Code and Learn it … Do not forget to Vote me and also keep rating my Award Wining Code which is at 2nd in Hall of Fame.

ASP_Volume2 #28818
AGENT SIMPLE

Microsoft Agent Simple like in Microsoft Office!

ASP_Volume2 #28821
Custom Splash Screen

Custom form is meant to be saved to the Templates folder with a distinctive name for easy reuse. Add an image to the form and a custom shaped region is created. There are options that will let the form fade when showing and/or closing.

ASP_Volume2 #28835
Dr. Fire Transparent Control

With this control, all you need to do is drop it on your form, and then ANYTHING on your form that is pruple will become transparent. This would be a useful tool for created custom shaped forms. On the example form provided, I have set a command button, label, frame control, text box, and shape control to purple, so they become transparent, incase you somehow got confused on how to use this.

ASP_Volume2 #28853
MsWord in a Box - msWord.ocx (Alpha Version)

I always wanted to 'imprison' microsoft word and this is the execution of the sentense. I wanted word to reside inside an activex control and not run by itself. I also wanted full control of it and also use it as a report generator. Of cource you must have microsoft word 2000+ on your computer (Sorry for that, but we are going to IMPRISON it so feel a bit better). I have only tested this with word 2003 and I would like your feedback. First loading can be slow (Microsoft!!). This is the VERY first version (pre-alpha) and any comments will be highly appreciated. Forgive my dirty programming demo program but this is the work of a single day and I put effort on the control and not the demo. The concept is for word to live inside the Webbrowser control. You can create named bookmarks and replace them with values at runtime. This is the backbone for custom reports (or templates like reminding letters etc). You can insert pictures, files etc at will anywhere. You can toggle various things on-off. You can print, load and save documents in various formats (see code for 'Save File'). Click on the 'Load Test file' to test the predefined bookmarks. Also there is a technique to load files from the resource file (see code in the control). Well I hope that somebody out there wanted something like this. I wil keep on improving it as I need it in one of my projects (Radiologist reports with IC10 codes etc) but thought that I get some feedback from you while at it. If you care to vote then please leave a message as some sort of feedback that will help me in this project. Have fun and enjoy VB = Very Beautyful :)

ASP_Volume2 #28854
ListGrid control (update) a cross between a listbox and a listview controls that >>>>>

This is my ListGrid control..so called because it basically merges the functionality of a listbox with a listgrid control. Some of its appealing features are (1) with a short, simple call you can get or set the text of a specified "cell" in the list (2) you create attractive header (2 possible styles) with as many columns as you wish. (3) clicking any of the columns headers cause the list to be sorted in ascending or descending order (alphabetically) just like in outlook or kazaa (4) There is a property call .highest_index which makes for slightly easier looping...for example with the listbox or any of ms controls..there is a property such as the listcount so if you want to loop through the list you go> for i = 0 to list1.listcount -1 the .highest_index property already takes that into account so now you just loop by>> for i = 0 to listGrid1.highest_index. The listcount is still available to you as well if you prefer that, (5) your can set the font/forecolor/backcolor, individually for both the header and the list itself. If you prefer the lightweightness (not a real word i dont think) of the listbox, and used the settabs api to try to increase the functionality of the listbox but felt like you wish you could take the improvements many steps further than that then you will love this control. Suggestions for improvement will be implemented so suggest away.

ASP_Volume2 #28856
Line 3D replacement for the line control

a replacement for the standard line control. creates a line that looks more like the line that makes up the edge of the frame control (screenshot) there are 3 types, (single,double, triple) and 2 different types (embossed, raised). Not a huge or fancy control but will save you about 4 or 5 lines of code, without having to think too hard. with there control there is no coding whatsoever..like the standard line control..just drop and position and your done

ASP_Volume2 #28864
Compass Control

Custom Compass control, will show direction or degrees. Private Sub Text1_Change() 'some basic error checking If Val(Text1.Text) > 359 Then Text1.Text = (Val(Text1.Text) - 360) End If 'call the control Compass.Value = Text1.Text End Sub Easy example of using sin in graphics applications.

ASP_Volume2 #28872
ucCaptionButton 1.0.3

New release. Hope now working correctly on W9x, too. // Added 'Enabled', 'Bitmap' and 'MaskColor' R/W properties for caption buttons. Fixed centering of bitmap. // 15Kb.

ASP_Volume2 #28897
WWWebFast :::: This is two submissions in one..A web class that is super fast and exposes all of the

This is a webclass that makes it super easy for you to access the document object, the document.body object, all of the links, image, input elements, and table cells for a web page. And because there is no visible interface (directly anyway)..the pages load super super fast...the second part of this submission is a quick and dirty way to provide your applications with multiline tool tips. Please vote because my Im not strong enouph to pick my head up off the sand and put it back on my body but if i get a lot of good votes that will inspire me a little

ASP_Volume2 #28936
[FA] Draggable ToolWindow

This is a draggable toolwindow inside another window. Normally windows can only be inside an MDI form, but this is a great control which looks and acts like a real window. Completely customizable!!! If you plan to place many toolwindows inside a form, try duplicating the source files and adding each toolwindow as a separate toolwindow so you can customize them according to your needs. [ See another demonstration of this control in my other project: City Builder (txtCodeId=57486&lngWId=1)]

ASP_Volume2 #28952
Virtual OwnerDraw API Treeview

Today VB6 has become the most widespread dead (programming) language. In celebration here's the only(AFAIK) ownerdrawn treeview published in VB.

ASP_Volume2 #28965
FYI: Alt+Tab Icon Updating

How do you change the icon that appears in the Alt+Tab window? This is nothing new can be found on MSDN. The notes I added here are of interest. More info for skinning forms. Changing a form's icon doesn't affect the Alt+Tab window; you need to change the icon in an upper level, hidden window. Code below shows how. Notes to keep in mind.... The icon does NOT have to be one assigned to a form! If not, the only thing to remember is to cache that icon handle and don't destroy it until your application closes or you reassign using the same code below. Should you not cache the icon, and it is destroyed, the Alt+Tab will show a "blank/invisible" icon instead.

ASP_Volume2 #28970
ToolTip Balloon windowless (no hwnd)

This code set a balloon tool tip with the standard windows API on every type of control with or without window handle (no hwnd or windowless) Please vote if you like it Adapt this code for your needs

ASP_Volume2 #28973
VSNet Property Tree (Alpha)

A Fully Ownerdrawn Implemetation Of A VSNet Style Property Tree (Supporting Nested Levels). Supports: Picture Object,Common Dialogs (Open,Browse etc), Font Object, Custom Lists,Spin Button, Nested Levels blah blah blah.... There Is No Calander Support As Yet But You Can Format Each Property Item and Validate It Before Updateing. Caveats: No For Each Suuport And No Delete On Property Items But you Can Clear and Reload. List Only Need To Be Created Once and And As Many Property Item(s) you Like Can Be Pointed To It. I'm Not Going To Bore You With Anymore Details, Check The Screen Shot And download The Code. A Big Thanks Goes To Paul Caton For the Hook Code, Vlad Vissoultchev For The Drawing Code, Fred Cpp For The isButton And Carles PV For His Coolist. Notes Before Use: You Must Copy The WinsubHook2.tlb To Your System Folder. As Always Comments and Constructive Critism Is Always Welcome. The Sample Included Is A Basic Sample But I Will Update When I have More Time. Note: This Has Only Been Tested On XP Pro And Home SP2 I Would Like To Know If It Works On Other Os's Kind Regards Gary

ASP_Volume2 #28974
Button Shaper Change your simple command buttons

A great button changer example which can change the shape of a simple command button. just set the command button style property to graphical and see the difference.

ASP_Volume2 #28979
Effective Closing of Form

Closes your form in an interesting ways. Which is most useful in your applications

ASP_Volume2 #28998
FYI: Transparent Container

Asked how I might make a transparent frame or picture box? After a moment of wondering why, I realized that was a neat idea & one solution provided; there are more but this doesn't use custom controls. Would give credit to the person for the idea, but when he commented it was by a "No-Namer". Idea isn't mine; just the routines.

ASP_Volume2 #29004
CSharedMemory

Share memory between processes. Write a port daemon to continually read data and make it available via shared memory to any number of running applications. Easy To Use: Dim S as new CSharedMemory : S.sharedMemory "BlockName",1000 : S.memory="Shared Data" : Print S.memory

ASP_Volume2 #29005
Thinker (Waiting Bar) Control

This is a control used to display that your program is doing something, such as checking the internet for updates or checking for previously installed applications. Sort of a "please wait while" control. Basicly fully customizeable. Many options. Rate it if you like it.

Languages
Top Categories
Global Discovery