Is it the form itself or the final product after you design it?
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.
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
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
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.
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
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
52 views
Usually answered in minutes!
×