Consulting

Results 1 to 5 of 5

Thread: A For Loop statement to display a message to the user from 1 to 4

  1. #1
    VBAX Mentor
    Joined
    Aug 2010
    Posts
    457
    Location

    A For Loop statement to display a message to the user from 1 to 4

    Is it possible to write a code VBA For Loop statement to display a message to the user from 1 to 4? If so, how can this be done?



    Thanks for your contributions

  2. #2
    VBAX Mentor
    Joined
    Feb 2009
    Posts
    447
    Location
    1 to 4 what?

  3. #3
    For I = 1 to 4
      MsgBox I
    
    Next I
    Boyd Trimmell aka HiTechCoach
    Microsoft Access MVP -2010-2015

    Programming: Nine different ways to do it right, a thousand ways to do it wrong.
    Binary--it's as easy as 1-10-11

  4. #4
    VBAX Mentor
    Joined
    Aug 2010
    Posts
    457
    Location
    Thanks!

  5. #5
    You're welcome.
    Boyd Trimmell aka HiTechCoach
    Microsoft Access MVP -2010-2015

    Programming: Nine different ways to do it right, a thousand ways to do it wrong.
    Binary--it's as easy as 1-10-11

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •