answersLogoWhite

0

📱

VBNET

VBNET is an object-oriented programming (OOP) language developed by Microsoft. It is the .NET version of Visual Basic, which supports OOP concepts like aggregation, modularity, abstraction, encapsulation, inheritance and polymorphism.

500 Questions

What is the extansion of VBNET?

User Avatar

Asked by Wiki User

If you save your VB.NET project, it will be a .vb file.

You can also build your program, then it becomes an executable (.exe)

What is a file on a database?

User Avatar

Asked by Wiki User

More than one record in a Database

What is the difference between visual studio and visual basic?

User Avatar

Asked by Wiki User

I believe visual studio is the user interface, and it not only supports visual basic but also visual c++, c#, web development etc. Visual basic, on the other hand, is a programming language.

Closing a form in VB.NET using escape key?

User Avatar

Asked by Wiki User

In your Forms designer, or in your code, set the Form.CancelButton property to your "Cancel" button. Then, when the Cancel button is pressed, or the Escape key is clicked (or the Dialog is closed) the DialogResult of the form will be "DialogResult.Cancel."

Crlf means in vbnet?

User Avatar

Asked by Wiki User

It stands for Carraige Return Line Feed. It starts a new line when you are outputting something, like in a Message box.

What are the basics of VB.NET?

User Avatar

Asked by Wiki User

here is a simple peice of code

Module Module1

Sub Main()

Dim a, b, c As Integer 'integer means number

Console.WriteLine("please enter two numbers") 'this displays text for the user

a = Console.ReadLine ' readline is when a user enters a number and hits enter

b = Console.ReadLine

Console.ReadLine()

c = a + b

Console.WriteLine(c)

Console.ReadLine()

End Sub

End Module

Visual basic code for temp conversion of fah to celsius and celsius to Fahrenheit?

User Avatar

Asked by Wiki User

01Private Sub btnConvert_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnConvert.Click02 Dim dblTemp As Double

03 Dim dblResult As Double

04 Convert.ToString(txtTemp)

05 If radCelsius.Checked = True Then

06 dblResult = (dblTemp * 9) / 5 - 32

07 ElseIf radFahrenheit.Checked = True Then

08 dblResult = (dblTemp * 5 / 9) + 32

09 End If

10 lblResult.Text = Format(dblResult, ".")

11 End Sub

What is the difference between sql and Microsoft Excel?

User Avatar

Asked by Wiki User

SQL means Structured Query Language. It is a programming language which is mainly used for maintaining databases. Excel is one of the application developed by Microsoft to do calculations, graphs using spreadsheets.

What are the differences between primary key foreign key and candidate key?

User Avatar

Asked by Wiki User

A primary key is a column which uniquely identifies the records in a table. In a broad sense, a primary key is the mixture of a unique key and an index: A column with a primary key is indexed to deliver a faster query, and doesn't allow duplicate values to ensure specific data. Most programmers recommend all tables having a primary key (and only one) to enhance the speed of queries and overall database performance. An example of a primary key may be found in a table named "departments," which might have a column named "department_number" that uniquely identifies each department in the table with a number.

A foreign key is a column (the child column ) in a table which has a corresponding relationship and a dependency on another column (the parent column ) that is usually in a different table. Parent columns can have multiple child columns, but a child column can only have one parent column. The child column is the column with the foreign key; the parent column does not have the foreign key "set" on it, but most databases require the parent column to be indexed. Foreign keys are made to link data across multiple tables. A child column cannot have a record that its parent column does not have. Say a table named "employees" has 20 employees (rows) in it. There are 4 departments in the "departments" table. All 20 employees must belong to a department, so a column in the "employees" table named "department" would point to the primary key in the "departments" table using a foreign key. Now all employees must belong to a department as specified by the "departments" table. If a department isn't specified in the "departments" table, the employee cannot be assigned to it.

A candidate key would be any key which could be used as the primary key, which means that the combination of the columns, or just the single column would create a unique key. You would then need to determine which of these candidate keys would work best as your primary key.

What is a visual metaphor?

User Avatar

Asked by Wiki User

A visual metaphor, also called a pictorial metaphor, is a metaphor in which something (the metaphor's "target") that is presented visually is compared to something that belongs to another category (the metaphor's "source") of things than the first, also presented visually. As in verbal metaphors (such as "football is war" or "the world is a stage"), at least one feature or association is "mapped" from the source to the target. Often, a whole set of (interrelated) features is mapped from source to target. Visual/pictorial metaphors are used often in advertising, but also in political cartoons and films. Many examples of visual/pictorial metaphor, as well as discussions of them, are discussed in my book Pictorial Metaphor in Advertising(Routledge 1996), which also contains references to the work of other authors who discuss metaphor in images and film, for instance the perception psychologist John Kennedy, the film scholar Trevor Whittock, and the film philosopher Noel Carroll.

Nowadays, metaphors straddling two or more modalities (language, visuals, sound, gesture ...) are beginning to receive serious scholarly attention. Metaphors in which the target and the source are in different modalities are called "multimodal metaphors." An example of the latter is an advertisement for a photo camera (target, in the visual modality) with underneath the text "supermodel" (source, in the verbal modality). For more information, see my online course *A Course in Pictorial and Multimodal Metaphor.*

