1. Quick question...
Probably a question you guys are asked a billion times. This gets to
be the billion-and-first :)
How would I go about greying out a control and making it
unselectable?
TIA,
Blessed Be! --"LEVIATHAN"
2. Quick question...
Heya all!
Alrightee, i've a quick question: In a if/then statement, at any time I
want to break out and stop the procedure from continuing to run,
how would I accomplish this?'
TIA,
--"LEVIATHAN"
3. Re: Quick question...
- Posted by Derek Parnell <dparnell at BIGPOND.NET.AU>
Nov 13, 2000
-
Last edited Nov 14, 2000
How about...
procedure xyz()
if a = 0 then
return
end if
end procedure
------
Derek Parnell
Melbourne, Australia
(Vote [1] The Cheshire Cat for Internet Mascot)
----- Original Message -----
From: "LEVIATHAN" <leviathan at USWEST.NET>
To: <EUPHORIA at LISTSERV.MUOHIO.EDU>
Sent: Monday, November 13, 2000 7:00 PM
Subject: Quick question...
> Heya all!
>
> Alrightee, i've a quick question: In a if/then statement, at any time I
> want to break out and stop the procedure from continuing to run,
> how would I accomplish this?'
>
> TIA,
>
> --"LEVIATHAN"
4. Re: Quick question...
> How about...
>
> procedure xyz()
> if a = 0 then
> return
> end if
>
> end procedure
>
Just the answer I was looking for! Thanx! :)
--"LEVIATHAN"