answersLogoWhite

0


Best Answer

Tha Visual Basic IDE is made up of a number of Elements

  • Menu Bar
  • Tool Bar
  • Project Explorer
  • Properties window
  • Form Layout Window
  • Toolbox
  • Form Designer
  • Object Browser.
User Avatar

Wiki User

11y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

11y ago

The basic controls in Visual Basic (usable without adding references) are different depending on which version of Visual Basic you are using, but the most common controls are:

  • Command button
  • Checkbox
  • Radio (select button)
  • Label
  • Textbox
  • Combo box
This answer is:
User Avatar

User Avatar

Wiki User

13y ago

Visual Basic 2005, 2008, and 2010 use the following types:

  • Boolean
  • Byte
  • Char
  • Date
  • Decimal
  • Double
  • Integer
  • Long
  • Object
  • SByte
  • Short
  • Single
  • String
  • UInteger
  • ULong
  • User-Defined
  • UShort

Boolean holds values that can be only True or False.

Byte holds unsigned 8-bit integers ranging in value from 0 through 255.

Char holds unsigned 16-bit code points ranging in value from 0 through 65535.

Date holds 64-bit values that represent dates ranging from January 1 of the year 0001 through December 31 of the year 9999, and times from 12:00:00 AM through 11:59:59.9999999 PM.

Decimal holds signed 128-bit values representing 96-bit integer numbers scaled by a variable power of 10. The scaling factor specifies the number of digits to the right of the decimal point; it ranges from 0 through 28.

Double holds signed 64-bit double-precision floating-point numbers ranging in value from -1.79769313486231570E+308 through -4.94065645841246544E-324 for negative values and from 4.94065645841246544E-324 through 1.79769313486231570E+308 for positive values.

Integer holds signed 32-bit integers ranging in value from -2,147,483,648 through 2,147,483,647.

Long holds signed 64-bit integers ranging in value from -9,223,372,036,854,775,808 through 9,223,372,036,854,775,807 (9.2...E+18).

Object holds 32-bit addresses that refer to objects. You can assign any reference type (string, array, class, or interface) to an Object variable. An Object variable can also refer to data of any value type (numeric, Boolean, Char, Date, structure, or enumeration).

SByte holds signed 8-bit integers ranging in value from -128 through 127.

Short holds signed 16-bit integers ranging in value from -32,768 through 32,767.

Single holds signed 32-bit single-precision floating-point numbers ranging in value from -3.4028235E+38 through -1.401298E-45 for negative values and from 1.401298E-45 through 3.4028235E+38 for positive values.

String holds sequences of unsigned 16-bit (2-byte) code points ranging in value from 0 through 65535. The first 128 code points (0-127) of Unicode correspond to the letters and symbols on a standard U.S. keyboard.

UInteger holds unsigned 32-bit integers ranging in value from 0 through 4,294,967,295.

ULong holds unsigned 64-bit integers ranging in value from 0 through 18,446,744,073,709,551,615.

User-Defined holds data in a format you define. The Structure statement defines the format.

UShort holds unsigned 16-bit integers ranging in value from 0 through 65,535.

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

1. toolbox of controls

2. menu bar

3. toolbar

4. project explorer

5. properties sheet

6. form designer

7. object explorer

This answer is:
User Avatar

User Avatar

Wiki User

9y ago

Some tools in Virtual Basic include drag and drop techniques with a unique control set. Some of these controls are text boxes and buttons, added for precision.

This answer is:
User Avatar

User Avatar

Wiki User

10y ago

A basic console command could be... console.writeline("Hello world!")

console.readline.

This would make text show up as Hello world on the screen.

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

The basic controls of Visual Basic are all listed in the toolbox and all have self explanatory names.

This answer is:
User Avatar

User Avatar

Wiki User

10y ago

The controls are the tools which you can put on the form. For example: If I wanted a user to enter their age, I would add a control called textbox.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the basic elements of visual basic?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions