Click here to Skip to main content
15,898,880 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: C++ Pin
Stephen Hewitt13-May-10 16:54
Stephen Hewitt13-May-10 16:54 
AnswerRe: C++ Pin
Luc Pattyn13-May-10 17:07
sitebuilderLuc Pattyn13-May-10 17:07 
QuestionRe: C++ Pin
CPallini13-May-10 20:41
mveCPallini13-May-10 20:41 
AnswerRe: C++ Pin
Luc Pattyn13-May-10 23:47
sitebuilderLuc Pattyn13-May-10 23:47 
JokeRe: C++ Pin
norish13-May-10 19:11
norish13-May-10 19:11 
AnswerRe: C++ Pin
CPallini13-May-10 20:48
mveCPallini13-May-10 20:48 
AnswerRe: C++ Pin
Richard MacCutchan13-May-10 23:13
mveRichard MacCutchan13-May-10 23:13 
QuestionIn Visual Studio 2008 I try to Go To Dialog and get "The operation could not be completed. Access is denied." Pin
ara206013-May-10 15:21
ara206013-May-10 15:21 
AnswerRe: In Visual Studio 2008 I try to Go To Dialog and get "The operation could not be completed. Access is denied." Pin
ForNow13-May-10 16:12
ForNow13-May-10 16:12 
GeneralRe: In Visual Studio 2008 I try to Go To Dialog and get "The operation could not be completed. Access is denied." Pin
ara206013-May-10 16:19
ara206013-May-10 16:19 
AnswerRe: In Visual Studio 2008 I try to Go To Dialog and get "The operation could not be completed. Access is denied." Pin
bolivar12314-May-10 2:48
bolivar12314-May-10 2:48 
GeneralRe: In Visual Studio 2008 I try to Go To Dialog and get "The operation could not be completed. Access is denied." Pin
ara206014-May-10 14:42
ara206014-May-10 14:42 
QuestionVIsual Studio Debugger Yellow arrow cursor/control ??? Pin
ForNow13-May-10 14:45
ForNow13-May-10 14:45 
AnswerRe: VIsual Studio Debugger Yellow arrow cursor/control ??? Pin
hdxu13-May-10 16:21
hdxu13-May-10 16:21 
AnswerRe: VIsual Studio Debugger Yellow arrow cursor/control ??? Pin
hdxu13-May-10 16:28
hdxu13-May-10 16:28 
GeneralRe: VIsual Studio Debugger Yellow arrow cursor/control ??? Pin
ForNow13-May-10 16:34
ForNow13-May-10 16:34 
GeneralRe: VIsual Studio Debugger Yellow arrow cursor/control ??? Pin
Madhu Nair13-May-10 19:02
Madhu Nair13-May-10 19:02 
GeneralRe: VIsual Studio Debugger Yellow arrow cursor/control ??? Pin
ForNow13-May-10 20:17
ForNow13-May-10 20:17 
QuestionWindow Resizing!? / Win32 Pin
Fareed Rizkalla13-May-10 12:42
Fareed Rizkalla13-May-10 12:42 
case WM_SIZE:
{
	wchar_t Width[5];
	wchar_t Height[5];

	_ltow_s((WCA.right-WCA.left), Width, 5, 10);
	_ltow_s((WCA.bottom-WCA.top), Height, 5, 10);

	if (RegDeleteKeyValue(HKEY_CURRENT_USER, RegistrySubKey, L"Width") == ERROR_SUCCESS)
		RegSetKeyValue(HKEY_CURRENT_USER, RegistrySubKey, L"Width", REG_SZ, Width, wcslen(Width)*2);
	if (RegDeleteKeyValue(HKEY_CURRENT_USER, RegistrySubKey, L"Height") == ERROR_SUCCESS)
		RegSetKeyValue(HKEY_CURRENT_USER, RegistrySubKey, L"Height", REG_SZ, Height, wcslen(Height)*2);
return 0;
}

case WM_MOVE:
{
	wchar_t Left[5];
	wchar_t Top[5];
				
	if ((int)(short)LOWORD(lParam) > 0)
		_ltow_s((int)(short)LOWORD(lParam), Left, 5, 10);
	if ((int)(short)HIWORD(lParam) > 0)
		_ltow_s((int)(short)HIWORD(lParam), Top, 5, 10);

	if (RegDeleteKeyValue(HKEY_CURRENT_USER, RegistrySubKey, L"Left") == ERROR_SUCCESS)
		RegSetKeyValue(HKEY_CURRENT_USER, RegistrySubKey, L"Left", REG_SZ, Left, wcslen(Left)*2);
	if (RegDeleteKeyValue(HKEY_CURRENT_USER, RegistrySubKey, L"Top") == ERROR_SUCCESS)
		RegSetKeyValue(HKEY_CURRENT_USER, RegistrySubKey, L"Top", REG_SZ, Top, wcslen(Top)*2);
return 0;
}


I'm using these 2 events to record my window position and size. However by running and closing my app and running it again, without changing any of the dimensions. It is just affected by running and closing! Unsure | :~

Changing size on it's own!
AnswerRe: Window Resizing!? / Win32 Pin
Stephen Hewitt13-May-10 14:01
Stephen Hewitt13-May-10 14:01 
GeneralRe: Window Resizing!? / Win32 Pin
Fareed Rizkalla13-May-10 15:45
Fareed Rizkalla13-May-10 15:45 
GeneralRe: Window Resizing!? / Win32 Pin
Stephen Hewitt13-May-10 15:51
Stephen Hewitt13-May-10 15:51 
GeneralRe: Window Resizing!? / Win32 Pin
Fareed Rizkalla13-May-10 16:09
Fareed Rizkalla13-May-10 16:09 
AnswerRe: Window Resizing!? / Win32 Pin
Stephen Hewitt13-May-10 16:54
Stephen Hewitt13-May-10 16:54 
AnswerRe: Window Resizing!? / Win32 Pin
norish13-May-10 19:45
norish13-May-10 19:45 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.