Results 1 to 2 of 2

Thread: TabExists results as True, even when the user is not logged in.

  1. #1
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default TabExists results as True, even when the user is not logged in.

    Simba Code:
    function TabExists(Tab: Integer): Boolean;
    var
      tP: TPoint;
    begin
      Result := false;
      if not LoggedIn then
        Exit;
    Or something like that. Right now if you run something like "writeln(TabExists(Tab_Magic));" when not logged in, it returns True.


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  2. #2
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    Committed, thanks.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

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