Click here to Skip to main content
15,919,479 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: CListCtrl ficker... Pin
palbano21-Jul-04 17:11
palbano21-Jul-04 17:11 
GeneralRe: CListCtrl ficker... Pin
bryce21-Jul-04 17:27
bryce21-Jul-04 17:27 
GeneralRe: CListCtrl flicker... Pin
wb22-Jul-04 4:11
wb22-Jul-04 4:11 
GeneralStandalone mfc application Pin
TallAndyB21-Jul-04 14:22
TallAndyB21-Jul-04 14:22 
GeneralRe: Standalone mfc application Pin
Michael Dunn21-Jul-04 15:03
sitebuilderMichael Dunn21-Jul-04 15:03 
GeneralRe: Standalone mfc application Pin
palbano21-Jul-04 16:58
palbano21-Jul-04 16:58 
GeneralMultiline editbox Pin
Spank me!!21-Jul-04 13:16
Spank me!!21-Jul-04 13:16 
GeneralRe: Multiline editbox Pin
Alexander Wiseman21-Jul-04 15:38
Alexander Wiseman21-Jul-04 15:38 
Hi,

LineScroll is a member of the CEdit class, not CDialog, which is why when you try to call the function using the dialog pointer, you get a syntax error. To call LineScroll, therefore, you need to have the CEdit control variable or a pointer to it. Try this instead:
<br />
CEdit *myEdit = ((CEdit*)GetDlgItem(IDC_MOVEMENTDIALOG));<br />
<br />
// You can now call LineScroll; note that the following call only scrolls the edit control 1 verical line<br />
myEdit->LineScroll(1, 0);<br />

Hope that helps!

Sincerely,
Alexander Wiseman

Est melior esse quam videri
It is better to be than to seem
GeneralRe: Multiline editbox Pin
Harold Bamford23-Jul-04 11:05
Harold Bamford23-Jul-04 11:05 
GeneralDatabase Update????? Urgent Pin
Small Rat21-Jul-04 12:46
Small Rat21-Jul-04 12:46 
GeneralRe: Database Update????? Urgent Pin
palbano21-Jul-04 16:34
palbano21-Jul-04 16:34 
GeneralRe: Database Update????? Urgent Pin
Small Rat21-Jul-04 16:49
Small Rat21-Jul-04 16:49 
GeneralRe: Database Update????? Urgent Pin
TaknuMone22-Jul-04 2:03
TaknuMone22-Jul-04 2:03 
GeneralRe: Database Update????? Urgent Pin
Small Rat23-Jul-04 18:39
Small Rat23-Jul-04 18:39 
GeneralRe: Database Update????? Urgent Pin
palbano22-Jul-04 5:47
palbano22-Jul-04 5:47 
GeneralRe: Database Update????? Urgent Pin
Small Rat23-Jul-04 18:40
Small Rat23-Jul-04 18:40 
GeneralC++ file i/o Pin
Anonymous21-Jul-04 12:06
Anonymous21-Jul-04 12:06 
GeneralRe: C++ file i/o Pin
bryce21-Jul-04 16:34
bryce21-Jul-04 16:34 
GeneralC compiler Pin
---Mark---21-Jul-04 10:53
---Mark---21-Jul-04 10:53 
GeneralRe: C compiler Pin
dzenad21-Jul-04 11:41
dzenad21-Jul-04 11:41 
GeneralRe: C compiler Pin
Michael Dunn21-Jul-04 11:42
sitebuilderMichael Dunn21-Jul-04 11:42 
GeneralRe: C compiler Pin
Timothy Grabrian23-Jul-04 14:10
professionalTimothy Grabrian23-Jul-04 14:10 
Generalproblem in my message box Pin
magee8121-Jul-04 10:40
sussmagee8121-Jul-04 10:40 
GeneralRe: problem in my message box Pin
David Crow21-Jul-04 10:56
David Crow21-Jul-04 10:56 
GeneralRe: problem in my message box Pin
magee8121-Jul-04 11:15
sussmagee8121-Jul-04 11:15 

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.