Questions: 619

Answers by our Experts: 487

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?
Create a Visual Basic program that lets the user look up information

Pick something to lookup (city & zip code, state and capital, etc)
Use list boxes for input, use labels for output
All buttons and other objects must be named with appropriate names;
When the item is selected, display the results.
Create a Visual Basic program that computes pay

Use 2 scroll bars to select the hours worked (an integer) and hourly rate (a double)
All buttons and other objects must be named with appropriate names;
When either scoll bar changes use a general sub to compute pay.
If hours is less than or equal to 40, the pay is simply hours times rate.
If the hours is more than 40 the first 40 hours are paid at the regular hourly rate. Each overtime hour is paid at 1.5 times the hourly rate.
Display the pay in a label formatted to 2 decimal places.
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.
Enter the annual salary of an employee and also indicate whether the employee is a full-time or party time employee. Full-time employee pay 29.5% income tax whereas thee other employee pay 25% income tax. Calculate and display the gross monthly salary, monthly tax payable and the net monthly salary
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 to create a student grade calculator that stores numeric grade (up to 10 students) in 10 separate fields. Need to calc avg grade & std. dev.
what is the error in display Function that invalid column value sample .col =2:.text= rs!User Name
My assignment is to create a calculator. I have 2 text boxes in my calculator, where the first number is typed into box one, the second in box 2 and then the answer is shown in a label. Right now I am trying to write code for the numbers but, so far, when I click on a number, the number appears in both boxes. I need help figuring out how to stop it from doing that. Thank you!
LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS