Für dieses Forum muß Javascript im Browser aktiviert werden!
Kommentar: Einfügen von HTML im Kommentar: Link einfügen: <a href="LINKURL" target="_blank">LINKTITEL</a> Bild einfügen: <img src="BILDURL"> Text formatieren: <b>fetter Text</b> <i>kursiver Text</i> <u>unterstrichener Text</u> Kombinationen sind auch möglich z.B.: <b><i>fetter & kursiver Text</i></b> C2 Quellcode formatieren: <code>Quellcode</code> ASM Quellcode formatieren: <asm>Quellcode</asm> (Innerhalb eines Quellcodeabschnitts ist kein html möglich.) Wichtig: Bitte mache Zeilenumbrüche, bevor Du am rechten Rand des Eingabefeldes ankommst ! > Hi forum, > > I'm a brand new user of the CControl II unit. > Unfortunately I do not speek or write German, although I understand it. > > First of all, does anybody know a forum which is in English? > > Secondly, I'm trying the following code, which results in a type mismatch error on the last line. > Do I understand correctly that the only solution to assign a compound data type to an index in an array is > copying of all the data (bitems[0].x = r.x; bitems[0].y = r.y;)? > > Thanks a lot for your help > > type Bitem > { > int x; > int y; > } > > function boo() > { > Bitem bitems[10]; > Bitem r; > r.x = 5; > r.y = 7; > bitems[0]= r; > }