Search results for query: *

  1. M

    Noob question about Do While and For Next Loops

    THANKS!! My teacher hasn't taught us how to do arrays yet. The class is a little hard in a way because it is online (and only 8 weeks), which means it is hard to get in contact with the teacher and I basically have to find out how to do things on my own, by using forums like this one and reading...
  2. M

    Noob question about Do While and For Next Loops

    Am i getting closer? I am still having problems. Am I getting any close? Please help. Thanks in advance. Private Sub btnDisplay_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnDisplay.Click 'Clear everything lstOutput.Items.Clear() Dim...
  3. M

    Noob question about Do While and For Next Loops

    still confused I think i am getting close, but the loops inside the loop is confusing me. I don't understand how to get strAsterisks1,strAsterisks2, strAsterisks3, strAsterisks4, or strAsterisks5. Which are the amount of asterisks I will insert at the end of strStore1, strStore2, strStore3...
  4. M

    Noob question about Do While and For Next Loops

    Hi, I have to create an application that prompts the user to enter today's sales for five stores. The program should then display a simple bar graph comparing each store's sales. Create each bar in the bar graph by displaying a row of asterisks (*) in a list box. Each asterisk in a bar...
  5. M

    about email validation

    Thanks a lot. You really helped get me in the right direction. Your code was very helpful.
  6. M

    about email validation

    I uploaded my code to mediafire: Email Address Validator 1.rar This was another way I was thinking of validating an email: Email Address Validator 2.rar this is all of my code: (yes i know it looks really bad, as I am a noob): I can't get it to work what should I do? Please help me fix this...
  7. M

    about email validation

    do you know how to search a string using a wildcard (*.com)? (to answer your question regex is much better but my teacher wants us to do it this way because we are beginners)
  8. M

    about email validation

    I just found out that my teacher wants me to use indexof to verify that it has the @, .com, .org, .gov and .edu in the address. How do I do that?
  9. M

    about email validation

    Hi I have to make a basic program that: Create a program with a simple interface that 1. Asks the user type his/her email address into a textbox. 2. When the user clicks the "Evaluate Email Address" button, one of two message boxes pops up: "That is a valid email address!" with an...
Back
Top