On Jun 20, 2006, at 1:56 PM, Mars Saxman wrote:
On Jun 20, 2006, at 12:50 PM, GregO wrote:
Anyone know if there's a way to get a Case statement to fall
through to the next one if they are both valid?
There is no such facility built in, but you could try a Goto
statement.
ICK .....
a series of if's would work just as well
if n = 1 then
msgbox "1"
end if
if n = 1 or n = 2 then
msgbox "1,2"
end if
has the same effect without requiring a goto
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>