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 Chris Miller 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: Hubba
  • Order by date
  1. Hubba

    C++ to Delphi

    This is what I needed... var h: hwnd; begin h := FIndWindow(nil, PCHar('Forma')); if h <> 0 then begin SetForegroundWIndow(h); keybd_event(VK_CONTROL,0,0,0); keybd_event(VK_MENU,0,0,0); keybd_event(ORD('A'),0,0,0); keybd_event(ORD('A'),0,KEYEVENTF_KEYUP,0)...
  2. Hubba

    C++ to Delphi

    sggaunt Thanks for taking the time, If I get it I will post the answer here.
  3. Hubba

    C++ to Delphi

    Nor exactly what Im looking for sggaunt, I need to pass a SendMessage set of keys to another app like (Ctrl+A) or something
  4. Hubba

    C++ to Delphi

    I have been tryin to convert a piece of C++ code to delphi for some time now, Can anyone help? //---------------------------------------------------------- // MsgSetHandler() // // Sets the handler for a particular message. In the context of MMB, a &quot;handler&quot; // is a keystroke that...
  5. Hubba

    Media player in a dll

    I know Im way off, Please atleast point me in the right direction...
  6. Hubba

    Media player in a dll

    Hi all, Im a newbe so beware... I have been using Multimedia Builder for quite some time, this app uses dll files and Im tryin to make one, a simple mp3 dll (open,play),Im using the MediaPlayer in delphi 7 (will probably get something better later) but this is what I have so far...

Part and Inventory Search

Back
Top