| Author |
Message |
thomasc93
Joined: 16 Mar 2009 Posts: 1
|
Posted: March 16, 2009 4:01 PM Post subject: Menus |
|
|
I'm trying to create a menu on my ti-89t and here's the code I used:
:menu001()
:Prgm
:ClrIO
:Dialog
:Title "Problem Solver"
:DropDpwn "Select problem type.",{"Quad Eqn","Polynomial Factoring"}, varsel
:EndDlog
:EndPrgm
I run the code and I get an ERROR dialogue box that says "Dimension".
What does this mean and how do I fix it? And how does the rest of the code look? Thanks for your help!
-Thomas |
|
| Back to top |
|
 |
Baian
Joined: 19 Mar 2009 Posts: 3
|
Posted: March 19, 2009 5:02 PM Post subject: |
|
|
| The error might be related to your list of items. I tried your code and didn't get any errors though. |
|
| Back to top |
|
 |
Baian
Joined: 19 Mar 2009 Posts: 3
|
Posted: March 19, 2009 9:32 PM Post subject: |
|
|
OK solved the problem
the error is caused by this line
DropDpwn "Select problem type.",{"Quad Eqn","Polynomial Factoring"}, varsel
The problem is that you have too many characters in "Polynomial Factoring"
A possible change would be:
DropDown "Select Problem type",{"Quad Eqn","Ply Fctring"},varsel
OR
DropDown "Select Type",{"Quad Eqn","Poly Factoring"},varsel
The key is that you have less than 35 total characters between all the text. |
|
| Back to top |
|
 |
|