プレイ日記
what does type mismatch mean?
1そうだね
プレイ済み
返信[1]
親投稿
mystman12 mystman12
It means you are using a variable incorrectly. For example, when you make a variable, say X, it can be a number, but not a text string. If you try to do X="TEST", you get this error. If you want to make a variable hold a string, you need to put a "$" at the end of the variable name, like this : X$=TEST . You also might be putting text as an argument in a command, like SPSET 3,"WA" would...
0そうだね
プレイ済み
返信[2]
親投稿
OlOOlOOl pi_r_round
The value your code is trying to assign to a variable doesn't match the variable's "type". Variables types are numeric, string, array, etc. These are valid A$="hello" A=42 B$=A$ B=A These are invalid A$=73 A="bye bye" B$=A B=A$
0そうだね
プレイ済み
返信[3]
親投稿
mystman12 mystman12
result in this error. Check to make sure your not putting a string where you need a number, or vise-versa.
0そうだね
プレイ済み
返信[4]
親投稿
TN21 Trinitro21
Look in line 25. That's where it says the error is.
0そうだね
プレイ済み