![]() |
Fehler bei inttostr umwandlung
Hallo,
In meinen Programm komm vor:
Delphi-Quellcode:
wobei leveldat:string ist und freilevel:integer
freilevel:=1;
leveldat:='00'; leveldat[2]:=inttostr(freilevel); Wenn diese Zeile ausgeführt wird kommt der Fehler: [Fehler] Unit1.pas(358): Inkompatible Typen: 'Char' und 'String' Das versteh ich nicht, ich verwende im ganzen Programm kein Char. Kann mir wer weiterhelfen? |
Re: Fehler bei inttostr umwandlung
Du müsstest es in diesem Fall so machen:
Delphi-Quellcode:
freilevel:=1;
leveldat:='00'; leveldat[2]:=inttostr(freilevel)[1]; |
Re: Fehler bei inttostr umwandlung
"leveldat" ist bei dir zwar ein String aber
"leveldat[2]" ist ein Char denn du gibst ja an dass, das 2te Zeischen des Strings zu verwenden ist |
Re: Fehler bei inttostr umwandlung
Hallo,
Danke jetzt gehts. |
Alle Zeitangaben in WEZ +1. Es ist jetzt 23:00 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz