Menu controls expose only one event, Click. As you expect, this event fires when the user clicks on the menu. You can manipulate menu items at run time through their Checked, Visible, and Enabled properties.
Added: 05/29/2009,
Hits: 597,
Rating: 0,
Votes: 0 Add To Favorites
| Add Rating
The information in this chapter provides a basic acquaintance of VB6 ActiveX control programming.
Added: 08/12/2008,
Hits: 714,
Rating: 0,
Votes: 0 Add To Favorites
| Add Rating
The first article in Peter’s Advanced Visual Basic series provides a detailed overview of using Visual Basic in conjunction with SQL Server through the use of ADO, and how ADO is implementing in a Visual Basic application.
Added: 05/06/2003,
Hits: 419,
Rating: 0,
Votes: 0 Add To Favorites
| Add Rating
The ADO (ActiveX Data Object) data control is the primary interface between a Visual Basic application and a database.
Added: 09/26/2008,
Hits: 448,
Rating: 0,
Votes: 0 Add To Favorites
| Add Rating
The seventh article in Peter’s Learn Visual Basic series outlines the concept of an array, providing examples of the purpose that arrays serve in a Visual Basic program.
Added: 05/06/2003,
Hits: 440,
Rating: 0,
Votes: 0 Add To Favorites
| Add Rating
An array is a consecutive group of memory locations that all have the same name and the same type. To refer to a particular location or element in the array, we specify the array name and the array element position number.
Added: 08/01/2008,
Hits: 1,185,
Rating: 0,
Votes: 0 Add To Favorites
| Add Rating
This tutorial is designed to teach you how to write useful programs in Visual Basic .NET as quickly and easily as possible.
Added: 07/27/2010,
Hits: 491,
Rating: 4,
Votes: 1 Add To Favorites
| Add Rating
Although binary files may at first seem rather primitive, reading and writing bytes one by one, they can be immensely useful, and make it relatively easy to create your own file formats. This tutorial shows you the ins and outs of Binary files, serialization (converting variables to binary) and deserialization (converting binary files to readable variables).
Added: 05/02/2002,
Hits: 475,
Rating: 0,
Votes: 0 Add To Favorites
| Add Rating
This tutorial takes you through the steps of creating a C++ dll and then calling it from VB.
Added: 05/02/2002,
Hits: 426,
Rating: 0,
Votes: 0 Add To Favorites
| Add Rating
Using CommandButton controls is trivial. In most cases, you just draw the control on the form's surface, set its Caption property to a suitable string (adding an & character to associate a hot key with the control if you so choose), and you're finished, at least with user-interface issues.
Added: 05/29/2009,
Hits: 404,
Rating: 0,
Votes: 0 Add To Favorites
| Add Rating
A control array is a group of controls that share the same name type and the same event procedures. Adding controls with control arrays uses fewer resources than adding multiple control of same type at design time.
Added: 08/01/2008,
Hits: 486,
Rating: 0,
Votes: 0 Add To Favorites
| Add Rating
Control Statements are used to control the flow of program's execution. Visual Basic supports control structures such as if... Then, if...Then ...Else, Select...Case, and Loop structures such as Do While...Loop, While...Wend, For...Next etc method
Added: 09/26/2008,
Hits: 335,
Rating: 0,
Votes: 0 Add To Favorites
| Add Rating
Create and configure a MenuStrip component on a Windows Form, inlcuding images, shortcut keys, checkable items, merging menus and more.
Added: 06/30/2007,
Hits: 361,
Rating: 0,
Votes: 0 Add To Favorites
| Add Rating
Besides the enhanced ASP features, an ASP file also contains normal HTML script. In the preceding listing example, note the beginning and ending <BODY> and <HTML> tags, as well as the HTML text with bold formatting (<B>…</B>) tags toward the beginning and end of the file.
Added: 10/25/2008,
Hits: 667,
Rating: 0,
Votes: 0 Add To Favorites
| Add Rating
Main objectives of this tutorial are display and manipulate data by using custom controls. Controls include ListView, ImageList, ToolBar, and StatusBar.
Added: 10/24/2008,
Hits: 366,
Rating: 0,
Votes: 0 Add To Favorites
| Add Rating
Create and use custom dialog boxes in Windows Forms Visual Basic applications.
Added: 06/13/2007,
Hits: 360,
Rating: 0,
Votes: 0 Add To Favorites
| Add Rating
Menus are a part of every good application and provide not only an easy way to navigate within an application but also useful tools for working with that application.
Added: 09/27/2010,
Hits: 192,
Rating: 0,
Votes: 0 Add To Favorites
| Add Rating
Visual Basic also supports pop-up menus, those context-sensitive menus that most commercial applications show when you right-click on an user interface object.
Added: 05/29/2009,
Hits: 365,
Rating: 0,
Votes: 0 Add To Favorites
| Add Rating
In this section, we’ll develop a simple application to demonstrate not only the design of the interface, but also the code behind the interface. We’ll build an application that allows the user to enter the name of his favorite programming language, and the application will evaluate the choice.
Added: 09/18/2011,
Hits: 63,
Rating: 0,
Votes: 0 Add To Favorites
| Add Rating
These events fire toward the end of a form's life. Their event procedures are therefore good places to put "cleanup" code.
Added: 10/25/2008,
Hits: 402,
Rating: 0,
Votes: 0 Add To Favorites
| Add Rating