Jump to content

Welcome to Geeks to Go - Register now for FREE

Need help with your computer or device? Want to learn new tech skills? You're in the right place!
Geeks to Go is a friendly community of tech experts who can solve any problem you have. Just create a free account and post your question. Our volunteers will reply quickly and guide you through the steps. Don't let tech troubles stop you. Join Geeks to Go now and get the support you need!

How it Works Create Account
Photo

nested if statements in VB


  • Please log in to reply

#1
complete

complete

    Member

  • Member
  • PipPip
  • 15 posts
:tazz:
How do you do nested if statements in VB?

For instance, instead of this:

if i = 4 then
...
end if
if i = 6 then
...
end if
if i = 8 then
...
end if


how could I do something like this:

if i=4 or i=6 or i=8 then
---
end if

Edited by complete, 02 January 2006 - 09:32 PM.

  • 0

Advertisements


#2
Hai Mac

Hai Mac

    Member

  • Member
  • PipPipPip
  • 260 posts
I don't understand what you want, because
if i=4 or i=6 or i=8 then
---
end if
is a completely valid VB piece of code.

May be you meant this:
If i=4 Then
   ...
Elseif i = 6 Then
   ...
Elseif i = 8 Then
   ...
End If

or use Select Case

Select Case i
   Case 4:
	  ...
   Case 6:
	  ...
   Case 8:
	  ...
End Select

  • 0






Similar Topics

1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users

As Featured On:

Microsoft Yahoo BBC MSN PC Magazine Washington Post HP