Computers & Internet Logo

Related Topics:

a
anon Posted on Mar 08, 2019

What is visual basic interface?

Is it the form itself or the final product after you design it?

1 Answer

James M Knox

Level 1:

An expert who has achieved level 1.

MVP:

An expert that got 5 achievements.

New Friend:

An expert that has 1 follower.

Hot-Shot:

An expert who has answered 20 questions.

  • Contributor 31 Answers
  • Posted on Mar 12, 2019
James M Knox
Contributor
Level 1:

An expert who has achieved level 1.

MVP:

An expert that got 5 achievements.

New Friend:

An expert that has 1 follower.

Hot-Shot:

An expert who has answered 20 questions.

Joined: Jul 25, 2014
Answers
31
Questions
0
Helped
13806
Points
53

I wish I had more context in order to give you a more meaningful answer. The two "Visual Basic" areas are 1) The programming language Visual Basic (VB) and the interface you use to program in; 2) The Visual Basic for Applications (VBA) which can be used by most other Microsoft developer programs and applications (such as Excel). The interface there is the command structure you can use to write small programs and modules within the applications (such as Excel) to interface with the VBA capability.

Since you mention "form," I suspect you are using VB (probably under what is called .NET). Really, from a purely technical issue (for example, in Computer Science classes I have taught), the interface is what .NET presents to you, the developer. The "form" is certainly one aspect of the interface, but so are the code pages.

You are correct that it could also refer to the interface between the program you develop and the end user. However, this is more commonly referred to (in the case of a language like VB) as the GUI (Graphical User Interface). Think of it another way. Under .NET you can write a program in VB or in C+ or in a number of other languages. However, the user interface is, for a given program, going to be indistinguishable to the user. So that is not really the Visual Basic Interface.

5 Related Answers

Anonymous

  • 4889 Answers
  • Posted on Nov 10, 2007

SOURCE: coding in ms word by using visual basic editor

Hello Kavita! If you want to get the most of VB then i advice that you install Microsoft visual studio...But just in case you want it for free you can find it here..
http://www.brothersoft.com/downloads/vb6.html

Ad

Anonymous

  • 5 Answers
  • Posted on Sep 29, 2008

SOURCE: Visual Basic

Hi Buddy,

Create 2 buttons for previous and next in a form(say, current_form). take the previous form as 'prev_form' and next form as 'next_form' then
write a code in the previous button command click event as

prev_form.Show()
current_form.Hide()

write a code in the next button command click event as
next_form.Show()
current_form.Hide()

Please let me know if you have any concerns

Anonymous

  • 10 Answers
  • Posted on Dec 31, 2008

SOURCE: Accessing data

Dear reader

Place an ADODC control on your form in VB.
In the properties of the ADODC control goto the TAB General.
click "Use Connection String. With the button Build you can point to your database.
Thats it.

With the following code you can connect to db:

With Adodc
.RecordSource = "SELECT * From YOURTABLE"
.Refresh
End With

Now you have the table in the adodc control.

you can now do this:

Label1.caption = Adodc.Recordset!YOURFIELD

YOURTABLE = the name of your table in the database.
YOURFIELD = the fieldname in YOURTABLE you want to show.

Kind regards Fred.

Anonymous

  • 6 Answers
  • Posted on Aug 25, 2009

SOURCE: pls. help me

Q.2#  Dim n, sum as Double
Dim i as Integer
n=100
sum=0

for i=1 to n
sum=sum+1/n
next i

Q.3#  Dim sum as Double
sum=0
for i=1 to 99
if i%2 <> 0 then sum=sum+i end if
next i

Anonymous

  • 1 Answer
  • Posted on Nov 19, 2009

SOURCE: source code to connect RFID reader with visual

I am very interested in this solution, if you have more information, could you please contact me @ m.martens@gmail.com

Ad

Add Your Answer

×

Uploading: 0%

my-video-file.mp4

Complete. Click "Add" to insert your video. Add

×

Loading...
Loading...

52 views

Ask a Question

Usually answered in minutes!

Top Visual Computers & Internet Experts

Narseman

Level 3 Expert

1092 Answers

Ngoro

Level 3 Expert

3532 Answers

ADMIN Andrew
ADMIN Andrew

Level 3 Expert

73783 Answers

Are you a Visual Computer and Internet Expert? Answer questions, earn points and help others

Answer questions

Manuals & User Guides

Loading...