Click here to Skip to main content
15,921,169 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: What does it mean ? Pin
Rage10-Apr-03 0:52
professionalRage10-Apr-03 0:52 
Generalmodify style window Pin
jeremysay9-Apr-03 23:27
jeremysay9-Apr-03 23:27 
GeneralRe: modify style window Pin
Zdeslav Vojkovic10-Apr-03 2:54
Zdeslav Vojkovic10-Apr-03 2:54 
GeneralRe: modify style window Pin
jeremysay10-Apr-03 3:35
jeremysay10-Apr-03 3:35 
GeneralRe: modify style window Pin
Zdeslav Vojkovic10-Apr-03 5:37
Zdeslav Vojkovic10-Apr-03 5:37 
GeneralRe: modify style window Pin
jeremysay10-Apr-03 7:24
jeremysay10-Apr-03 7:24 
GeneralRe: modify style window Pin
Zdeslav Vojkovic10-Apr-03 21:37
Zdeslav Vojkovic10-Apr-03 21:37 
GeneralRe: modify style window Pin
jeremysay10-Apr-03 22:59
jeremysay10-Apr-03 22:59 
in fact i scroll the view without use the scrollbar.
when i click in the view and move my mouse i do :
if (pMsg->message == WM_MOUSEMOVE)  )
{
	if (pMsg->wParam & VK_LBUTTON)
	{
		POINT Point = pMsg->pt;
		long ScrollX = Point.x - m_Point.x;
		long ScrollY = Point.y - m_Point.y;
		ScrollWindow(-ScrollX,-ScrollY);
                m_pPoint = Point
         }
}


so i move my view and i don't know really its coordinates.
when i use :
pChild->SetWindowPos(NULL, 0, 0, 0, 0,SWP_FRAMECHANGED |
				SWP_NOMOVE | SWP_NOSIZE |
				SWP_NOZORDER);

my view loose its scrolling, so i want to know its coordinate before SetWindowPos.
Or get a way to put the sizable border without use SetWindowPos.
have you any idea ?
GeneralRe: modify style window Pin
Zdeslav Vojkovic11-Apr-03 0:11
Zdeslav Vojkovic11-Apr-03 0:11 
GeneralRe: modify style window Pin
jeremysay11-Apr-03 0:15
jeremysay11-Apr-03 0:15 
GeneralIcon how to obtain Pin
Jump_Around9-Apr-03 23:21
Jump_Around9-Apr-03 23:21 
GeneralRe: Icon how to obtain Pin
Martyn Pearson10-Apr-03 0:11
Martyn Pearson10-Apr-03 0:11 
GeneralRe: Icon how to obtain Pin
Debs10-Apr-03 0:14
Debs10-Apr-03 0:14 
QuestionURGEnt:How to open an application?? Pin
RaajaOfSelf9-Apr-03 22:49
RaajaOfSelf9-Apr-03 22:49 
AnswerRe: URGEnt:How to open an application?? Pin
Zdeslav Vojkovic9-Apr-03 23:08
Zdeslav Vojkovic9-Apr-03 23:08 
AnswerRe: URGEnt:How to open an application?? Pin
Joan M9-Apr-03 23:17
professionalJoan M9-Apr-03 23:17 
AnswerRe: URGEnt:How to open an application?? Pin
Jump_Around9-Apr-03 23:19
Jump_Around9-Apr-03 23:19 
AnswerRe: URGEnt:How to open an application?? Pin
CodeBrain9-Apr-03 23:21
CodeBrain9-Apr-03 23:21 
GeneralCrash after reading a linked list CString Pin
Willem B9-Apr-03 22:47
Willem B9-Apr-03 22:47 
GeneralRe: Crash after reading a linked list CString Pin
Joaquín M López Muñoz9-Apr-03 23:09
Joaquín M López Muñoz9-Apr-03 23:09 
GeneralRe: Crash after reading a linked list CString Pin
G. Steudtel9-Apr-03 23:21
G. Steudtel9-Apr-03 23:21 
GeneralRe: Crash after reading a linked list CString Pin
Willem B10-Apr-03 22:35
Willem B10-Apr-03 22:35 
GeneralEmbed word document inside a form Pin
Kamesh9-Apr-03 22:30
Kamesh9-Apr-03 22:30 
GeneralRe: Embed word document inside a form Pin
vijayaramaraju10-Apr-03 0:52
vijayaramaraju10-Apr-03 0:52 
Generalmodeless dialogue prob Pin
andyg.1019-Apr-03 22:18
andyg.1019-Apr-03 22:18 

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.