Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. TheDelphiBeginner

    Control Crystal Reports from a Delphi-written application

    Thank you, it was crpe indeed and I ended up using the following: TfrmReportParams(Screen.Forms[i]).crpReports.CloseWindow; where crpReports is Tcrpe component and Screen.Forms[i]) is the form it is on. It worked, thank you. Didn't find 'minimize' option though. But it is ok.
  2. TheDelphiBeginner

    Keystroke prevention

    Is there a way to intercept Alt+Esc key combination, in a Delphi application? I tried the following: begin if ssAlt in Shift then case Key of 27: begin ShowMessage('Alt + Esc is pressed'); end; end; end; but Key gets a value of '18' (which is 'Alt') during the run-time...
  3. TheDelphiBeginner

    Form order in Delphi

    It looks like in Delphi you can only use z-order property with a TChartSeries component, and not forms.
  4. TheDelphiBeginner

    Form order in Delphi

    Is there any way to find out in which order open forms are? (what's on top of what?) For an application need I'm minimizing all forms by iterating through them using their indexes (which don't appear to be in any particular order and change all the time), then I normalize them again iterating...
  5. TheDelphiBeginner

    Control Crystal Reports from a Delphi-written application

    We use Crystal Reports run-time component. During the application run, when we open a report, it openes in a new window. Can I control that window? Minimize it, for example. Thank you.

Part and Inventory Search

Back
Top