active questions tagged win32 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T05:19:03Zhttp://stackoverflow.com/feeds/tag/win32http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1885171/where-is-the-msdn-documentation-on-multi-process-window-ownership-for-win32-chr1Where is the MSDN documentation on multi-process window ownership for win32? (chrome uses this)drudru2009-12-11T00:57:04Z2009-12-11T01:16:22Z
<p>where is the MSDN documentation that describes how multiple processes can control and own other windows in other processes like Google chrome?</p>
http://stackoverflow.com/questions/1885064/how-can-i-customize-s-has-encountered-a-problem-and-needs-to-close5How can I customize "%s has encountered a problem and needs to close"?Integer Poet2009-12-11T00:27:51Z2009-12-11T00:59:30Z
<p>Every Windows developer is all too familiar with an alert of the form:</p>
<blockquote>Foo.exe has encountered a problem and needs to close.</blockquote>
<p>I am resigned to my apps blowing up from time to time (only during development of course), but when they do, I don't want to see "Foo.exe" here. I want to see a "friendly" name such as "FooBrowser™".</p>
<p>I've searched the MSDN documentation high and low for a way to override this string and not found it. And I've conducted lots of experiments to see if I could stumble across the mechanism without any luck. However, when I search the web for "has encountered a problem and needs to close", I see lots of folks discussing instances preceded by a friendly name, and I doubt they're all replacing the entire alert with their own. :-)</p>
<p>I need this to work for native Win32 applications; .NET ain't an option. The set of examples I see discussed on the web includes Microsoft Internet Explorer (a native app) and Microsoft Works (which I assume is still a native app although it's been four eons since I saw it).</p>
<p>What's the secret handshake?</p>
http://stackoverflow.com/questions/1884722/is-there-a-way-to-wait-for-a-listening-socket-on-win320Is there a way to wait for a listening socket on win32?arolson1012009-12-10T23:04:50Z2009-12-10T23:38:47Z
<p>I have a server and client program on the same machine. The server is part of an application- it can start and stop arbitrarily. When the server is up, I want the client to connect to the server's listening socket. There are win32 functions to wait on file system changes (ReadDirectoryChangesW) and registry changes (RegNotifyChangeKeyValue)- is there anything similar for network changes? I'd rather not have the client constantly polling.</p>
http://stackoverflow.com/questions/1882609/controlling-width-layout-in-clistctrl-icon-view0Controlling width/layout in CListCtrl (Icon view)John2009-12-10T17:28:25Z2009-12-10T21:37:43Z
<p>Apart from the fact I still can't see why this class fills columns and scrolls horizontally, rather than filling rows and scrolling vertically, I'm confused how the width of items is controlled. I'm seeing quite a lot of padding (50-80 pixels) between the longest item in a column and the next column which means wasted space.</p>
<p>Is it controllable?</p>
http://stackoverflow.com/questions/1882351/can-sendmessage-return-early-if-the-receiving-thread-starts-pumping-messages1Can SendMessage return early if the receiving thread starts pumping messages?phil2009-12-10T16:51:58Z2009-12-10T20:49:15Z
<p>How precisely does windows decide that SendMessage should return- that is, how does it decide the receiving thread has finished processing the sent message?</p>
<p>Detailed scenario:
I've got thread A using SendMessage to send a thread to thread B. Obviously SendMessage doesn't return until thread B finishes processing the message. Thread B pops up a dialog box and starts pumping messages. In my scenario, there is a WM_KILLFOCUS message on the queue which gets pumped by thread B. This results is a WM_COMMAND message on thread B. Thread B passes this WM_COMMAND message to the default window proc. When it does this, SendMessage returns back to thread A, even though the original message hasn't finished processing yet! What is going on? It looks like somehow the default window proc is confusing windows into thinking the original sent message is finished.</p>
<p>So are there known scenarios where pumping messages and calling the default window proc can trick SendMessage into returning?</p>
<p>Thanks!
Phil</p>
http://stackoverflow.com/questions/1882982/netsharegetinfo-and-access-level-win32-c0NetShareGetInfo and Access Level? (Win32/C++)Zenox2009-12-10T18:20:58Z2009-12-10T18:20:58Z
<p>I'm wondering if the method NetShareGetInfo requires the same level of access, reguardless of the level you are requesting. For example SHARE_INFO_0 returns just the shi0_netname where SHARE_INFO_2 the shi2_netname, shi2_type, shi2_remark, shi2_permissions, shi2_max_uses, shi2_current_uses, shi2_path and shi2_passwd. Some of these items seem like they would be more secure than the SHARE_INFO_0, however I don't see any documentation stating anything like this?</p>
<p>Does anyone know if this would be the case?</p>
http://stackoverflow.com/questions/1882180/shellexecute-hangs-waiting-for-response-to-dde-broadcast0ShellExecute hangs - waiting for response to DDE broadcast?Nick2009-12-10T16:22:12Z2009-12-10T16:22:12Z
<p>This problem is related to the <a href="http://stackoverflow.com/questions/177559/getting-rid-of-the-evil-delay-caused-by-shellexecute"><strong>Evil delay</strong></a> question, except that my delay is not in launching the application but in waiting for ShellExecute to return.<br>
I have a small dialog application (Win32, written in VC++ 6, running on WinXP) that spawns a worker thread which writes to a logging text file. The thread exchanges information with the main dialog, which <a href="http://blogs.msdn.com/oldnewthing/archive/2006/02/10/529525.aspx" rel="nofollow">Raymond says</a> will use a hidden window.</p>
<p>However, I disable my dialog (just refreshing it with progress details) until the worker thread has terminated. Only then is the user able to click on the "inspect log" button which calls ShellExecute to display the log file. The application (<a href="http://www.textpad.com/" rel="nofollow">TextPad</a>) that opens the text file uses DDE so that if an instance is already running, it simply opens the file in that one. I then find that I can't close my application until I close TextPad.</p>
<p>Is it possible that I still have a hidden window that doesn't respond to the initial DDE broadcast message, even though my thread has terminated? I've read the warning about <b>CoInitialize</b> in Raymond's piece, and I don't call that function explicitly.</p>
<p>Can anyone suggest how I should proceed?</p>
http://stackoverflow.com/questions/1874262/c-c-c-force-window-to-be-on-top1C/C++/C# Force window to be on topLevo2009-12-09T14:28:07Z2009-12-10T10:19:27Z
<p>Is the there a way to force <strong><em>another</em></strong> window to be on top? <em>Not</em> the application's window, but <em>another</em> one, already running on the system. (Windows, C/C++/C#)</p>
http://stackoverflow.com/questions/1475662/how-to-get-process-in-windows-mobile0How to get Process in windows mobileGrabIt2009-09-25T06:02:57Z2009-12-10T07:00:04Z
<p>Hi,</p>
<p>i want to get the running process in .net compact framework windows mobile..
i want to kill the running process.. but i know process.GetProcessesByName() function
is present in desktop, but for mobile its not supported i think so..
please let me know how to kill the presently running process in c# windows mobile.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1868642/100-khz-timer-frequency-in-windows-xp4100 kHz Timer Frequency in Windows XPc4c2009-12-08T17:45:15Z2009-12-10T03:01:48Z
<p>There's a popular hobby level CNC machine tool control that operates in Windows XP and it has a timer that operates at a user selectable rate ranging from 25 kHz up to 100 kHz.</p>
<p>It just so happens that I also build CNC machine tool controllers but I have been using a Galil Motion Control Inc. DMC1800 series DSP motion controller board which I control with my upper level program. There are prospective buyers that cannot afford that configuration so I wrote another application which I plan to offer as software based control package. The application is complete with the exception that I have no timer. (MS Multi-Media Timer is NOT sufficient.)</p>
<p>I have been pursuing this for over two years without results so I have decided to ask for HELP. To avoid any confusion I'm referring to a periodic timer that is capable of operating at a frequency of 100 kHz and not a stopwatch timer.</p>
<p>I would really appreciate some help with this,</p>
<p>C4C</p>
http://stackoverflow.com/questions/1858727/connecting-and-fetching-a-record-form-sequel-server-20050Connecting and Fetching a record form sequel server 2005. Ravi shankar2009-12-07T08:55:35Z2009-12-09T23:10:32Z
<p>I have a windows application in visual C++. I am not using MFC, in this application I have connect to SQL server 2005 and fetch records form a database file. Can any one guide me how this can done. Thanks in advance.</p>
http://stackoverflow.com/questions/1876302/how-to-use-win32s-bitblt-using-ruby0How to use Win32's BitBlt using Ruby?Jian Lin2009-12-09T19:39:50Z2009-12-09T19:56:01Z
<p>Does anyone know how to use Win32's BitBlt() using Ruby? It seems like you need to use a destination DC (device context) and how can Ruby handle that? I use GetPixel() and it is really slow even to get 100 pixels (takes about 10 seconds). thanks.</p>
http://stackoverflow.com/questions/1870933/createprocess-with-redirection-access-denied-on-the-output-pipe0CreateProcess with redirection access denied on the output pipeilya17252009-12-09T00:48:12Z2009-12-09T18:57:29Z
<p>Hello:</p>
<p>I have a simple code running in a DLL called from MFC application. Generally it implements the example that is shown in msdn article - <a href="http://msdn.microsoft.com/en-us/library/ms682499%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms682499%28VS.85%29.aspx</a>. Except I just want to create any process (say shell script). All the process creation is done fine with no errors. However, ReadFile with the output pipe always fails with error <strong>5:Access is denied</strong>. Making the same calls in a regular Win32 console application runs fine.</p>
<p>Please help.
-Ilya.</p>
http://stackoverflow.com/questions/1532890/programatically-setting-a-png-to-a-picture-control-in-win32-apis2Programatically setting a PNG to a Picture Control in Win32 APIsJonathan2009-10-07T16:59:15Z2009-12-09T17:35:58Z
<p>I use Visual Studio 2008, I have the PNG file loaded in the Resource View, assigned it IDB_BANG_PNG.</p>
<p>The Picture Control is called IDC_STATIC15.</p>
<p>I am having trouble trying to get the PNG loaded into the picture control.</p>
<pre><code>LRESULT CALLBACK DialogProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
{
// Way of loading a bmp with a mask perhaps? Or a PNG file programatically?
static HBRUSH hBrushStatic;
HBITMAP hBmp = LoadBitmap(hDlg,MAKEINTRESOURCE(IDB_BANG_PNG));
switch(message)
{
case WM_INITDIALOG:
CheckDlgButton(hDlg, IDC_CHECK, FALSE);
EnableWindow(GetDlgItem(hDlg, IDOK), FALSE);
// Bitmap version is IDB_BANG, PNG is at IDB_BANG_PNG
// IDC_STATIC15 is the picture frame
HWND item = GetDlgItem(hDlg,IDC_STATIC15);
SendMessage(item,STM_SETIMAGE,IMAGE_BITMAP,(LPARAM)hBmp);
return TRUE;
// .... snip
</code></pre>
<p>I am rather naive when it comes to Win32/GUI development, doing a quick project and got stuck her, any help is appreciated.</p>
http://stackoverflow.com/questions/1874578/c-c-c-setwindowpos-window-on-top-of-others2C/C++/C# SetWindowPos: Window on top of othersLevo2009-12-09T15:18:43Z2009-12-09T15:36:04Z
<p>I would like someone to give a working example of <a href="http://msdn.microsoft.com/en-us/library/ms633545%28VS.85%29.aspx" rel="nofollow">SetWindowPos</a> on how to make a window "topmost" (be on top and stay there) using either C/C++/C#. Thanks in advance!</p>
http://stackoverflow.com/questions/1718430/default-wmdestroy-not-properly-cleaning-up-child-windows0default WM_DESTROY not properly cleaning up child windowsPaulH2009-11-11T22:13:34Z2009-12-09T14:50:09Z
<p>I have a WTL 8.0 SDI application for Windows Mobile 5. In this contrived example below, I create a view, destroy it, then re-create it. But, when it's re-created assertions in the WM_INITDIALOG handler fail because the control's HWND isn't valid.</p>
<p>I note that I can fix this by handling WM_DESTROY in CMyView and manually destroying every child control. But, I didn't think I should have to. <a href="http://msdn.microsoft.com/en-us/library/aa922178.aspx" rel="nofollow">MSDN even says</a>:</p>
<blockquote>
<p>This message is sent first to the
window being destroyed and then to the
child windows (if any) as they are
destroyed.</p>
</blockquote>
<p>Anybody have an idea as to what's going on?</p>
<p>Edit: If I handle <a href="http://msdn.microsoft.com/en-us/library/ms632636%28VS.85%29.aspx" rel="nofollow">WM_NCDESTROY</a> in CMyView, all of the the child control handles are still valid! (<code>some_control_.IsWindow()==TRUE</code>) That's not how it's supposed to be...</p>
<p>Thanks,
PaulH</p>
<pre><code>class CMyView : public CDialogImpl< CMyView >,
public CWinDataExchange< CMyView >
{
// <snip> Message Map and other standard WTL macros </snip>
LRESULT OnInitDialog( UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/ )
{
DoDataExchange( FALSE );
// assertion fails within the SetWindowText() call
// atlwin.h line 876
// ATLASSERT(::IsWindow(m_hWnd));
some_control_.SetWindowText( _T( "Foo" ) );
return 0;
};
private:
CEdit some_control_;
}; // class CMyView
class CMainFrame : public CFrameWindowImpl< CMainFrame >,
public CUpdateUI< CMainFrame >,
public CMessageFilter,
public CIdleHandler
{
public:
// <snip> Message Map and other standard WTL macros </snip>
BOOL CMainFrame::PreTranslateMessage( MSG* pMsg )
{
if( CFrameWindowImpl< CMainFrame >::PreTranslateMessage( pMsg ) )
return TRUE;
return my_view_.PreTranslateMessage( pMsg );
};
LRESULT OnCreate( UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/ )
{
CMessageLoop* pLoop = _Module.GetMessageLoop();
ATLASSERT( pLoop != NULL );
pLoop->AddMessageFilter( this );
pLoop->AddIdleHandler( this );
m_hWndClient = my_view_.Create( m_hWnd );
my_view_.DestroyWindow();
m_hWndClient = my_view_.Create( m_hWnd );
};
private:
CMyView my_view_;
}; // class CMainFrame
</code></pre>
http://stackoverflow.com/questions/1872748/no-mfc-equivalent-of-afxgetthreadstate-in-vc0No-MFC equivalent of AfxGetThreadState in vc++whoi2009-12-09T09:48:36Z2009-12-09T13:23:22Z
<p>Hi;
I am porting a MFC application to Win32 one, I need to get </p>
<p><code>AfxGetThreadState()->m_lastSentMsg</code> </p>
<p>value in Win32, I searched but could not find anything, your help is appreciated. </p>
http://stackoverflow.com/questions/1854623/how-to-get-the-x-y-coordinate-of-a-mouse-click-with-win32-c-on-a-directx-object1How to get the x,y coordinate of a mouse-click with win32 C++ on a directx object?Chris2009-12-06T07:14:23Z2009-12-09T10:49:32Z
<p>How can I get the x,y coordinate of a mouse click, to see if it is over my menu button drawn by directx? Currently, my codebase has the following mouse-related class that doesn't seem to be able to give me this..I'm not sure how this might work.</p>
<pre><code>InputMouse::InputMouse() :
m_LastX(-1),
m_LastY(-1)
{
m_MouseActionEvent.clear();
}
InputMouse::~InputMouse()
{
}
void InputMouse::PostUpdate()
{
m_CurrentAction.clear();
}
bool InputMouse::IsEventTriggered(int eventNumber)
{
for (unsigned int i = 0; i < m_CurrentAction.size(); i++)
{
if (m_MouseActionEvent.size() > 0 && m_MouseActionEvent[m_CurrentAction[i]] == eventNumber)
{
return true;
}
}
return false;
}
void InputMouse::AddInputEvent(int action, int eventNumber)
{
m_MouseActionEvent[action] = eventNumber;
}
void InputMouse::SetMouseMouse(int x, int y)
{
if (m_LastX != -1)
{
if (x > m_LastX)
{
m_CurrentAction.push_back(MOUSE_RIGHT);
}
else if (x < m_LastX)
{
m_CurrentAction.push_back(MOUSE_LEFT);
}
if (y > m_LastY)
{
m_CurrentAction.push_back(MOUSE_UP);
}
else if (y < m_LastY)
{
m_CurrentAction.push_back(MOUSE_DOWN);
}
}
m_LastX = x;
m_LastY = y;
}
</code></pre>
http://stackoverflow.com/questions/1865453/simulate-fullscreen0Simulate fullscreenTobias Langner2009-12-08T08:14:43Z2009-12-09T08:06:29Z
<p>Hi,</p>
<p>I've seen an application that simulates a fullscreen application by removing the title bar and the window borders. I've done some research and found getWindowLongPtr() for that.</p>
<p>Now my question: How can I find and identify the application and get the appropriate window handle? How can I distinguish multiple instances of the application (running from different locations on disc)?</p>
<p><hr></p>
<p>Just to make "simulate" more precise. If you make an application go fullscreen and you click on a different monitor, it minimizes itself. If the application runs in a window and you click on a different monitor, the window is not changed. If you remove the borders of the window and position it on the left or right monitor, you can still work with the other monitor without minimizing the application. Still it looks like the application running fullscreen on one of the monitors.</p>
<p><hr></p>
<p>As an example: you can set Eve (www.eveonline.com) to fullscreen and windowed mode. In fullscreenmode you can not click on a second monitor without Eve minimizing itself. In window mode you can. There are tools like evemover that allow you to setup your window on one monitor, looking like fullscreen, but being in window mode. That's what I want to archieve. Evemover actually provides some of it's source code, that's why I know that removing the border and setting the position is done using the Win32-API with setWindowLongPtr and setWindowPos.</p>
http://stackoverflow.com/questions/1867174/divx-decoder-libraries0DivX Decoder libraries?Chris Becke2009-12-08T14:04:52Z2009-12-08T19:23:33Z
<p>I saw, in an application from a major software vendor a dll called "DivXDecoder.dll" - which intrigued me as (a) it implies the existence of an easy to use divx library, and (b) I'd rather like to play divx compressed movies in a product I work on.</p>
<p>The DivX project itself seems to concentrate on making Codecs and tools for end users. Are there any C/C++ friendly projects that make playback of divx content in Win32 or Cocoa apps possible?</p>
http://stackoverflow.com/questions/1863158/message-map-in-win32-no-mfc1Message Map in Win32 No-MFC whoi2009-12-07T21:49:06Z2009-12-08T00:23:19Z
<p>How could I create similar structure to handle Win32 Messages like it is in MFC?</p>
<p>In MFC;</p>
<pre><code>BEGIN_MESSAGE_MAP(CSkinCtrlTestDlg, CDialog)
//{{AFX_MSG_MAP(CSkinCtrlTestDlg)
ON_BN_CLICKED(IDC_BROWSE, OnBrowse)
ON_BN_CLICKED(IDC_DEFAULTSKIN, OnChangeSkin)
ON_WM_DRAWITEM()
ON_WM_MEASUREITEM()
ON_WM_COMPAREITEM()
ON_BN_CLICKED(IDC_CHECK3, OnCheck3)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
</code></pre>
<p>BEGIN_MESSAGE_MAP macro handles this behaviour. What to do for pure Win32? </p>
http://stackoverflow.com/questions/1793876/encryptmessage-returns-seceinvalidtoken0EncryptMessage returns SEC_E_INVALID_TOKENBruce2009-11-25T00:14:35Z2009-12-07T23:16:04Z
<p>Hi</p>
<p>When using the EncryptMessage (SChannel) from the win32 API with a valid context, I am supplying the four buffers in the correct order I get the SEC_E_INVALID_TOKEN response which according to the documentation is No SECBUFFER_DATA type buffer was found. I know that the set of pvBuffers should be allocated from contiguous memory for speed but for simplicity I have made it obvious what is what. Can anyone see what the problem could be?</p>
<p>Thanks,
Bruce</p>
<p>The code is the following;</p>
<pre><code>procedure TTCPSocket.SSPEncryptBuffer(SSPCtx: PCtxtHandle; InData: PAnsiChar; InDataLength: Cardinal);
var
SecStatus: TSecurityStatus;
SecBufDesc: TSecBufferDesc;
SecBufs: packed array [0 .. 3] of TSecBuffer;
begin
SecBufs[0].BufferType := SECBUFFER_STREAM_HEADER;
SecBufs[0].cbBuffer := FSecPkgSizes.cbHeader;
SecBufs[0].pvBuffer := AllocMem(FSecPkgSizes.cbHeader);
SecBufs[1].BufferType := SECBUFFER_DATA;
SecBufs[1].cbBuffer := InDataLength;
SecBufs[1].pvBuffer := InData;
SecBufs[2].BufferType := SECBUFFER_STREAM_TRAILER;
SecBufs[2].cbBuffer := FSecPkgSizes.cbTrailer;
SecBufs[2].pvBuffer := AllocMem(FSecPkgSizes.cbTrailer);
SecBufs[3].BufferType := SECBUFFER_EMPTY;
SecBufs[3].cbBuffer := 0;
SecBufs[3].pvBuffer := nil;
SecBufDesc.ulVersion := SECBUFFER_VERSION;
SecBufDesc.cBuffers := 4;
SecBufDesc.pBuffers := @SecBufs[0];
SecStatus := EncryptMessage(SSPCtx, 0, @SecBufDesc, 0);
if SecStatus <> SEC_E_OK then
begin
// Error code..
end;
end;
</code></pre>
<p>I used STRACE injected into the executable and this line looks interesting;</p>
<pre><code>12/07/2009 23:10:30:635 - SecBuffer #0 BufferType:0x00000007 cbBuffer:5
12/07/2009 23:10:30:636 - SecBuffer #1 BufferType:0x00000001 cbBuffer:13
12/07/2009 23:10:30:636 - SECBUFFER_DATA - 13 byte(s) / EncryptMessage - INPUT
=====================================================
00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f 0123456789abcdef
0000: 68 65 6c 6c 6f 20 77 6f 72 6c 64 21 00 hello world!.
=====================================================
12/07/2009 23:10:30:636 - SecBuffer #2 BufferType:0x00000006 cbBuffer:36
12/07/2009 23:10:30:636 - SecBuffer #3 BufferType:0x00000000 cbBuffer:0
12/07/2009 23:10:30:636 -
*** WARNING : EncryptMessage failed (80090308) ***
</code></pre>
<p>Which looks as though the OS is getting the correct information.</p>
<p>I have searched a bit and found that 80090308 usually means something wrong with the certificate in that the full name of the server should be in the subject, CN=www.foobar.com but this didn't fix the problem either, the certificate and CA are generated with OpenSSL.</p>
http://stackoverflow.com/questions/1861506/prevent-modal-dialog-on-win32-process-crash3Prevent Modal Dialog on win32 process crashddevienne2009-12-07T17:27:51Z2009-12-07T20:59:53Z
<p>We have a legacy build infrastructure for nightly builds (implemented in Perl) to compile, link and unit tests our applications/plugins. On Windows, if the unit testing process crashes, this pops up a Modal Dialog which "locks" our build farm.</p>
<p>Is there a way (win32 API call, system config, env var, something...) to disable this behavior to have the child process terminate immediately on crashes, with no Modal Dialog and a non-zero exit status instead?</p>
<p>Thanks, --DD</p>
<p>PS: We compile with SEC (Structured Exception Handling) on Windows, to be able to "catch" crashes using catch (...), therefore avoiding this issue most of the time, but sometime that's not enough, since of course some crashes are not recoverable (if they corrupted the stack for example).</p>
http://stackoverflow.com/questions/1478003/how-to-detect-whether-a-monitor-is-widescreen-in-windows1How to detect whether a monitor is widescreen in Windowsggambett2009-09-25T15:28:45Z2009-12-07T14:00:07Z
<p>I need a way to programatically detect whether the monitor is wide or not, in Windows.</p>
<p>GetSystemMetrics returns the size of the desktop, which sort of works, but if an user has a widescreen monitor at, say, 1024x768, I'll incorrectly classify it as non-wide.</p>
<p>GetDeviceCaps has similar problems with HORZRES and VERTRES, and even HORZSIZE AND VERTSIZE give incorrect results when a non-wide resolution is used in a wide monitor.</p>
<p>Is there any way to detect this reliably?</p>
http://stackoverflow.com/questions/1857247/how-do-you-write-to-an-xml-file-in-win32-c1How do you write to an xml file in win32 C++?Mark2009-12-07T01:12:02Z2009-12-07T13:09:52Z
<p>I would like to write a simple xml file using <code>xmllite</code> in <code>win32 c++</code>. the file will be saved over every time the user saves. How do I do this? I'd rather not include any new libraries for this...</p>
http://stackoverflow.com/questions/1858141/is-unregisterhotkey-important-for-clean-up0Is UnregisterHotKey() important for clean up?John2009-12-07T06:12:20Z2009-12-07T08:08:05Z
<p>Simple question I think, after I have registered a few system-wide hotkeys with RegisterHotKey() do I need to eventually call UnregisterHotKey() to clean them up, or can I simply exit my application without worrying about it?</p>
<p>MSDN doesn't seem to say, that or I misunderstand it, anyways: I realize I should just go ahead and call UnregisterHotKey to be safe, but if anyone knows otherwise it'd be useful just to know, for knowings sake.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1851078/random-bytes-with-fread0Random bytes with freadkelton522009-12-05T03:45:30Z2009-12-07T07:31:47Z
<h1>#post</h1>
<h2>The names of my variables are not imporant! This code will be deleted when it works!</h2>
<h1>#post</h1>
<p>Alright, so I'm using fread in stdio.h to read a text file. The problem is that I keep
reading random bytes that don't exist in the text file from my knowledge.
I'm assuming they are part of files scheme, but I just wanna make sure it's not my code.</p>
<pre><code>#include "stdafx.h"
#ifdef WIN32
#include <io.h>
#else
#include <sys/io.h>
#endif
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <stdio.h>
#include "n_script_timer.h"
//using namespace std;
#ifdef _INC_WCHAR
typedef wchar_t CHR;
#else
typedef char CHR;
#endif
int _tmain(int argc, CHR* argv[])
{
#ifndef _DEBUG
if(argc == 1)
{
printf("You must drag a file onto this program to run it.");
scanf("%*c");
return 0;
}
CHR* fname = argv[1];
#else
#ifdef _INC_WCHAR
const CHR fname[16] = L"f:\\deleteme.bin";
#else
const CHR fname[16] = "f:\\deleteme.bin";
#endif
#endif
FILE* inFile;
long len;
struct Script_Timer a;
//static const int bsize = 4096*6;
static const int bsize = 84;
typedef CHR chhh[bsize];
int alen;
printf("#Opening File '%s' ...\n",fname);
#ifdef _INC_WCHAR
if((inFile = _wfopen(fname,L"rb")) == NULL)
#else
if((inFile = fopen(fname,"r")) == NULL)
#endif
{
printf("Error opening file '%s' ",fname);
return 0;
}
fseek(inFile,SEEK_SET,0);
#ifdef _WIN32
len = _filelength( inFile->_file );
#else
len = _filelength(inFile->_fileno);
#endif
printf(" !FileLength: %d\n",len);
printf("#Creating Buffers...\n");
if(((float)len/(float)bsize) > (len/bsize))
{
alen = (len/bsize) + 1;
}
else alen = (len/bsize);
#ifdef WIN32
//chhh *cha = new chhh[alen];
chhh cha[alen];
#else
chhh cha[alen];
#endif
printf("#Reading File...\n");
Start_ST(&a);
int i = 0;
for(i=0;i<alen;++i)
{
fread(&cha[i],sizeof(CHR),bsize,inFile);
printf("[%i]%s",i,cha[i]);
}
End_ST(&a);
fclose(inFile);
printf("Characters per millisecond: %f \n",((float)len/a.milliseconds));
printf("Characters per second: %f \n",((float)len/a.milliseconds) * 1000);
scanf("%*c");
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1857292/how-do-you-get-the-location-in-x-y-coordinate-pixels-of-a-mouse-click1How do you get the location, in x-y coordinate pixels, of a mouse click?Mark2009-12-07T01:26:28Z2009-12-07T01:33:30Z
<p>In C++ (WIN32), how can I get the (X,y) coordinate of a mouse click on the screen?</p>
http://stackoverflow.com/questions/1835749/win32-text-drawing-puzzle0Win32 Text Drawing PuzzleBillyONeal2009-12-02T20:56:29Z2009-12-07T01:20:30Z
<p>Hello :)</p>
<p>I've got a little text drawing puzzle under Win32. I'm trying to draw some instructions for users of my application at the top of the window.</p>
<p>Please refer to the following window (I've changed the background color on the text so you can see the boundaries)</p>
<p><img src="http://billy-oneal.com/forums/12-2-2009%203-46-15%20PM.png" alt="Demonstration"></p>
<p>I'm currently using DrawTextEx to draw the text to my window, but the problem is that it does not fill the entire RECTangle that I give it. Not drawing that area is just fine, until the window resizes:</p>
<p><img src="http://billy-oneal.com/forums/12-2-2009%203-51-45%20PM.png" alt="Demonstration after resize"></p>
<p>When the text is re wrapped due to the window sizing, because DrawTextEx doesn't clear it's background, these artifacts are leftover.</p>
<p>I tried using FillRect to fill in the area behind the text drawing call, which does eliminate the visual artifacts, but then causes the text to flicker constantly, as it is completely erased and then completely redrawn to the display.</p>
<p>Any ideas on how one might get the area not containing text to be drawn with the background color?</p>
<p>EDIT: I'd like to avoid having to double buffer the form if at app possible.</p>
<p>EDIT2: I solved the problem by only redrawing the text when I detect that the wrapping changes during a resize.</p>
http://stackoverflow.com/questions/1850724/getting-user-input-from-win32-c-wparam-casted-as-int0Getting user input from Win32 C++. WPARAM casted as int?Chris2009-12-05T01:19:28Z2009-12-06T18:29:48Z
<p>I'm working on a pre-existing codebase and I'm looking to have the user type any 1-2 digits followed by the enter key at any time during the code being run and pass that number to a function. Currently, user input is handled like so:</p>
<pre><code>LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
int wmId, wmEvent;
switch (message)
{
case WM_KEYDOWN:
Engine::GetInstance()->GetInput()->GetKeyboard()->SetKeyPressed(static_cast<int>(wParam));
break;
//snip
</code></pre>
<p>Now, I'm not sure of a few things,</p>
<ul>
<li><p>a) Why would the keypressed be passed as an integer rather than a character? </p></li>
<li><p>b) What would be the result of "F1" being sent in this case aaand</p></li>
<li><p>c) How can I use this to read in a 1-2 digit number and pass that only when enter is pressed?</p></li>
</ul>