Results for "Category: Custom Controls/ Forms/ Menus"
Convert your ordanary VB form into resizable vista form.You have been looking for this for a long time. Very fast yet very easy to use.
Yes People.... This solves most of your form resizing needs. With this small yet robust control added to your form,all the fellow controls are resized/positioned according to their initial position/size. :) feel free to use it without leaving any credit :) Regardz, Ali Ashraf :) n yea, plz leave a comment :) appreciate that :)
By this code it is possible to customize your VB Menu.Customize options are Custom Font,Fore color,Back color,Menu mode as XP & VB Look.Capable to add picture to the menu background.Also possible to add Icon.Please see the screen shot.If you like it then Please vote me.I am from Bangladesh
Create real docking toolbars in your Visual Basic applications. Just the way they are in professional applications. This code has been converted from Microsoft Foundation Classes (MFC) for Visual C++ 6.0.
A Transparent Picturebox Ocx that solves the problem to use the Halftone stretch mode with an alpha maskcolor picture, think this Ocx is useful for game programing, graphics programing and others, Please Vote !!!
Custom Calendar Control Ver 1.0 Calendar is generated using the algorithm used in my previous Calendar submission Features - You can customize many of the properties according to your requirement like background colors, foreground colors, fonts - You can hide or display the gridlines - You can set the first day to be displayed on Calendar heading - You can resize the Calendar I hope u will like it Please don't forget to vote my submission if u really like
ANSkin is a ActiveX control to Skinning your VB Form easily and practice.. You only just load a ANSkin into your form and run it.. A..Ha.... Your form now skinned automatically... ANSkin feature include System Menu, but i do not add a control button on it Please try it and make your Application nice and beautifull....... Dont forget to vote me and give your feedback for future reference for me to developed this activex Sorry for my English.........:~)
How to use ocx-files without no error on other computers , which don't have the ocx
A set of useful progressbars with the vista style. * Crystal effect which moves thru the progress bar * Green & Red colored progress bar * Calculting progress bar * Two sizes My special thanks goes to people who build the stuff earlier Keywords: vista progressbar aero big crystal controls manifest style Prog animate large small calculating keith wickramasekara progress
This progress bar has the vista style. Works fine coz I used it to one of my projects Features: * Moves with animaton * Vista style * Both Green & Red colors supported My special thanks goes to people who build the stuff earlier Keywords: vista progressbar aero crystal controls keith wickramasekara style Prog animate progress
Study of why vb6 applications with xp theme enabled sometimes crashes when closed. I have included an example of an application that crashed and two examples to show how to prevent it from crashing. Conclusions: It seems to be related to XP Theme not being closed correctly when an internal vb6 UserControl is placed on the main form. A simple way to fix this is to ensure it gets cleaned up either by placing an imagelist or a commond dlg control on the form. Unzip the download and compile each of the 3 examples and study the source. I have tried to keep it as simple as possible. Votes appreciated :)
I made this composite control to mimic the Media player 10 because i wanted to have the same look no matter what mediaplayer version 9,10,11 installed on the machine and at the same time i did not want the FF and REV controls and position Slider. The control is using Charles P.V's ucSlider and a modified version of the Simple ActiveButton by Gene Martynov. Graphical resources included. /Dracull
Learn how to use the cCommonDlg class to open and save via common dialogs 32 starting in Thumbnail view mode and page setup and printing to scale. There are many different examples of doing custom open dialogs with preview for images but the thumbnail view quite fast and will allow you to browse the entire folder. This project contains an update to Steve's all in one class but with support of 2000 / XP / Vista. I have added ability to set initial view for Open and Save for example to show thumbnails. Also added methods to get papersize: GetPaperMeasure, GetPaperSizeX, and GetPaperSizeY Based on work by Steve McMahon and Bruce McKinney and VBnet, Randy Birch. Example based on : Clint LaFevers "vb Calendar Maker". This was made for DracullCalendar - a Showcase Application that allow you to create and print Monthly Calendars, but I cleaned out the calendar functionality to make it simpler to follow the Common Dialogs examples. You can find Clints original submission here: http://www.Planet-Source-Code.com/vb/scripts/ShowCode.asp?txtCodeId=42227&lngWId=1 Comments and Votes appreciated :)
v1.0.0 (BETA!!) A UserControl that downloads files > 4GB via HTTP/FTP. Support for redirects (and MaxRedirects property), custom UserAgent, etc. This is not supposed to be a complete implementation of the HTTP or FTP protocols! However, just enough to make it work reliably (I hope!). If you have any bugs please let me know and I will fix them. Next version I will try to support Transfer-Encoding: chunked for some HTML files. Official thread can be found here: http://www.vbforums.com/showthread.php?goto=newpost&t=514329
removes the need for mscomctl just for a progressbar + it shows how to work out percentages form a number (great for working with winsock) none of the code ive seen was any good so i made my own its not great code but it works
This Control, will put a Outlook 2007 Navigation Pane to your application.
Visual Studio 2005 Style ToolBox
Must SEE!!! This project includes VistaAeroForm, VistaBasicForm, and other controls with Vista visual style. PLEASE NOTE THAT THIS PROJECT ISN'T COMPLETED YET. Comments and suggestions are welcome.
Are you sick of the webbrowser control and all its bugs and problems? Especially since the change from IE6 to IE7. Seems like microsoft goes out of its way to make programming difficult. Well this control called the IE controler is a solution that I came up with that works and works great!! With this control you can create a hidden or visible instance of IE and set it (the visible one) as a child of any control on your form like a picturebox. With this control you have easy access to all of the webbrowsers built in functions and properties as well as the underlying document. With one line of code you can have access and control to all the documents elements such as its links, images, forms, tables, table cells, etc. The possibilites will excite you. Here are some of the routines and what they can do for you. Functions/subs LinkByText: returns a link in the document whose text matches desired value Go: makes the browser go back, forward, home, or search return_links: returns, in event, all the anchor objects in the document return_tables: returns, in event, all the table objects in the document return_forms: returns, in event, all the form objects in the document return_images: returns, in event, all the image objects in the document return_tablerows: returns, in event, all the tr objects in the document return_tabledowns: returns, in event, all the td objects in the document CreateHiddenDocument: creates a hidden webpage from the url passed to it, from which you can extract and manipulate all of the objects and elements on it. WriteHtmlToDoc: allows you to insert your own html within the browser createIE: creates a visible instance of ie and navigates to the url you specify. You have the option of removing its titlebar, make it unresizable, make it the child of any control on your form which has the visible effect of embedding the ie browser seemlessly into your application. bShowContextMenu: Allow or disallow the right click context menu Events Event IEDocReady(odoc As HTMLDocument) Event IEdocState(state As String) Event HiddenDocReady(odoc As HTMLDocument, surl As String) Event HiddenDocState(state As String) Event HiddenDocTimeout(lelapsed As Long) Event IEDownloadStart() Event IEDownloadDone() Event returnedLinks(olink As HTMLAnchorElement, cnt As Integer) Event returnedImages(oimage As HTMLImg, cnt As Integer) Event returnedForms(oform As HTMLFormElement, cnt As Integer) Event returnedTables(otable As HTMLTable, cnt As Integer) Event returnedTableRows(oTr As HTMLTableRow, cnt As Integer) Event returnedTableDowns(oTd As HTMLTableCell, cnt As Integer) Event contextMenu() Event mousedown(ibutton As Integer) Event closing() Event IEcreated() Event processingDone(sFunctionName As String) Event Error(sProcName As String, iErrNum As Long, sErrDescr As String) Event NewWindow()
To customize your own skin onto your form, maximize the form, as well as set optional transparency.