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: *

  • Users: feen
  • Order by date
  1. feen

    How to get handle to programs that is in taskbar?

    I can get list of all top-level windows. Searched the help and just now found a little unnecessary thing in program's code: I used "(IsWindowVisible(hWnd)=true) or (IsIconic(hwnd))" instead of "(IsWindowVisible(hWnd)=true)". (Really don't know why I added IsIconic there.) And that allowed to add...
  2. feen

    How to get handle to programs that is in taskbar?

    I need to get handle to all programs in taskbar for moving, resizing, etc them later. I can get a list of all visible windows, but the problem is that program puts in the list also windows that aren't on the taskbar (for example if delphi isn't minimized, in the list can be found these...
  3. feen

    RegisterHotKey isn`t working

    Hi! I want to control my app while i'm working with other programs. Tried it with RegisterHotKey function but it isn't working. And I don't know why. const id_SnapShot=101; procedure TForm1.WMHotKey (var Msg : TWMHotKey); begin if Msg.HotKey = id_SnapShot then ShowMessage('GotIt'); end...
  4. feen

    Making form without Forms.pas

    I want to make a program without using unit Forms.pas and Classes.pas. I have sample with some Edits and Buttons, but I don't understand how to create a Combo Box! I create combo box but when I open it program closes. How I can write some strings in it (I think program stops because there is no...

Part and Inventory Search

Back
Top