Forum: Pascal and Delphi Sep 15th, 2005 |
| Replies: 9 Views: 11,319 Re: Emulating a keyboard key press Try checking the Application object to see if it has an available property/method to return the control that has focus...
You can also revise the sample code (above) to check for TCustomEdit... |
Forum: Pascal and Delphi Sep 15th, 2005 |
| Replies: 8 Views: 14,312 |
Forum: Pascal and Delphi Sep 15th, 2005 |
| Replies: 5 Views: 2,327 Re: Creating a program to run under various OS Have you verified which functions failed? I suggest not to use anything that's specific to a particular OS version.
Also, better test your program on each of the OS you need to support. Only way... |
Forum: Pascal and Delphi Sep 7th, 2005 |
| Replies: 1 Views: 3,511 |
Forum: Pascal and Delphi Aug 31st, 2005 |
| Replies: 1 Views: 1,797 Re: Assigning event What was the error message?
I believe that TPanel.OnClick requires a TNotifyEvent. This basically means that your procedure must follow this syntax:
procedure (Sender: TObject) of... |
Forum: Pascal and Delphi Aug 31st, 2005 |
| Replies: 1 Views: 3,511 |