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 62 of 133) 3985 Result(s) found 

 

GetAllControls - Retrieving all the controls inside a container and its sub-containers
Total Hit (2692) «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 (2553) «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 (2962) «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 (3467) «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
InsertImageIntoRtb - Inserting an image into a RichTextBox
Total Hit (4855) «Code LangId=2» ' Insert an image into a RichTextBox, in the current position ' ' This version takes in input the target RichTextBox and the path of the image ' to insert ' Example: InsertImageIntoRtb(RichTextBox1, "C:\test.jpg") Sub InsertImageIntoRtb(ByVal rtb As RichTextBox, ByVal imgPat ....Read More
Rating
Pasting the text in the Clipboard into a RichTextBox
Total Hit (3469) «Code LangId=2»' Paste the text currently in the Clipboard into the specified RichTextBox ' Example: PasteIntoRichTextBox (richTextBox1) Public Sub PasteIntoRichTextBox(ByVal rtb As RichTextBox) ' get the data currently in the Clipboard Dim data As IDataObject = Clipboard.GetDataObject ....Read More
Rating
Removing styles from the font of the selected text of a RichTextBox
Total Hit (2609)
Rating
ResetControls - Reset the value for the input array of controls
Total Hit (2755)
Rating
Setting the font family of the selected text of a RichTextBox
Total Hit (2302)
Rating
Setting the font size of the selected text of a RichTextBox
Total Hit (3207)
Rating
A command-line Object Browser that uses Reflection
Total Hit (3326)
Rating
AddRemoveEventHandler - Add or remove an event handler through reflection
Total Hit (2310)
Rating
CloneObject - cloning an object by serializing it to a memory stream
Total Hit (2546)
Rating
FilterByName - filtering by name the results of Type.FindMembers
Total Hit (2854)
Rating
ImplodeForm - Hiding a form with an implosion effect
Total Hit (2829) «Code LangId=2»' Hiding a form with an implosion effect. ' the numSteps parameter is the number of steps to decrease the form size from ' the current size to 0 ' the stepDuration argument is the number of milliseconds between each step ' Example: ' Private Sub Form1_Closing(...) Handles My ....Read More
Rating
MoveListboxItem - Moving an item of a listbox to another index
Total Hit (2564) «Code LangId=2» ' Moves an item of a listbox to another index ' If FROMINDEX = -1 then it moves the current highlighted item ' ' Example: ' ' move up the selected item ' MoveListboxItem(ListBox1, -1, ListBox1.SelectedIndex - 1) ' ' move down the selected item ' MoveListboxItem(ListB ....Read More
Rating
Adding styles to the font of the selected text of a RichTextBox
Total Hit (2100) «Code LangId=2»' Add a style to the selection of a RichTextBox, ' without deleting the current styles that may be already ' present in the selection or in portions of it ' ' Example: AddFontStyle(richTextBox1, FontStyle.Bold) Public Sub AddFontStyle(ByVal rtb As RichTextBox, _ ByVal styl ....Read More
Rating
Copying the selected text of a RichTextBox text into the Clipboard
Total Hit (3491) «Code LangId=2»' Copy the RichTextBox's selected text into the Clipboard ' Example: CopyFromRichTextBox (richTextBox1) Public Sub CopyFromRichTextBox(ByVal rtb As RichTextBox, _ Optional ByVal availableAfterEnd As Boolean = False) Dim data As New DataObject() ' get the selected ....Read More
Rating
CountCheckedNodes - Retrieving the number of checked nodes in a treeview
Total Hit (1823) «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
EnsureNodeIsVisible - Select a TreeView node and ensure it is visible
Total Hit (1935) «Code LangId=2» ' select a treevide node and ensure it is visible ' by expanding all its parent nodes and bringing the node ' in the visible portion of the control Sub EnsureNodeIsVisible(ByVal node As TreeNode) Dim tvw As TreeView = node.TreeView tvw.SelectedNode = node ' expan ....Read More
Rating
CountCheckedNodes - Retrieving the number of checked nodes in a treeview
Total Hit (2768) «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 (2604) «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 (3088) «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
Creating owner drawn menu items to simulate a color picker
Total Hit (3637) «Code LangId=2»' This class does the owner drawing of a MenuItem to draw a color box. ' The class inherits from MenuItem, thus the ColorMenuItem objects ' can be added to a parent MenuItem or a context menu as you ' normally do, and can also be mixed with other MenuItem items ' under the same ....Read More
Rating
ExplodeForm - Showing a form with an explosion effect
Total Hit (3985) «Code LangId=2» ' Show a form with an explosion effect. ' the numSteps parameter is the number of steps to increase the form size from ' 0 to the original size ' the stepDuration argument is the number of milliseconds between each step ' Example: ' Private Sub Form1_Activated(...) Handles ....Read More
Rating
ForceTextBoxNumeric - Force a TextBox control to accept only numeric digits
Total Hit (3931) «Code LangId=2» <System.Runtime.InteropServices.DllImport("user32")> Shared Function _ GetWindowLong(ByVal hWnd As Integer, ByVal nIndex As Integer) As Integer End Function <System.Runtime.InteropServices.DllImport("user32")> Shared Function _ SetWindowLong(ByVal hWnd As Integer, ByVa ....Read More
Rating
GetNodeNestingLevel - Returns the nesting level of a TreeView's Node object
Total Hit (1892) «Code LangId=2» ' Returns the nesting level of a TreeView's Node object ' (returns zero for root nodes) Function GetNodeNestingLevel(ByVal node As TreeNode) As Integer Do Until (node.Parent Is Nothing) GetNodeNestingLevel += 1 node = node.Parent Loop End Function ....Read More
Rating
SearchFileInDirTree - Searches a file on a directory tree
Total Hit (2862) «Code LangId=2» <System.Runtime.InteropServices.DllImport("imagehlp.dll")> Shared Function _ SearchTreeForFile(ByVal rootPath As String, ByVal inputPathName As String, _ ByVal outputPathBuffer As System.Text.StringBuilder) As Boolean End Function ' Returns the complete path+name of th ....Read More
Rating
SearchFileOnPath - Searching a file on the system
Total Hit (2704) «Code LangId=2»<System.Runtime.InteropServices.DllImport("kernel32")> Shared Function _ SearchPath(ByVal tartPath As String, ByVal fileName As String, _ ByVal extension As String, ByVal bufferLength As Integer, _ ByVal buffer As System.Text.StringBuilder, ByVal filePart As String) As ....Read More
Rating
GotoPreviousWindow - A macro to jump to the previously selected window
Total Hit (2688) «Code LangId=2»' This macro routine makes VS.NET switch to the previously selected code editor ' / designer window, if it is still open. It is equal to opening the Windows ' menu and selecting the 2nd window. ' Note: put this routine in the MyMacro project, by using the Macro Explorer. ' To u ....Read More
Rating


(Page 62 of 133) 3985 Result(s) found  ... 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 ...

Recommanded Links

 

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

© 2008 BinaryWorld LLC. All rights reserved.