Questions: 358

Answers by our Experts: 358

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Search & Filtering

Which of the following will not display four asterisks on each of three lines in the lblMsg control?

a) lblMsg.Text = "****" &
ControlChars.NewLine & "****" &
ControlChars.NewLine & "****"

b) For intCounter As Integer= 1 to 3
lblMsg.Text = lblMag.Text &
"****" & ControlChars.NewLine
Next intCounter

c) For intX As Integer = 1 to 4
Fir intY As Integer = 1 to 3
lblMsg.Text = lblMag.Text & "*"
Next intY
lblMsg.Text = lblMsg.Text &
ControlChars.NewLine
Next intX

d) For intX As Integer = 1 to 3
Fir intY As Integer = 1 to 4
lblMsg.Text = lblMag.Text & "*"
Next intY
lblMsg.Text = lblMsg.Text &
ControlChars.NewLine
Next intX

Could you help me get the answer please?
Poppy, who counts every cent to get the best value for her money, needs to buy washing powder. She went to the shop and wrote down the prices of the 500g, 750g, 1 kg packets of her favourite washing powder. She want to write a programme to determine which one of the packets is the best buy (most economical). Do the calculations and display which packet for all three packet.
How do you intialise arrays to set three group totals and increment these totals for the appropriate group in visual basic?
If a human heart beats on the average of once a second, how many times does the heart beat in a lifetime of n years? (Use 365.25 for days in a year). Write a program to count the number of heart beat.
How do you arrange words from three text boxes into a listbox in alphabetical order useing nested if statements? My program won't work if they start with the same letter...How can I fix that?
your program should should prompt the user to input 2 numbers by giving the user the Sum, Difference, Product, Quotient of two numbers. will be an interactive program.
<Q1> Design a VB form as figure 1, the user should create four functions (Add, Subtract, Multiply, and Division), the user will enter two numbers in textbox’s, when the user hit one of the operation buttons the result will appear in result textbox. The number of operation will show in massage box the number of operation the program executes. The exit will terminate the program. Finally the clear button will clear all the textbox’s.
(You should define function for each operation)
Design a VB form as figure 1, the user will enter the number of student, then mark for each student will be enter using inputbox and stored in array name marks, when the user click the search button a messagebox will show if the mark exists or not. On the other hand when the user click the find button, the maximum, minimum, sum and average will be calculated for the array marks, and the result will be display in the textbox’s. Finally the clear button will clear all the textbox’s
design a vb form, when the user hits the add button the number in the text box will be added to the list box. when the user hit the sum button the number(s) in the list box will be added and the esult will be displayed in msgbox!!!
create sub procedure for each of the operation (+,-,*,and \) to calculate the result and display it in the message box you should have four sub procedures
LATEST TUTORIALS
APPROVED BY CLIENTS