掲示板システム
ホーム
アクセス解析
カテゴリ
ログアウト
Open XMLを使いたいのですが (ID:45777)
名前
ホームページ(ブログ、Twitterなど)のURL (省略可)
本文
Questさん、回答ありがとうございます。 今度は別のところで、別のエラーが出ます。 //++++++++++++++++++++++++++++ TDomNodeList +++++++++++++++++++++++++++++++ constructor TDomNodeList.Create(const NodeList: TList); begin inherited Create; FNodeList := NodeList; end; function TDomNodeList.GetLength: Integer; begin Result := FNodeList.Count; end; function TDomNodeList.IndexOf(const Node: TDomNode): Integer; begin Result := FNodeList.IndexOf(Node); end; {$IFDEF VER230+_OR_CLR} function TDomNodeList.Item(const Index: Integer): TDomNode; begin if (Index < 0) or (Index >= FNodeList.Count) then Result := nil else Result := TDomNode(FNodeList[Index]); end; {$ELSE} function TDomNodeList.Item(const Index: Integer): TDomNode; begin if (Index < 0) or (Index >= FNodeList.Count) then Result := nil else Result := TDomNode(FNodeList.List^[Index]); //ここでエラーが出ます end; [dcc32 警告] W1030 間違ったコンパイル指令 : 'true' [dcc32 エラー] dkAdomCore_4_3.pas(6359): E2017 ポインタ型が必要です [dcc32 エラー] dkAdomCore_4_3.pas(24751): E2017 ポインタ型が必要です [dcc32 エラー] dkAdomCore_4_3.pas(24901): E2017 ポインタ型が必要です [dcc32 エラー] dkAdomCore_4_3.pas(24902): E2017 ポインタ型が必要です [dcc32 エラー] dkAdomCore_4_3.pas(24902): E2017 ポインタ型が必要です [dcc32 エラー] dkAdomCore_4_3.pas(24903): E2017 ポインタ型が必要です [dcc32 エラー] dkAdomCore_4_3.pas(26096): E2017 ポインタ型が必要です [dcc32 致命的エラー] AdomPropertyEditor_4_3.pas(110): F2063 'dkAdomCore_4_3.pas' ユニットはコンパイルできませんでした
←解決時は質問者本人がここをチェックしてください。
戻る
掲示板システム
Copyright 2021 Takeshi Okamoto All Rights Reserved.