forum.vdsworld.com Forum Index forum.vdsworld.com
Visit VDSWORLD.com
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


List in use?

 
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> General Help
View previous topic :: View next topic  
Author Message
dmonckton
Contributor
Contributor


Joined: 09 Aug 2002
Posts: 117
Location: Lewes, U.K.

PostPosted: Wed Nov 08, 2006 5:43 pm    Post subject: List in use? Reply with quote

Hi

What's the best way to check if a list is in use? I tried....
Code:

if @count(1)
    do something
end


But this gives an error if the list hasn't already been created.
All the other list functions seem to give an error if the list hasn't
already been created. I want to know if the list has been created
or not?

Thanks

David...
Back to top
View user's profile Send private message
SnarlingSheep
Professional Member
Professional Member


Joined: 13 Mar 2001
Posts: 759
Location: Michigan

PostPosted: Wed Nov 08, 2006 6:21 pm    Post subject: Reply with quote

You could use something like this:
Code:

option errortrap,nolist
if @count(1)
  info "List exists"
end
exit

:nolist
  if @equal(@error(),4)
    info "List does not exist"
    option errortrap
  end
  exit

_________________
-Sheep
My pockets hurt...
Back to top
View user's profile Send private message Send e-mail
dmonckton
Contributor
Contributor


Joined: 09 Aug 2002
Posts: 117
Location: Lewes, U.K.

PostPosted: Wed Nov 08, 2006 9:57 pm    Post subject: Reply with quote

Excellent!

That is just what I wanted.

Never used ERRORTRAP before! Cool.

Thanks

David...
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> General Help All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum

Twitter@vdsworld       RSS

Powered by phpBB © 2001, 2005 phpBB Group