Page Orientation
Hi.. i have some problem.
I made a dialog box in my report.
Let's say dialog box with button "OK" or "Cancel"
"OK" : Page1.Orientation := [poLandspace];
"Cancel" : Page1.Orientation := [poPotrait];
There is an error " undeclare identifier " on poLandspace?
How i change orientation in code??
I made a dialog box in my report.
Let's say dialog box with button "OK" or "Cancel"
"OK" : Page1.Orientation := [poLandspace];
"Cancel" : Page1.Orientation := [poPotrait];
There is an error " undeclare identifier " on poLandspace?
How i change orientation in code??
Comments
and don't use []
1. Page1.Orientation := poLanscape;
2. page1.Orientation := poLandscape;
3. Page1.Orientation := poPotrait;
All three code are Undeclare identifier. I Use fastScript 1.7.
Is there any missing code?
not in IDE Delphi. So the error must came from Fast Report compiler or something..
Thank you