EVENT Bitmap1_OnPenUpXY(UInt16 X,UInt16 Y)
{
// Return "true" to override default message handling
Char tmp;
Edit1.Text=StrIToA(tmp,X);
return false;
}
for this sample code, I get the error message :
Passing arg 1 of 'StrIToA' makes pointer from integer without a cast
what can I do
Philippe