Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
T

tibiz

@tibiz
About
Posts
33
Topics
17
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Getting rid of security questions when accessing registry Vista, Win 7 [modified]
    T tibiz

    the content of manifest file is linked to executabe by linker or must be distributed into the same folder where the app's executable is running from?

    tibiZ.net homepage

    C / C++ / MFC question csharp c++ windows-admin security

  • Getting rid of security questions when accessing registry Vista, Win 7 [modified]
    T tibiz

    it's without manifests

    tibiZ.net homepage

    C / C++ / MFC question csharp c++ windows-admin security

  • Getting rid of security questions when accessing registry Vista, Win 7 [modified]
    T tibiz

    no, I can't require from users to turn off the UAC. my app must run at startup like anything other (antivirus, mouse or bluetooth resident, ...). But it won't ...

    tibiZ.net homepage

    C / C++ / MFC question csharp c++ windows-admin security

  • Getting rid of security questions when accessing registry Vista, Win 7 [modified]
    T tibiz

    ok, I disabled any registry checking but my app still won't run at windows startup on Vista and W7 :confused: On XP works properly. Any ideas?

    tibiZ.net homepage

    C / C++ / MFC question csharp c++ windows-admin security

  • Struct Prob
    T tibiz

    try change to this: typedef struct VIRTUAL_BIN { int Type; int Quantity; double Price; } Virtual_Bin;

    tibiZ.net homepage

    C / C++ / MFC c++ debugging learning workspace

  • Getting rid of security questions when accessing registry Vista, Win 7 [modified]
    T tibiz

    Dear developers I'm finishing a simple but useful tool and have a serious problem - when I start my app and access windows registry to create value in RUN key or check if already created (for registering my app to startup) in Vista or 7 it always show a "Do you want to allow...to make changes to your computer?" message which must be confirmed. How can I get rid of this confirmation boxes? When I confirm the needs, the app registeres itself into startup but after restart it don't run. The key and value is already in registry. This problem occurs on Win 7 and Vista, XP is fine. I'm writing to hkey_local_machine/software/microsoft/.../run Need I upgrade my compiler to build versions for Vista or Win 7 which can run as Administrator? I'm using my old but legal VC++ ver7 / 2003 and have C++ 2008 Express too. Thank you

    tibiZ.net homepage

    modified on Monday, March 8, 2010 9:23 PM

    C / C++ / MFC question csharp c++ windows-admin security

  • Catch drag'n'drop event
    T tibiz

    thank for answ. catching the event is more important than getting the WM_DROPFILES target. but will, try.

    tibiZ.net homepage

    C / C++ / MFC csharp adobe question

  • Catch drag'n'drop event
    T tibiz

    Hello Is possible to catch a system event if mouse is in Drag'N'Drop mode? I mean an event when PC user is dragging something between two application f.e. from AcrobatReader to Photoshop and I want catch this event from my app. Or the one possible solution is asynchronously track mouse way and buttons... Thanx

    tibiZ.net homepage

    C / C++ / MFC csharp adobe question

  • Modifying input stream of Video before playing it
    T tibiz

    Thanx, I've done it during today, but created a Source filter (file reader). The transform filter won't work as well

    tibiZ.net homepage

    C / C++ / MFC help csharp algorithms question

  • Supplying new command line parameters to the executable already active
    T tibiz

    may be a solution: you run the app #1 in MSG processing define an own message, f.e. WM_OWNMSG run app #2 handle the command line parameters find/catch the main window of app #1 (f.e. throu FindWindow(...); ) send the cmdline parameters throu SendMessage(FindWindow(...), WM_OWNMSG, (LPARAM)cmdline, (WPARAM)whatWithIt);

    tibiZ.net homepage

    modified on Thursday, July 24, 2008 7:07 PM

    C / C++ / MFC question

  • Modifying input stream of Video before playing it
    T tibiz

    I need some quick help with this problem: I've created a simple video player using DirectShow. When I set playing a video file (f.e. wmv) I need do some file decryption (file is encrypted with own algorithm) before playing the movie stream - during reading data from file into DirectShow's stream buffer. I need some ideas, how can I do this: > Open video file > fread(buffer, bufflen) / apply buffer decryption -> redirect to DirectShow (apply filters, etc.) -> Play Thank you for any support

    tibiZ.net homepage

    C / C++ / MFC help csharp algorithms question

  • Determining if an drang'n'drop event is active
    T tibiz

    How is possible to determine, if a drag'n'drop event is active between two other appliactions or processes. I mean - catching the event globally - that in Windows is at the moment a drag'n'drop event in progress. Thanx a lot

    tibiZ.net homepage

    C / C++ / MFC csharp

  • An interesting problem
    T tibiz

    I used the PeekMessage and tried to create the window in the secondary thread, but still not working. So I placed the whole code, here (sorry for the comments, they are not in ENG)

    tibiZ.net homepage

    C / C++ / MFC help

  • An interesting problem
    T tibiz

    I create a thread in a very simple app, that way: HWND hWnd = CreateWindow(...); DWORD _tid; if((CreateThread(NULL, 0, msgprocessing, hWnd, 0, &_tid)) == NULL) { error(); } // hWnd is the parameter for thread I need tu run message processing in the thread to catch msg's for hWnd window, but it won't work. Everything else is coded correctly. Any ideas why :confused:

    C / C++ / MFC help

  • TcpClient in Visual C++
    T tibiz

    hello, I can help you sending the src of UDP / TCP messenger here, if interested, write me or to a contact on that page

    C / C++ / MFC c++ sysadmin help announcement

  • 2. Questions about PowerDown and Hibernation - need help
    T tibiz

    I tried the way using creating classic HWND window receiving WM_POWERBROADCAST and returning BROADCAST_QUERY_DENY. Problem is - if I create the window and let it invisible, it don't receive any WM_POWEBROADCAST message.

    C / C++ / MFC data-structures help question

  • 2. Questions about PowerDown and Hibernation - need help
    T tibiz

    we can't use visible HWND window in our app, and invisible window don't behave well

    C / C++ / MFC data-structures help question

  • 2. Questions about PowerDown and Hibernation - need help
    T tibiz

    I need to catch Windows PowerDown from a process and block it. This is nicely implemented in MS Outlook 2002 or later (try to power down your computer when MS Outlook is running) 1. How can I catch a Windows PowerDown (or Hibernation) Event without using window (HWND) message queue 2. A way to block or deactivate the PowerDown Any help will realy help, thank you

    C / C++ / MFC data-structures help question

  • Switching off hibernation [modified]
    T tibiz

    bool SetHibState(BYTE state) { HKEY hKey; HKEY hk; if(RegOpenKeyEx(HKEY_LOCAL_MACHINE, SUBKEY, 0, KEY_QUERY_VALUE, &hKey) == ERROR_SUCCESS) { BYTE byteRegData[255]; DWORD dwBufLen = 255; LONG lRet; if((lRet = RegQueryValueEx(hKey, VALNAME, NULL, NULL, byteRegData, &dwBufLen)) == ERROR_SUCCESS) { RegCloseKey(hKey); byteRegData[6]=(BYTE)state; //for(int i=0;i //printf(" %x", byteRegData[i]); if(!RegCreateKey(HKEY_LOCAL_MACHINE, SUBKEY, &hk)) { RegSetValueEx(hk, VALNAME, 0, REG_BINARY, (LPBYTE)byteRegData, (DWORD)dwBufLen); RegCloseKey(hk); } else return false; } else { RegCloseKey(hKey); return false; } } return true; } .... but the problem is, the system won't give any reaction to the change, in power options is still the old setting

    C / C++ / MFC question csharp c++ visual-studio windows-admin

  • Switching off hibernation [modified]
    T tibiz

    Thanx, I know about registry setting. I'm trying using the GLOBAL_POWER_POLICY and if it will not help, maybe the reg. settings. Can you post me the place where to find the reg. entry ?

    C / C++ / MFC question csharp c++ visual-studio windows-admin
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups