Hi, papy33
As a Swiss Delph-beginner I hope I understood your question.
But please mind OnClose-Events and its close action:
<<
procedure TfFormX.FormClose(Sender: TObject; var Action: TCloseAction);
begin
Action := caFree;//caHide
end;
>>
// Here you just find and close each Screen's...
if you write "RoundTo(14.345, -2)" then the result will be
14.34, not 14.35
You might give a little offset to adjust the result:
"RoundTo(14.345 + 0.0000001, -2)" Result -> 14.35
Does anyone else know how to manage that little detail?
// Example-Prog
procedure...
Sorry, I can't work it out in a reasonable time.
What do you need this component for?
Are there better/other components available?
Please ask other more experienced programmers.
Greetings
Stefan
Hi,
1.)In some cases, the dpk-File(s) (Package-File) have to be opened in the Delphi-IDE.
2.)After that you have to copile the package file.
3.)Add the package.
4.)Close all Files open your project you want to work with
5.)Select the menu (in German: Komponente/Packages installieren)...
procedure TfMain.Button1Click(Sender: TObject);
var aChar: AnsiChar;
begin
aChar := AnsiUpperCase(edtFieldName.Text)[1];//First 'uppercase' of Text/String
(*** Not necessariy anymore ***
case aChar of
'A': data.vector['A'] := StrToInt(edtValue.Text);
'B': data.vector['A'] :=...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.