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

C / C++ / MFC

 
GeneralRe: CRuntimeClass - basic question - class access?? Pin
Vaclav_27-Nov-07 7:55
Vaclav_27-Nov-07 7:55 
GeneralRe: CRuntimeClass - basic question - class access?? Pin
led mike27-Nov-07 8:01
led mike27-Nov-07 8:01 
GeneralRe: CRuntimeClass - basic question - class access?? Pin
Mark Salsbery27-Nov-07 8:04
Mark Salsbery27-Nov-07 8:04 
AnswerRe: CRuntimeClass - basic question - class access?? Pin
led mike27-Nov-07 7:34
led mike27-Nov-07 7:34 
GeneralRe: CRuntimeClass - basic question - class access?? Pin
Vaclav_27-Nov-07 7:49
Vaclav_27-Nov-07 7:49 
GeneralOfftopic Pin
Nelek27-Nov-07 21:55
protectorNelek27-Nov-07 21:55 
GeneralRe: Offtopic Pin
Vaclav_28-Nov-07 6:43
Vaclav_28-Nov-07 6:43 
QuestionVScroll - speed up Pin
josip cagalj27-Nov-07 3:54
josip cagalj27-Nov-07 3:54 
Hi,
I'm reposting my problem with vertical scroling since no one is replaying eany more on my first thread.
So what I want is wnen I use mouse wheel to get scrolling faster, so upon sugetion from Nelek I'm doing this:
<br />
BOOL CMyView::OnMouseWheel(UINT nFlags, short zDelta, CPoint pt)<br />
{<br />
int pos =GetScrollPos( SB_VERT );<br />
if (zDelta>0)<br />
OnVScroll(3*SB_LINEUP,pos,NULL);<br />
else if (zDelta<0)<br />
OnVScroll(3*SB_LINEDOWN,pos,NULL);<br />
return TRUE;<br />
}<br />

When I scroll by LINEDOWN it's OK, but when I do the oposite (SB_LINEUP) it has no effect, scrolling it slow again.
Why?
Thanks!
QuestionRe: VScroll - speed up Pin
Nelek27-Nov-07 4:04
protectorNelek27-Nov-07 4:04 
QuestionWhat are you doing, man? Pin
CPallini27-Nov-07 4:17
mveCPallini27-Nov-07 4:17 
AnswerRe: What are you doing, man? Pin
Nelek27-Nov-07 21:48
protectorNelek27-Nov-07 21:48 
GeneralRe: What are you doing, man? Pin
CPallini27-Nov-07 22:09
mveCPallini27-Nov-07 22:09 
GeneralRe: What are you doing, man? Pin
Nelek27-Nov-07 22:27
protectorNelek27-Nov-07 22:27 
GeneralRe: What are you doing, man? Pin
CPallini27-Nov-07 23:44
mveCPallini27-Nov-07 23:44 
GeneralRe: What are you doing, man? Pin
Nelek28-Nov-07 1:44
protectorNelek28-Nov-07 1:44 
GeneralRe: What are you doing, man? Pin
CPallini28-Nov-07 2:24
mveCPallini28-Nov-07 2:24 
GeneralRe: What are you doing, man? (secondary question solved) Pin
Nelek28-Nov-07 3:05
protectorNelek28-Nov-07 3:05 
GeneralRe: What are you doing, man? (secondary question solved) Pin
CPallini28-Nov-07 3:33
mveCPallini28-Nov-07 3:33 
AnswerRe: VScroll - speed up Pin
josip cagalj27-Nov-07 22:37
josip cagalj27-Nov-07 22:37 
GeneralRe: VScroll - speed up Pin
Nelek27-Nov-07 23:13
protectorNelek27-Nov-07 23:13 
AnswerRe: VScroll - speed up Pin
josip cagalj27-Nov-07 23:49
josip cagalj27-Nov-07 23:49 
Questionbasic type conversions Pin
Joezer BH27-Nov-07 3:50
professionalJoezer BH27-Nov-07 3:50 
AnswerRe: basic type conversions Pin
Maximilien27-Nov-07 3:55
Maximilien27-Nov-07 3:55 
AnswerRe: basic type conversions Pin
CPallini27-Nov-07 4:04
mveCPallini27-Nov-07 4:04 
AnswerRe: basic type conversions Pin
led mike27-Nov-07 4:35
led mike27-Nov-07 4:35 

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.