Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
VB VB (1648)
VB.net VB.net (736)
C# C# (15)
ASP.net ASP.net (779)
ASP ASP (41)
VC++ VC++ (25)
PHP PHP (0)
JAVA JAVA (4)
JScript JScript (5)
  Database
» SQL Server (708)
» ORACLE (5)
» MySQL (0)
» DB2 (0)
Automation
» C/C++/ASM (11)
» Microcontroller (1)
» Circuit Design (0)
OS/Networking
» Networking (5)
» Unix/Linux (1)
» WinNT/2k/2003 (8)
Graphics
» Flash (0)
» Maya (0)
» 3D max (0)
» Photoshop (0)
Links
» ASP.net (2)
» PC Interfacing (1)
» Networking (4)
» SQL Server (4)
» VB (23)
» VB.net (4)
» VC (3)
» HTML/CSS/JavaScript (10)
Tools
» Regular Expr Tester
» Free Tools

(Page 1 of 2) 41 Result(s) found 

 

CountCheckedNodes - Retrieving the number of checked nodes in a treeview
Total Hit (2761) «Code LangId=2» ' Return the number of checked nodes in the specified tree Public Function CountCheckedNodes(ByVal rootNode As TreeNode) As Integer Dim count As Integer = 0 ' count the root node, if checked If rootNode.Checked Then count = 1 ' check the child nodes, by recursiv ....Read More
Rating
Ensuring that a style is supported by a font family
Total Hit (2599) «Code LangId=2»' Not all fonts support the same styles. This function takes in ' input a font family and a font style, and returns a font style ' which is safe for that particular font family, by removing ' the styles that are not supported ' ' Example: ' GetSafeStyleForFontFamily(richTextB ....Read More
Rating
FindControl - Retrieving a reference to the control with the specified name
Total Hit (3083) «Code LangId=2»' Return a reference to the control with the specified name, ' searched into the specified container and its sub-controls ' Note: it requires the GetAllControls function ' ' Example: get a reference to a Label named "lblTest", and set its Text property ' DirectCast(FindControl ....Read More
Rating
GetAllControls - Retrieving all the controls inside a container and its sub-containers
Total Hit (2686) «Code LangId=2» ' Returns an array with all the controls in the specified container control and ' its child containers ' Example: ' ' print the name of all the controls on the form and its child container ' controls ' Dim ctl As Control ' For Each ctl In GetAllControls(Me) ' ....Read More
Rating
GetControlsByType - Retrieving an array of controls of the specified type
Total Hit (2550) «Code LangId=2» ' Returns an array of controls of the specified type, ' found within the specified parent control (or the form itself). ' Note: the search is optionally done recursively, by checking also controls' ' child controls ' Example: get an array with the form's textboxes ' Dim tex ....Read More
Rating
GetValidationSummary - Builds a validation summary for all the controls inside a container
Total Hit (2954) «Code LangId=2»' Return a validation summary string with all the error messages, if any, ' of the controls inside the specified container, ' associated to an ErrorProvider control ' ' Example: ' Dim summary As String = "" ' ' display the validation summary for all the controls on the ....Read More
Rating
InputBox - A .NET replacement for this VB6 function
Total Hit (3455) «Code LangId=2»' Create an InputBox like the one of VB6. You can define the dialog's title, ' question and default value. ' Example: MessageBox.Show(InputDialog.InputBox("Type your name:", "Test", ' "Marco")) Public Class InputDialog Inherits System.Windows.Forms.Form #Region " Windo ....Read More
Rating
Removing styles from the font of the selected text of a RichTextBox
Total Hit (2606)
Rating
ResetControls - Reset the value for the input array of controls
Total Hit (2751)
Rating
Setting the font size of the selected text of a RichTextBox
Total Hit (3195)
Rating
How to make a ComboBox do auto complete?
Total Hit (3007)
Rating
How to make a ComboBox do auto complete?
Total Hit (2888)
Rating
How to assign ItemData to combobox / listbox in VB.net
Total Hit (9839) There is no ItemData property in VB.net for ComboBox and ListBox but you can use another approach which will give you same functionality of ItemData. Use following code to test how you can assign ItemData. ItemData is generally used to store Id related to the Item of list. ....Read More
Rating
This is a link to a different site Creating Control Arrays in Visual Basic .NET and Visual C# .NET
Total Hit (1043) This paper shows how to create and manage control arrays with Visual Basic® .NET and Visual C#™ .NET.
Rating
This is a link to a different site Formatting the Windows Forms DataGrid Control in Visual Basic
Total Hit (1028) Quite a few basic tasks related to formatting the Windows Forms DataGrid control require you to create and implement your own custom column styles. However, once you are familiar with these objects, you will have a lot of power at your disposal.
Rating
This is a link to a different site Life Without Control Arrays in Visual Basic .NET
Total Hit (1142) Control arrays were the best way to manage the controls on your Visual Basic forms, but there are no control arrays in Visual Basic .NET. Deborah Kurata describes how to use new Visual Basic .NET features to obtain control array functionality without the need for a control array. ....Read More
Rating
This is a link to a different site .NET Button ListBar Control
Total Hit (2243) The Button ListBar control provides an emulation of the ListBar provided in the Windows Add/Remove Programs window. Under XP it uses the UxTheme API to draw parts of the toolbar, and degrades to use standard GDI drawing calls when used on earlier OS versions. Both C# and VB.NET versions of the same ....Read More
Rating
This is a link to a different site VS.NET ListBar Control
Total Hit (1190) This control uses the Outlook Style ListBar control as a basis for a full implementation of a Visual Studio-style List Bar which holds lists of controls. Bars and items can be dragged around the control, and items can be dragged, pressed or double-clicked to add the item to an object. For additional ....Read More
Rating
This is a link to a different site Skinned ListBar
Total Hit (1943) This article demonstrates overriding the drawing routines in the Outlook Style ListBar to create a new ListBar which inherits the behaviour of the original control but draws in a much customised way.
Rating
This is a link to a different site .NET Outlook Style ListBar Control
Total Hit (1800) The .NET ListBar control aims to provide the most accurate reproduction of the Microsoft Outlook bar control. All the features of the Outlook bar control are supported and more: in particular the control provides nicer drag-drop operation, has more display modes and provides an extensible object mod ....Read More
Rating
This is a link to a different site Cancellable In-Place Edit Popups
Total Hit (1632) Controls like the ListView and the Outlook ListBar allow you to edit items in place by either double-clicking them or through a context UI feature such as a menu. This article provides a class which helps with the tricky parts of implementing in-place editing, and demonstrates how to use it to creat ....Read More
Rating
This is a link to a different site Use .NET Forms as Popup Windows
Total Hit (2267) This article provides a reusable class which you can use to convert a form into a popup which works in the same way as the drop-down portion of a ListBox or the popup controls for picking colours or tables in Office. In addition to wrapping all the functionality you need to ensure the popup is cance ....Read More
Rating
This is a link to a different site Floating Controls, Tooltip-style
Total Hit (2356) This article started when I was implementing the VS.NET ListBar control. If you move the mouse over an item whose text is partially obscured in the VS.NET ListBar, a popup appears to show more of the text. The same technique is also implemented in the ListView and TreeView controls using a ToolTip. ....Read More
Rating
This is a link to a different site Font ComboBox
Total Hit (2497) This control adds a thin wrapper around the Icon ComboBox to convert it into an Office-style font picker control. Features include a most-recently used font section, initialisation on a background thread, auto-complete and built-in detection of non-character fonts like Wingdings (VB.NET and C# code ....Read More
Rating
This is a link to a different site Virtual ListBox
Total Hit (2154) Virtual List Boxes can be used if you ever need to try and show a list containing a vast quantity of data. Instead of adding physical objects to the ListBox, instead you tell it how many rows there should be, and it simply defers all drawing of items to the owner of the box using owner draw item met ....Read More
Rating
This is a link to a different site Adding an Icon or Control to a TextBox or ComboBox
Total Hit (2571) The standard .NET Framework ComboBox does not support an icon in the text box section of the control. This article presents a class which can be used to show an icon, a control or a custom-drawn image into any TextBox or ComboBox (VB.NET and C# code provided). ....Read More
Rating
This is a link to a different site Reusing The ComboBox DropDown
Total Hit (1044) Normally, the combo box drop-down portion only appears underneath the combo box part of a control. However, using an age-old Windows hack you can get at the handle of the drop-down List and move it to any position you like on screen. This article provides a reusable class for manipulating the drop-d ....Read More
Rating
This is a link to a different site Flat Style Combo Boxes
Total Hit (2100) This article provides a class which you can attach to any .NET ComboBox control to allow it to render with a VS.NET or Office XP flat style by subclassing the messages associated with the control (VB.NET and C# code provided).
Rating
This is a link to a different site vbAccelerator IconComboBox Control
Total Hit (1541) One of the more notable omissions from the set of .NET Framework Windows controls is a Combo Box which supports icons, despite a control of this type being used to good effect in Explorer and IE. This article provides a reusable control which extends the standard ComboBox to allow you to associate i ....Read More
Rating
This is a link to a different site Sophisticated Drag-Drop Images
Total Hit (2125) The standard .NET Framework drag-drop functionality provides a cursor to indicate that a drag-drop function is in progress. This article demonstrates how to add an image of the object being dragged to the drag-drop control, in the same way that Explorer does using the ImageList APIs. ....Read More
Rating


(Page 1 of 2) 41 Result(s) found  1 2

Recommanded Links

 

Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.