Help for this page

Select Code to Download


  1. or download this
    elsif($segment = 6) {                    # Draw the 6 sided segment(6)
    
  2. or download this
    sub GetValue{
        my $return = $wxGlobals{mValue};
    }
    
  3. or download this
    sub GetValue{
        return $wxGlobals{mValue};
    }
    
  4. or download this
    sub Decode {                            # Table lookup for character t
    +o
        my($char) = @_;                     # Segment translation
    ...
             $return = $ctbl{'='};          # Triple bar for undefined cha
    +racter
        }   
    }
    
  5. or download this
    sub Decode                              # Table lookup for character t
    +o segment translation
    {
    ...
    
        return $ctbl{'='};                  # Triple bar for undefined cha
    +racter
    }