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 Mike Lewis 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: rlev
  • Order by date
  1. rlev

    Global Keyboard Hook example?

    Hi Guys, I have a program that start a external win32 app using CreateProcess API. This external app is controlled by keyboard command....what i would like to do is disable the keyboard in this external app. I have search online for answers and I found that a global keyboard hook could do...
  2. rlev

    How to remove the caption and border of a window?

    I spawned an external app. using Createprocess API I want to remove the border of its window. I have search the net and I found some examples using SetWindowLong and GetWindowLong but so far I have not success. Can somebody help? Here is my snippet: childHwnd is the window handle of the...
  3. rlev

    How to redirect console output to a file

    Hi Guys I just solved it using TonHu advice. The information in this link is very useful: http://social.msdn.microsoft.com/forums/en-US/vcgeneral/thread/5a1811ad-2def-4e8c-a07d-884abb5cfd43 2ffat aproach works too but i just wanted to use plain Win apis. Thanks again
  4. rlev

    How to redirect console output to a file

    Thank you Guys. I will try both approaches and I will let you know if it works. Rlev
  5. rlev

    How to redirect console output to a file

    Hi Guys, I spawn a child process using Createprocess API...this part is working fine but now I want to redirect the stderr output of the child process to a file....How I can do that? My code snippet : STARTUPINFO si; PROCESS_INFORMATION pi; memset(&pi...
  6. rlev

    Problem declaring a STL vector in RAD 2009 and Windows 7

    Thanks James, I just figured out that it was a include path problem in the RAD IDE.....now is compiling.
  7. rlev

    Problem declaring a STL vector in RAD 2009 and Windows 7

    I am using Rad Studio 2009 on a windows 7 OS. My code is simple //------------------ #include <vcl.h> #pragma hdrstop #include <vector> #include "Main.h" using namespace std; vector <int> myvector; <==== line that throw error #pragma package(smart_init) #pragma resource "*.dfm" the error...

Part and Inventory Search

Back
Top