home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / basic / pbvl010.zip / HELP_ME.DOC < prev    next >
Text File  |  1994-02-10  |  5KB  |  110 lines

  1.  
  2.      COMMON PB/VISION PROBLEMS AND QUESTIONS.
  3.      ─────────────────────────────────────────────────────────────────
  4.  
  5.      If you get stuck while using PB/VISION(tm), this is the file to
  6.      consult.  If you don't find what your are looking for, please
  7.      consult the documentation section covering "Technical Support".
  8.      We're fun people to talk to so stay calm and give us a call.
  9.  
  10.  
  11.      PROBLEM:  All of a sudden your program starts having "Exception
  12.                #12" errors.
  13.  
  14.      SOLUTION: This is caused by having too small of a stack and
  15.                occurs if you have deeply nested subroutines or
  16.                subroutines with a lot of local variables.  It can be
  17.                fixed by creating a larger stack with the $STACK
  18.                command (ie $STACK 8192).
  19.  
  20.                Stack errors are the most common and hard to find bugs
  21.                on the planet.  Anytime you have a bug that you just
  22.                cannot explain, try increasing the size of the stack
  23.                with $STACK.  Not too big though.
  24.  
  25.  
  26.      PROBLEM:  When attempting to run any of the example programs or
  27.                tutorial programs,  PowerBASIC displays the message
  28.                "Error 519: Missing Declaration".
  29.  
  30.      SOLUTION: From within PowerBASIC (PB.EXE), select the following
  31.                from the pulldown menu "Options|Compiler|Variable
  32.                Declarations". Select the "None" options to turn off
  33.                variable checking.
  34.  
  35.  
  36.      PROBLEM:  When resuming execution after hitting a breakpoint, the
  37.                mouse is dead.
  38.  
  39.      SOLUTION: Apparently, PowerBASIC resets the mouse when it hits a
  40.                breakpoint, but doesn't restore it afterward.  Your
  41.                only option is to turn off PB.EXE's use of the mouse
  42.                under the "Options|Environment" menu.
  43.  
  44.  
  45.      PROBLEM:  The mouse cursor in PowerBASIC is garbled after ending
  46.                the program or hitting a breakpoint.
  47.  
  48.      SOLUTION: This is a side effect of trying to to mix graphics in
  49.                text mode.  To avoid the problem, you should use the
  50.                text block cursor in the IDE, and switch to the
  51.                graphical mouse only in a compiled program.  See
  52.                APP.GRAPHICSMOUSE for more info.
  53.  
  54.  
  55.      PROBLEM:  If the program doesn't end normally, a lot of my screen
  56.                characters look funny?
  57.  
  58.      SOLUTION: This is a side effect of "Graphics Mapping".  If your
  59.                program never reaches the APPCLOSE() routine, the video
  60.                card doesn't get reset.  There is _NO_ harm in this.
  61.                Everything on your screen should still be 100% readable
  62.                and after a day or so, you won't even notice it.  If it
  63.                really bothers you, set APP.GRAPHICSMODE to 0.
  64.  
  65.  
  66.      PROBLEM.  When I run one of my programs from the DOS command
  67.                line, a "registration notice" pops up at the end of the
  68.                program.
  69.  
  70.      SOLUTION: PB/VISION(tm) LITE is distributed as shareware.  The
  71.                screen is only there to remind you of the fact, and it
  72.                only comes up when the program is compiled to an EXE.
  73.                It doesn't come up in the IDE because it would really
  74.                become a nuisance and cause you to think unkindly of
  75.                us.  The registered version does _not_ do this.
  76.  
  77.  
  78.      QUESTION. Is it true that you met Elvis while your were being
  79.                held captive by aliens from the planet Phernabulax?
  80.  
  81.      ANSWER:   No.  That was blown completely out of proportion.  He
  82.                was just an Elvis impersonator.
  83.  
  84.  
  85.      PROBLEM:. After assigning a function with WININSTALLCODE() or
  86.                TIMERINSTALLCODE(), the computer freezes.
  87.  
  88.      SOLUTION: Check to make sure that you formatted the function
  89.                correctly.  You can import templates for both from the
  90.                help system.  Press <CTRL-F1> until our help system
  91.                comes up.
  92.  
  93.  
  94.      PROBLEM:  Two cars are on a collision course on the Interstate.
  95.                Cars "A" and "B" are maintaining a constant of speed of
  96.                65 mph and 45 mph, respectively.
  97.  
  98.                When the two cars are exactly 55 miles apart, a lonely
  99.                bored fly (on a caffeine binge) starts flying from car
  100.                "A" to car "B" at a steady speed of 92 mph.  When the
  101.                fly reaches car "B" it zips around and heads back
  102.                towards car "A".  It keeps going from car to car until
  103.                both cars collide.
  104.  
  105.                How many miles did the fly travel before getting
  106.                squashed between the two colliding cars?
  107.  
  108.      SOLUTION: Bwah-HAHAHAHAHAHAHA!  I'll never tell.
  109.  
  110.