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 SkipVought 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. brzdude

    Message Box with custom icon

    You can also just use the MessageBox method on TApplication. Delphi defines a global variable called "Application". function MessageBox(const Text, Caption: PChar; Flags: Longint = MB_OK): Integer; In any form you can just do: Application.MessageBox(Message, Caption, Flags) Look at the...
  2. brzdude

    Forms and Handles

    As far as I know, if it is a handle for a window that belongs to another process, how do you know that this "process" was written in Delphi?? Once you step "outside" your application, you have to use whatever Windows provides (DLLs, Handles, Win32API, COM, DDE)

Part and Inventory Search

Back
Top