Zur Übersicht - INFO - Neueste 50 Beiträge - Neuer Beitrag - Suchen - FAQ - Zum CC1-Forum - Zum CC-Pro-Forum

Wichtig: Bevor Du wegen einem Problem mit der CC2 postest, stelle sicher, daß Du
die neueste OS-Version, die neuseste Compiler-DLL und die neuesten Modulversionen benutzt!
Beachte, daß sich auf der CD zur CC2-Unit/Station auch jetzt noch die ältesten Dateien befinden!
Es gelten folgende Anleitung und Regeln: Regeln CC2Net.de-Forum
Zurück zum Artikel  (Blaue Felder sind Pflichtfelder)


Name:   UserID: 
 E-Mail:
Kategorie
Betreff
Homepage:
Link-Titel:
Link-URL:
Cookie für Name, UserID, E-Mail, Homepage-URL setzen
(Erspart die Neueingabe bei Beiträgen und Antworten)
(Zum Löschen des Cookies hier klicken)
Ich nutze:
C-Control II Unit
C164CI-Controllerboard
C-Control II Station
CCRP5 mit CC2-Unit (Conrad Roboter)
CC2-Application-Board
CC2-StarterBoard
CC2-ReglerBoard
eigenes Board
original OS     OSOPT_V2     OSOPT V3.0 OSOPT V3.1

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 !  

> Hallo Bart, > > > First of all, does anybody know a forum which is in English? > > Sorry, there ist no forum in english language. > This ist the (real) only forum for C-Control II. > But, here you can ever write 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; > > } > > It's not realy possible to "copy" all Data of an defines Datatype with one line. > Normaly you must copy each value. > But, there ist a simple trick to copy the whole content of a defines Datatype: > You can use the a modified Version of mem.copypos(). : > <code>inline function _copyBitem(Bitem destination, int destpos, Bitem source, int sourcepos, int len) > { > inline vmcodes.VM_INLINE_SYSCALL+mem.Segment; > inline mem._COPY; > } > function copyBitem(Bitem destination, Bitem source) > { > _copyBitem(destination, 0, source, 0, 4); // len = 4 Bytes (=2 Integers) > }</code> > > Now you can use this function like this: > <code> copyBitem(bitems[0], r);</code> > > André H.
Dateianhang: (.gif, .png., .jpg, .zip, .rar)
max. 256kB
max. 256kB