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

C / C++ / MFC

 
GeneralRe: format the value of Spin & Edit? Pin
David Crow25-Apr-06 5:11
David Crow25-Apr-06 5:11 
GeneralRe: format the value of Spin & Edit? Pin
zeus_master25-Apr-06 6:20
zeus_master25-Apr-06 6:20 
GeneralRe: format the value of Spin & Edit? Pin
David Crow25-Apr-06 6:30
David Crow25-Apr-06 6:30 
GeneralRe: format the value of Spin & Edit? Pin
zeus_master25-Apr-06 15:33
zeus_master25-Apr-06 15:33 
GeneralRe: format the value of Spin & Edit? Pin
Nibu babu thomas25-Apr-06 17:18
Nibu babu thomas25-Apr-06 17:18 
GeneralRe: format the value of Spin & Edit? Pin
zeus_master25-Apr-06 18:38
zeus_master25-Apr-06 18:38 
GeneralRe: format the value of Spin & Edit? Pin
Nibu babu thomas26-Apr-06 18:43
Nibu babu thomas26-Apr-06 18:43 
GeneralRe: format the value of Spin & Edit? Pin
zeus_master26-Apr-06 19:00
zeus_master26-Apr-06 19:00 
GeneralRe: format the value of Spin & Edit? Pin
David Crow26-Apr-06 2:47
David Crow26-Apr-06 2:47 
Questionreading from database Pin
aguest25-Apr-06 1:17
aguest25-Apr-06 1:17 
AnswerRe: reading from database Pin
sujtha25-Apr-06 1:30
sujtha25-Apr-06 1:30 
AnswerRe: reading from database Pin
David Crow25-Apr-06 4:50
David Crow25-Apr-06 4:50 
QuestionError loading my resources with imported dlls Pin
snir_ya25-Apr-06 0:49
snir_ya25-Apr-06 0:49 
AnswerRe: Error loading my resources with imported dlls Pin
voorugonda prashanth25-Apr-06 1:18
voorugonda prashanth25-Apr-06 1:18 
QuestionSIZING the Window Pin
RockyJames25-Apr-06 0:47
RockyJames25-Apr-06 0:47 
QuestionRe: SIZING the Window Pin
David Crow25-Apr-06 4:52
David Crow25-Apr-06 4:52 
QuestionAssert failed in wincore Pin
sujtha25-Apr-06 0:39
sujtha25-Apr-06 0:39 
AnswerRe: Assert failed in wincore Pin
voorugonda prashanth25-Apr-06 1:27
voorugonda prashanth25-Apr-06 1:27 
GeneralRe: Assert failed in wincore Pin
sujtha25-Apr-06 1:32
sujtha25-Apr-06 1:32 
AnswerRe: Assert failed in wincore Pin
Naveen25-Apr-06 1:35
Naveen25-Apr-06 1:35 
GeneralRe: Assert failed in wincore Pin
sujtha25-Apr-06 1:40
sujtha25-Apr-06 1:40 
GeneralRe: Assert failed in wincore Pin
Naveen25-Apr-06 1:50
Naveen25-Apr-06 1:50 
GeneralRe: Assert failed in wincore Pin
sujtha25-Apr-06 2:20
sujtha25-Apr-06 2:20 
QuestionList Control Pin
chybin25-Apr-06 0:31
chybin25-Apr-06 0:31 
AnswerRe: List Control Pin
YaronNir25-Apr-06 0:38
YaronNir25-Apr-06 0:38 
use the CListCtrl member function "Scroll"

Scrolls the content of a list view control.

BOOL Scroll(
   CSize size 
);
Parameters
size 
A CSize object specifying the amount of horizontal and vertical scrolling, in pixels. The y member of size is divided by the height, in pixels, of the list view control's line, and the control is scrolled by the resulting number of lines. 
Return Value
Nonzero if successful; otherwise zero.



also take a look at GetScrollPos to get the scroll position

Yaron

Ask not what your application can do for you,
Ask what you can do for your application

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.