Re: type mismatch??? Kategorie: Programmierung (von Tom - 20.12.2003 11:38) | |
Als Antwort auf type mismatch??? von Johannes - 19.12.2003 21:39
| |
Hallo Johannes, hab das ganze gerade mal in ein leeres Projekt kopiert, und bis auf die zwei Funktionen > pReceive(rawdata); > Split(rawdata, 255, dataset); welche ich ja nicht habe bekommen ich keine Fehlermeldung. mfg Tom > Moin, > ich bin's nochmal mit einem neuen Problem. > > Ich habe folgenden Code: > > > string ack; > > type Commands { > string command; > long param1; > long param2; > long param3; > long param4; > } > > thread inbox { > string rawdata; > string dataset[29]; > Commands data; > pReceive(rawdata); > Split(rawdata, 255, dataset); > data.command = dataset[0]; > data.param1 = strx.getNum(dataset[1]); > data.param2 = strx.getNum(dataset[2]); > data.param3 = strx.getNum(dataset[3]); > data.param4 = strx.getNum(dataset[4]); > > ack = data.command; > } > > > Und in der letzten Zeile "ack = data.command;" sagt er "type mismatch". Das ist für mich > unerklärlich, da beides Strings sind. > > Oder übersehe ich da was? Ich wäre sehr für Hilfe dankbar. > > Gru� > Johannes | |
Antwort schreiben Antworten: Re: type mismatch??? (von Johannes - 20.12.2003 14:24) Re: type mismatch??? (von André H. - 21.12.2003 12:08) Re: type mismatch??? (von Johannes - 20.12.2003 14:45) Re: type mismatch??? (von André H. - 20.12.2003 14:58) Re: type mismatch??? (von Johannes - 20.12.2003 18:30) Re: type mismatch??? (von Johannes - 20.12.2003 18:55) Re: type mismatch??? (von André H. - 21.12.2003 12:06) Re: type mismatch??? (von Johannes - 21.12.2003 12:43) |