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: siven
  • Order by date
  1. siven

    Convert EXE to DLL?????

    Hi, If you use VC++6.0 then create a win32 dynamic link library, in that expose a function i.e export a function x(..) then U can call that function from your exe. If you want the source code ,send your email id I will send it across to you.
  2. siven

    Convert EXE to DLL?????

    Hi, Have a dll with only one exported which will take the exe name which you want to launch . Inside the function use the win32 API ShellExecute(..). Hope U know how to create a DLL. Thanks
  3. siven

    displaying bitmaps

    Hi, You can even use the BITMAP structure. Let me know what specifically you need in this. Thanks.
  4. siven

    Windows Active

    Hi, Use the following code HWND hWnd = GetActiveWindow(); GetWindowText(hWnd,string,lengthofstring); The string will have the active window caption name check it with your window caption name. I think this will solve your problem. Thanks,

Part and Inventory Search

Back
Top