In September 2009 the volume Multimodal Metaphor (Mouton de Gruyter) appeared, which I co-edited with Eduardo Urios-Aparisi. More information on this topic can be found on the Adventures in Multimodality (AIM) blog [Contribution by Charles Forceville.]

What is Difference between CMM and CMMI?

User Avatar

Asked by Wiki User

cmmi is is an integrated model for system, software, supplier sourcing and ippd. but cmm have separate model for all these things

How do you create a table using the entities and attributes you want to use and listing at least three entities and at least four attributes for each entity?

User Avatar

Asked by Wiki User

Entity is an object, can be independent or dependent object. e.g A Student, Lecturer OR Employee can be a entity where as the attributes are the properties of the entity. e,g name, age, birthdate, degree.

to answer your question create 3 X 4 matrix, add entity names in column heading and attributes in a row label. and fill in the information for each entity.

Write a program to generate the Fibonacci Series?

User Avatar

Asked by Wiki User

#include

#include

main()

{

int n,i,c,a=0,b=1;

printf("Enter Fibonacci series of nth term : ");

scanf("%d",&n);

printf("%d %d ",a,b);

for(i=0;i<=(n-3);i++)

{

c=a+b;

a=b;

b=c;

printf("%d ",c);

}

getch();

}

Output :

Enter Fibonacci series of nth term : 7

0 1 1 2 3 5 8

Answer 2:/************************************************************************* Fibonacci In a Fibonacci series each number is the sum of the two previous numbers. This program calculates Fibonacci numbers within an 8-bit range, ;************************************************************************/

#include < p18f452.h >

//these memory locations hold the Fibonacci series

unsigned char fib0; //lowest number

//(oldest when going up, newest when reversing down)

unsigned int fib1; //middle number

unsigned float fib2; //highest number

unsigned double fibtemp; //temporary location for newest number

main ()

{

counter 3; //have preloaded the first three numbers, so start at 3

fib0 0;

fib1 1;

fib2 1;

loop: do

{

float test0;

fibtemp fib1 + fib2;

counter counter + 1;

//now shuffle numbers held, discarding the oldest

fib0 fib1; //first move middle number, to overwrite oldest

fib1 fib2;

fib2 fibtemp;

}

while (counter<12):

//when reversing down, we will subtract fib0 from fib1 to form new fib0

do

{

fibtemp fib1 - fib0; //latest number now placed in fibtemp

counter counter - 1;

//now shuffle numbers held, discarding the oldest

fib2 fib1; //first move middle number, to overwrite oldest

fib1 fib0;

fib0 = fibtemp;

}

while (fib0>0);

go to loop

return 10;

}

tell me problem

How do you draw DFD for pharmacy management system?

User Avatar

Asked by Wiki User

Contex level,0 level,first level DFDs for hospital management system

DFD diagram for hostel management system?

User Avatar

Asked by Prataptamang

Please follow the URL given below to get the file for DFD of Hostel Management System.I hope this will be useful to you guys. All the best for your projects.For further details contact me at my email ajit.mohapatra@gmail.com

http://rapidshare.com/files/299589924/DFD.docx

Difference between foreign key and composite key?

User Avatar

Asked by Wiki User

primary key: primary creates a clustered index on the

column and it doesn't allow null values.

unique key: unique key creates non clustered index by

default.it allows "one null value".

foreign key: A foreign key (FK) is a column or combination

of columns used to establish and enforce a link between the

data in two tables.

Fore More information, you can visit this website:http://www.iyogibusiness.com

What is the most useful language for business?

User Avatar

Asked by Wiki User

Probably Chinese (Mandarin) or Japanese. If you started with Japanese it would be a little bit easier.

Answer2: Better learn Spanish, look at the second language on EVERYTHING, it is written in Spanish.

Which Compiler is used in visual basic?

User Avatar

Asked by Wiki User

visual basic has it's own compiler that Microsoft developed for it I think it was called vbcomp

Documentation of Hostel management system?

User Avatar

Asked by Wiki User

There are a lot of commercial packages that do this; use Google to locate the vendors.

What is combo box?

User Avatar

Asked by Wiki User

A combo box is a list of multiple values a user can select. Sometimes we refer to them as dropdown lists. When you click on it a list of value pops down and you can choose an option. They are very commonly seen on computers. To create them you use the Combo Box control in Visual BASIC.

What are the parts of Visual basic.net?

User Avatar

Asked by Wiki User

Visual basic is a programming language from Microsoft. Some of its parts include data access objects, ActiveX data objects, and remote data objects. Their function is to provide access to databases.

Which keyword is used to declare a class?

User Avatar

Asked by Wiki User

There is no keyword for it. You can use a variable of 1 class in another only id the other class is derived from the 1st class.

Although you can use the variable of an object of a class in another class using object.variable

How does the behavior of option buttons differ from the behavior of check boxes?

User Avatar

Asked by Wiki User

In Check box, you can select multiple options. In Option Button (also known as Radio button), you can select only one option at a time.

A Check box is rather similar to an option button. The Value property of both the controls is tested to check the current state. Check boxes are valid as a single control whereas a single option button is probably counts- intuitive.Check boxes are not mutually exclusive.