Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #4K
~1K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums
Favorite Tags

3 Posted Topics

Member Avatar for StanRogo

Ok I see a small issue with the following code: [CODE] if cbOperation.items.text = 'add' then total:=num1+num2; if cbOperation.items.text = 'subtract' then total:=num1-num2; if cbOperation.items.text = 'multiply' then total:=num1*num2;[/CODE] it should read as follows: [CODE]if cbOperation.text = 'add' then total:=num1+num2; if cbOperation.text = 'subtract' then total:=num1-num2; if cbOperation.text = 'multiply' …

Member Avatar for StanRogo
0
214
Member Avatar for Petrica7

So the configuration of your program will it change in the future or does it contain static never changing values? In the environment that I work in it is not a good idea to include configuration values in the .exe since the location of this file is normally protected by …

Member Avatar for NotNil
0
204
Member Avatar for NotNil

I am experimenting with the use of WMI from within Delphi. Appears quite simple really however I am running into a problem where the amount of memory used by my application keeps growing. In my sample code below the SendPing() function is executed once every second by a TTimer.... each …

Member Avatar for NotNil
0
884

The End.