
please wait
by Mimo0Cool
NtQuerySystemInformation ...
|
one of the most powerfull Native-Function (in Ntdll.dll) is NtQuerySystemInformation,, So I want to use it ... but the problem i have is that i don't really kno... |
Apr 10, 2015 at 10:13pm
[3 replies] Last: This is kinda undocumented. The first argument is actually an enum an... (by zdzero)
|
by khadija520
vc++ for resources
|
which visual c++ version supports resources i need to include menus and dialogue boxes |
Apr 10, 2015 at 6:32pm
[1 reply] : They all support resources. VC Express doesn't come with a visual res... (by Texan40)
|
by JAI SINGH
Coblist
|
Hi, I want typecast COblist variable to WPARAM and LPARAM. Is it possible if possible then how and if not then why? ex--> COblist llsource; (WPARAM... |
Apr 10, 2015 at 1:41pm
[2 replies] Last: CObList is a linked list of CObjects I think. You can't typecast an a... (by Texan40)
|
by TheHardew
Get tray icon position?
|
Hi everybody! I'd like to make an app, that uses tray icon. When you click on that icon, window appears, just like in this picture with sound icon: http://g... |
Apr 8, 2015 at 9:31pm
[6 replies] Last: I think they are, they manage different messages, and the only differe... (by TheHardew)
|
by naveen2525
MFC Proj Treat WChar_t AS Built in Type issue
|
I am working with VC++ proj having "Character Set" as "Use Unicode Character Set" and "Treat WChar_t AS Built in Type" as "Yes (/Zc:wchar_t)"in proj settings. W... |
Apr 8, 2015 at 9:43am
[no replies]
|
possible to make a console byte-graphics editor that outputs to C++ syntax? |
sorry if this is spam but... so I'm nowhere near ready to try it yet, but I'm working on a fun little game right now, and I saw examples online of something un... |
Apr 7, 2015 at 8:09am
[no replies]
|
new to MFC, trying to change a label based on an if statement using a button |
hey all, Im new to using visual studio and MFC, i've been trying to use simple functions I know to get a hang of things and make a simple Hello world program wi... |
Apr 2, 2015 at 11:07am
[4 replies] Last: but I guess I could make use of either much more easily than windows... (by freddie1)
|
by Ganado
Following stackoverflow post, INPUT buffer passing
|
Here's a link to the stackoverflow post I copied from: http://stackoverflow.com/a/7492837 Except for changing the x, y, width, and height values, as well as ad... |
Apr 1, 2015 at 6:13pm
[1 reply] : Stuff like this happens to me to sometimes. You see a question posted ... (by Computergeek01)
|
by sumiths
find monitor instance name , device name , resolution and frequency of multiple monitors (VGA and HDMI)
|
hi, In my system multiple monitors are connected (VGA and HDMI). In need to know the monitor instance name , device name , resolution and frequency of eac... |
Apr 1, 2015 at 6:00pm
[3 replies] Last: @ modoran : You are absolutely right, in fact it's the second member ... (by Computergeek01)
|
by khadija520
error invalid conversion from 'void*' to 'TCHAR*'
|
#include <windows.h> #define ID_LIST 1 #define ID_TEXT 2 LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM) ; int WINAPI WinMain (HINSTANCE... |
Apr 1, 2015 at 5:49pm
[1 reply] : calloc returns a void*. Before this return can be assigned to a TCHAR... (by freddie1)
|