answersLogoWhite

0

many

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

How visual data manager helps in creating a data base file in visual basics?

The Visual Data manager that ships with Visual Basic is a powerful tool for working with several types of databases inside the Visual Basic environment. One can create, edit, compact and repair many types of databases and other types of files. Here's how to use the Visual Data Manager in Visual Basic.


How do you use or integrate c plus plus code in visual basic 6?

You can't integrate C++ source code directly into Visual Basic code. In order to make use of code written in another language, including C++, you must compile that source to produce a DLL. You can then link to that DLL via Visual Basic. The only caveat is that you must replace the C++ data types in the function declarations with the equivalent Visual Basic data types, such as 'Byte' for a C++ unsigned char, or 'Single' for a C++ float.


Describe the four basic data types in c?

Describe the basic data types in C Describe the basic data types in C


What is class varient?

Variant is a data type in certain programming languages, particularly Visual Basic and C++ when using the Component Object Model.In Visual Basic (and Visual Basic for Applications) the Variant data type is a tagged union that can be used to represent any other data type (for example, integer, floating-point, single- and double-precision, object, etc.) except fixed-length string type and record types. In Visual Basic any variable, not declared explicitly or the type of which is not declared explicitly, is taken to be a variant.


Benefits of having data types in visual basic?

write a brief account of the beneifts of appropriate choice of data type (E.G ADDITIONAL VALIDATION, EFFICENCY OF STORAGE ETC


The basic functions of many programs are?

input data, processing, output data reference:Microsoft Visual Basic 2012 Introductory


What is the default data type for Visual Basic?

A variable has a data type such as integer, string, double. A data type tells the variable to only store values that are a particular data type, so you can only store numbers without decimal points in an integer variable, and only characters such as "ABCD" in a string variable.


What are the basic parts of programming?

Data types and functions.


Difference between Crystal Reports and data report in visual basic?

Data report it reports data .. Crystal report it reports crystal thanks GENIUS


What is the difference between class data type and basic type in c plus plus .How can someone know which one is class type and which one is basic type.?

Basic types (primitive data types) have no methods associated with them.


What are the advantages and disadvantages of variant in visual basic?

In Visual Basic, the Variant data type offers flexibility by allowing variables to hold different types of data, which can simplify coding in scenarios where data types may vary. However, its use can lead to performance overhead due to type checking and conversion at runtime, and it may introduce potential runtime errors if the expected data type does not match. Additionally, relying heavily on Variant can reduce code clarity and maintainability, making debugging more challenging. Thus, while it offers convenience, careful consideration is needed to avoid pitfalls.


How you can establish the properties in Visual Basic?

To establish a varibale in visual basic. You can write Dim xxx as 'data type' Public xxx as 'data type' Public allows a variable to be tranfered across forms. If you also use vb 2008.net, You have to declare ALL variables