calling control in report?

hi, is it possible to call a control, such like label, from report. for ex. i have label control named lblTest and .OnPostSection() i want to write smth like that: lblTest.Visible := False; or lblTest.XPos := 100; – regards, Justas

You can not change any properties of controls (Labels, Textboxes, …) in a Report during runtime! You need to make a “workaround” with using different Sections or using TextBoxes instead of Labels … Regards, Jörg Joerg A. Stryk Apollo-Optik, IT/ERP

oh… that’s really sad