Current Category: Examples Posted by Elisha in Examples on 06 9th, 2009 | 8 comments In visual basic. Net we can obtain infomración on equipment that runs your application. Obtain this information using the My.Computer namespace. Here are some examples: To know the screen resolution: MsgBox (My.Computer.Screen.Bounds.Width ... Posted by Elisha in Examples , Tutorials on 06 5th, 2009 | 8 comments Example very, very easy on the use of the dialog box to select colors in visual basic. Net. We just need a form, a button and a ColorDialog component for this example. and in the click event of BotCon copy the following code: If ColorDialog1.ShowDialog ... Posted by Elisha in Examples , Tutorials on 06 4th, 2009 | 15 comments I want to show on this occasion a very simple example of how one can read and load a text file in a TextBox with visual basic. Net. For example we need a form with two text boxes, button OpenFileDialog component n. As shown in the figure below: In the ... Posted by Elisha in controls , Examples , Tutorials on 05 19th, 2009 | 10 comments This is a simple, but very rarely seen, example of how we do in visual basic. Net to move (in code) items in a listview. Need a form with a listview and two buttons: Now, fill the listview with some data for the example and we will do in the event ... Posted by Elisha in Examples , Humor on 05 14th, 2009 | 12 comments If you want to learn programming, an advice I can give is do not look for things done, but they always try to make you, look for examples of how to use visual basic functionality. Net, but never look exactly what you need everything done because you will not find more ... Posted by Elisha in Examples , Tutorials on 05 13th, 2009 | 10 comments I want to show how we can make a report with grouped data in visual basic. Net. We build on this and the previous example. Our report looks like this: Select the row of data (middle) and clicking the right mouse button, we display the context menu ... Posted by Elisha in Examples , Tutorials on 05 13th, 2009 | 8 comments Based on the above example (how to create a report), I show how we can "format" that report for a more professional presentation using visual basic reporting services from. Net. Open the report on which will work, will be more or less like ... Posted by Elisha in controls , Examples on 05 1st, 2009 | 14 comments In visual basic. Net is very easy to assign the tab order for all controls can receive focus. Each control has a TabIndex property responsible for determining in which order the control will receive focus when switching from one control to another using the TAB key. This property ... Posted by Elisha in controls , Examples on 05 1st, 2009 | 37 comments I want to show several things with this example ... but the main one is how to add events to a group of controls at runtime in visual basic. Net. For example we need a form with many controls textBox's (no matter how they are called). You can do something similar ... Posted by Elisha in controls , Examples , Features on 04 28th, 2009 | 32 comments This time I want to show how to create a timer in visual basic. Net using the timer component. Well, do not pretend that this is a step by step example showing each of the modified properties of each control, on the contrary, I want to focus on functionality ...