/ Published in: Delphi
Expand |
Embed | Plain Text
procedure TForm1.Button4Click(Sender: TObject); var I: Integer; S: String; W: Word; B: Boolean; D: Double; begin ShowMessage(VarTypeAsText(VarType(I))); ShowMessage(VarTypeAsText(VarType(S))); ShowMessage(VarTypeAsText(VarType(W))); ShowMessage(VarTypeAsText(VarType(B))); ShowMessage(VarTypeAsText(VarType(D))); end;
You need to login to post a comment.
