This is an archived, read-only copy of the United-TI subforum , including posts and topic from May 2003 to April 2012. If you would like to discuss any of the topics in this forum, you can visit Cemetech's TI-BASIC subforum. Some of these topics may also be directly-linked to active Cemetech topics. If you are a Cemetech member with a linked United-TI account, you can link United-TI topics here with your current Cemetech topics.

This forum is locked: you cannot post, reply to, or edit topics. TI-Basic => TI-BASIC
United-TI Archives -> TI-Basic
 
    » Goto page Previous  1, 2, 3, 4, 5  Next
» View previous topic :: View next topic  
Author Message
mehal88


Newbie


Joined: 21 Oct 2003
Posts: 16

Posted: 22 Oct 2003 11:31:35 pm    Post subject:

ok i just saw wat the last person wrote and i noticed that it isnt a prob with the cable... graph link doesnt support usb... i get it now... are there and wat prog's do support the usb cable for it then... cuz u cant send on ti connect can u?
Back to top
Darth Android
DragonOS Dev Team


Bandwidth Hog


Joined: 31 May 2003
Posts: 2104

Posted: 23 Oct 2003 08:20:12 am    Post subject:

yes, you HAVE to use ticonnect if you have a usb cable. once you install ti connect, find the file, right click, select "send to", select "connected ti device", then either select "RAM" or "Archive" (for windows)
or, if you told ti connect to put an icon on your desktop, just drag and drop the file on the icon Smile
Back to top
Matt


Member


Joined: 11 Jun 2003
Posts: 169

Posted: 23 Oct 2003 04:15:53 pm    Post subject:

Here are the BASICS:
Quote:
To display things: Disp_"what ever you wanny say"

as you can see the _ stands for " " (a space)
Quote:
Ask for a value: Input_"W= ",W

Well . .lets say you needed to ask the person for the width:

  • the part in the " are whats on the screen







  • the ,W is what it stores their value as

Now that the value is store you can *,-, +,/
so here is what you have to do then:
Quote:
W*25->A

Now this is what thats doin'

  • W*25 multiplies the number by 25
  • then what ever that number ='s when its multiplied bt 25 is stored as A
  • NOTE: to make the "->" click on the [STO->]
  • NOTE: thats above the [ON] key
Thats the basics of math!
Back to top
Matt


Member


Joined: 11 Jun 2003
Posts: 169

Posted: 23 Oct 2003 04:17:31 pm    Post subject:

yes you have to have ti connect to send using a USB cord. But when you want to send a program drag it from the folder its in and drop it in the Device Explorer Application
Back to top
mehal88


Newbie


Joined: 21 Oct 2003
Posts: 16

Posted: 23 Oct 2003 06:52:16 pm    Post subject:

i cant run asm prog's on my calc... it shows a syntax error
it does it with all asm things... the BASIC works fine tho... i just need suttin faster:-P
Back to top
Toksyuryel
Crimson Dragon Software


Elite


Joined: 14 Jun 2003
Posts: 880

Posted: 23 Oct 2003 07:30:25 pm    Post subject:

