answersLogoWhite

0

📱

Visual Basic Programming

Visual Basic programming involves the use of a language that allows programmers to create simple and complex applications. It is a combination of visually organizing components or controls, specifying their attributes and actions, and writing additional codes for better functionality.

903 Questions

What is difference between SDI and MDI?

MDI: 1]We can open multiple docs simultaneously.

ex:M.S.Word

2]Container control.

3]It holds 5 classes (cchildwnd,cmdichildwnd,c-doc,c-view ,cframewnd).

SDI:1]We can open only one doc at a time.

2]It is not a Container control.

3]It holds 4 classes(c-doc,c-view ,underframe,cwinapp).

Who develop visual basic programming language and where?

BASIC (Beginners All-purpose Symbolic Instruction Code) was developed by John Kemeny and Thomas Kurtz.

Microsoft took BASIC and deveoped it into QuickBASIC, which was further developed into Visual Basic.

What is stacks in data structure using c?

queue is an abstract data type that which entities in a collection are kept in order, this makes the sense of fifo(first in first out).

stack is a container of the object which works on the principle of lifo(last in first out)

What is the meaning of the menu driven program?

Menu-driven simply means you execute the application's commands by selecting them from a menu, as opposed to command-driven whereby you enter (type) the commands manually.

What is mdi form in visual basic?

MDI (Multiple Document Interface) is a Microsoft Windows programming interface for creating an application that enables users to work with multiple documents at the same time. Each document is in a separate space with its own controls for scrolling. The user can see and work with different documents such as a spreadsheet, a text document, or a drawing space by simply moving the cursor from one space to another. An MDI application is something like the Windows desktop interface since both include multiple viewing spaces. However, the MDI viewing spaces are confined to the application's window or client area . Within the client area, each document is displayed within a separate child window . MDI applications can be used for a variety of purposes - for example, working on one document while referring to another document, viewing different presentations of the same information, viewing multiple Web sites at the same time, and any task that requires multiple reference points and work areas at the same time

What is the Difference between text box and input box?

picture box:

1) it act as container control

2) use of memory to store the picture

3) editing of picture is possible in picture box

4) having auto size property

5) not having stretch property

Image Box:

1) it is not act as container control

2) not use of memory to store the picture

3) editing of picture is not possible in picture box

4) Not having auto size property

5) Having stretch property

How do you make a password program in visual basic 6.0?

This a facility to create a password program easly provided by visual basic. This is done by different ways. one of them I illustrate it.

First of all we take a label, textbox, commandbutton and set its property as follow-

ovject property discription

Label caption Password :

Textbox text

Password char *

command button caption OK

Code for creating a simple password program-

Private Sub command1_click()

If Text1.Text=12345 Then

msgbox "Intelligent You locked the password"

Else

msgbox "You are so a idiot"

End If

End sub

When this program execute then when we enter a password into textbox then if the password is 12345 then message appear in message box is " Intelligen You Breacked the password" otherwise message appear in message box " You are so idiot".

What is timer control in visual basic?

A timer is very useful in visual basic. It can be used to repeat events again and again at set intervals. Using other triggers, such as user inputs or button clicks, or even other timers, the timer can be turned off/on, and other properties such as the timer interval can be changed. It is a key feature of the language.

What are the differences between checkbox and optionbutton in visual basic 6?

I do not believe there's an element called : OptionButton

anyways if you mean diffrence between Checkboxs and RadioButtons

then:

In radiobuttons u can add more than one radiobutton, and when there r alot the user can only choose 1 of them

In checkboxs the user can choose all of them, or 5 or 4 or whatever he wants

E R Diagram Of Restaurant Management System?

Need the E-R diagram for hostel managment system

hostel management is one of the best mini project for engineering students.

so we need an er diagram to enhance the database projects

Why reading is a largely visual process?

normally, good eyesight is required in good reading.

What is the procedure to built a class and object in visual basic?

whate is the procedure to built a class and object in visual basic.?

How to use Copyfile option in Visual Basic 6.0 to create a backup of database?

First of all, gross, Visual Basic. If you are trying to write a script to do db backup, then you are going to either need to look for something open source or write it yourself. You can also just use MySQL command line using the mysqldump command.

mysqldump name_of_database > name_of_file.sql

How do you get the output like 1 23 456 in vbscript?

you want to output "1 23 456" in VB

If you are making a console application then do the following:

console.writeline("1 23 456")

console.read() 'This command makes the console pause until a button is clicked

If you are using a windows form application, open the form.load sub ( by double clicking on it ) and add the following code:

msgbox("1 23 456")

Anyways theres another way, by adding a label and either changing its Text property in the properties bar or adding the following code into form.load sub:

label1.text = "1 23 456"

I hope that helped.

Why does engaging visual communication come with responsibility?

Engaging visual communication carries the responsibility of accurately representing information and respecting diverse perspectives. Misleading or manipulative visuals can distort understanding and perpetuate stereotypes, potentially leading to harmful consequences. Additionally, creators must consider the ethical implications of their visuals, ensuring they do not exploit vulnerable audiences or contribute to misinformation. Ultimately, responsible visual communication fosters trust and promotes informed dialogue.

What is a doc file?

A document file format is a text or binary file format for storing documents on a storage media, especially for use by computers. There currently exist a multitude of incompatible document file formats.

A rough consensus has been established that XML is to be the basis for future document file formats. Examples of XML-based open standards are DocBook, XHTML, and, more recently, the ISO/IEC standards OpenDocument (ISO 26300:2006) and Office Open XML (ISO 29500:2008).

In 1993, the ITU-T tried to establish a standard for document file formats, known as the Open Document Architecture (ODA) which was supposed to replace all competing document file formats. It is described in ITU-T documents T.411 through T.421, which are equivalent to ISO 8613. It did not succeed.

Page description languages such as PostScript and PDF have become the de facto standard for documents that a typical user should only be able to create and read, not edit. In 2001, PDF became an international ISO/IEC standard (ISO 15930-1:2001, ISO 19005-1:2005, ISO 32000-1:2008).

HTML is the most used and open international standard and it is also used as document file format. It has also become ISO/IEC standard (ISO 15445:2000).

The default binary file format used by Microsoft Word (.doc) has become widespread de facto standard for office documents, but it is a proprietary format and is not always fully supported by other word processors.

A program to find the sum of n numbers in visual basic?

//Script by aakash30jan

<script type="text/vbscript">

For count = 1 to 10

sum=sum+count

document.write("<br />" & sum)

Next

</script>

Which Compiler is used in visual basic?

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

VB Script program to display multiplication of two matrices?

<html>

<head>

</head>

<script language="VBscript">

sub fact(n)

dim f,i

f=1

i=1

do while(i<=cint(n))

f=cint(f)*cint(i)

i=i+1

loop

document.write("<br>Factorial of"&n&"is"&f)

end sub

</script>

<body>

<form name="form1" method="post" action=" ">

<input name="n" type="text" id="n">

<input name="Button" type="button" onClick="fact(form1.n.value)" value="Factorial">

</form>

</body>

</html>

How do you make a quiz in visual basic?

there could be many ways to make a quiz in vb before you do anything you have to become advanced at buttons like literally advanced

RECE


My own Edit:
you could use
Form.show

also you could use
form.hide

How do you differentiate visual basic and basic?

Visual Basic includes some object orientated aspects, basic was strictly procedural.