No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
Re: Var num, sum, max, i, average : double, n:integer Begin if (num>0) and (num<=max) then begin for i := 1 to num do begin write ('Enter grade'); readln(grades); end; average := (sum/n); writeln ('The average is' , average); End. Just some questions to point you - where does "num" come … | |
Re: Try type TNewClass = class( TObject ) etc.... every class has to derive from some other base class; hence type TBigButton = class( TButton ) etc..... | |
Re: think you need to get it from the registry see this for more info [url]http://download.microsoft.com/download/e/b/a/eba1050f-a31d-436b-9281-92cdfeae4b45/VolTable.doc[/url] | |
Re: how about this sort of loop note this wont run - it is just pseudo code showing the method only // define the start conditions // size of box xmin = 0 ymin = 0 xmax = 100 ymax = 100 //movement each loop xmove = 1 ymove = 1 … | |
Re: Not sure if this helps but maybe you want to set the WindowState property of the main form to wsMaximized instead of wsNormal |