The reason it displays a syntax error is because there is one: you have to put asm( before the program name. You can find it in the catalog.
Back to top
mehal88


Newbie


Joined: 21 Oct 2003
Posts: 16

Posted: 23 Oct 2003 08:08:09 pm    Post subject:

when i do that it just says DONE... it doesnt start anything
Back to top
Toksyuryel
Crimson Dragon Software


Elite


Joined: 14 Jun 2003
Posts: 880

Posted: 24 Oct 2003 12:21:47 pm    Post subject:

The it's probably an ION or other type of ASM program. In this case, try running it in MirageOS.
Back to top
Matt


Member


Joined: 11 Jun 2003
Posts: 169

Posted: 24 Oct 2003 04:04:02 pm    Post subject:

Yeah most likley you need to upload MirageOS or ION to you calc. . .better of gettin' MirageOS and go to the app and then you will see a screen then you will need to press enter an you will most likley see the list of you programs!
Back to top
mehal88


Newbie


Joined: 21 Oct 2003
Posts: 16

Posted: 27 Oct 2003 11:37:02 pm    Post subject:

um how do i "unrecall" pics on my calc... i wanted to see them and now they're stored on my graph and i cant do much other work now...

HELP PLZ!
Back to top
Arcane Wizard
`semi-hippie`


Super Elite (Last Title)


Joined: 02 Jun 2003
Posts: 8993

Posted: 28 Oct 2003 04:04:43 am    Post subject:

ClrDraw empties the entire screen, as does changing any of the window's properties.

If you want to actually remove the pics from your calc's memory:
press [2nd],[+],[2],[ENTER], and then put the arrow in front of the things you want to remove, in this case pic0 through pic9, and press enter to remove them.
Back to top
Toksyuryel
Crimson Dragon Software


Elite


Joined: 14 Jun 2003
Posts: 880

Posted: 28 Oct 2003 10:49:18 am    Post subject:

if you have a + or SE, you need to press del; enter will archive the program.
Back to top
mehal88


Newbie


Joined: 21 Oct 2003
Posts: 16

Posted: 28 Oct 2003 04:13:37 pm    Post subject:

i have both 83 and 83+ actually but yea i got it to work now
Back to top
mehal88


Newbie


Joined: 21 Oct 2003
Posts: 16

Posted: 28 Oct 2003 04:17:48 pm    Post subject:

i was wondering how to program in basic... its a very simple idea
the user puts in a few different numbers and the calc does the calculations and gives an answer....
i wasnt sure how to let the calc kno that its supposed to take the number and store it...

i put it as
:input -> A

and it gives an error when i do that

and at the end where it takes the numbers and does the calculations with it i wasnt sure how to tell the calc to do them
Back to top
Toksyuryel
Crimson Dragon Software


Elite


Joined: 14 Jun 2003
Posts: 880

Posted: 28 Oct 2003 04:21:21 pm    Post subject:

Input "textstring",variable
You don't need to use the store character. It's only needed when something doesn't normally store to something, like "A+1" won't store to "A", but "A+1->A" will.
Back to top
mehal88


Newbie


Joined: 21 Oct 2003
Posts: 16

Posted: 28 Oct 2003 08:26:57 pm    Post subject:

well its gonna be 6 variables... and the calculations r being done last....
Back to top
mehal88


Newbie


Joined: 21 Oct 2003
Posts: 16

Posted: 28 Oct 2003 08:28:37 pm    Post subject:

at the end where i do the calculations do i just put them in like i would in the reg calc screen
e.g. (A+9)/4

or suttin like that?

and how do i get it to show the final number at the end
Back to top
interwined


Newbie


Joined: 26 Sep 2003
Posts: 39

Posted: 28 Oct 2003 08:56:11 pm    Post subject:


Code:
(A+9)/4->A
Disp A


This code will do the calculation of A+9 then divided by 4 and store it as A. Then it will display A.
Back to top
mehal88


Newbie


Joined: 21 Oct 2003
Posts: 16

Posted: 29 Oct 2003 09:31:51 pm    Post subject:

where do i get mirage os and how do i put it on my calc?...
Back to top
interwined


Newbie


Joined: 26 Sep 2003
Posts: 39

Posted: 29 Oct 2003 10:31:39 pm    Post subject:

You can get it at http://www.ticalc.org/archives/files/fileinfo/139/13949.html then just downloading mirageos.zip. Once downloaded, just send the mirageos.8Xk file to the calculator and it should work. MirageOS will be located under Apps on the calculator.
Back to top
Display posts from previous:   
Register to Join the Conversation
Have your own thoughts to add to this or any other topic? Want to ask a question, offer a suggestion, share your own programs and projects, upload a file to the file archives, get help with calculator and computer programming, or simply chat with like-minded coders and tech and calculator enthusiasts via the site-wide AJAX SAX widget? Registration for a free Cemetech account only takes a minute.

» Go to Registration page
    » Goto page Previous  1, 2, 3, 4, 5  Next
» View previous topic :: View next topic  
Page 2 of 5 » All times are UTC - 5 Hours

 

Advertisement