|
-
May 5th, 2000, 11:49 PM
#1
Thread Starter
transcendental analytic
How can i make the listbox control to scroll faster by removing the SMOOTH ANIMATION while i change the listindex property.
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
-
May 7th, 2000, 11:31 PM
#2
Lively Member
Try this:
SendMessage ListBox1.hWnd, LB_SETTOPINDEX, newItemIndex, 0
ListBox1.ListIndex = newItemIndex
(For decl's and constants go look up an API reference.)
- Steve
Real programmers use COPY CON PROGRAM.EXE
-
May 8th, 2000, 05:31 PM
#3
Thread Starter
transcendental analytic
It didn't work, that does only scroll the listbox without having to move the listindex but it didn't remove the smooth animation. Any other ideas?
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
-
May 8th, 2000, 06:37 PM
#4
Lively Member
Best thing I can think of is to just turn off smooth scrolling (it's an option somewhere in the Display control panel applet)
- Steve
Real programmers use COPY CON PROGRAM.EXE
-
May 9th, 2000, 03:31 AM
#5
Thread Starter
transcendental analytic
Hmmmm, I don't like that solution. Well, i think i'll skip this, although if anyone still have idéas, post them
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|