|
-
Mar 11th, 2003, 10:16 PM
#1
Thread Starter
Fanatic Member
Newbies
How about a Newbies forum?
-
Mar 12th, 2003, 04:55 AM
#2
Retired VBF Adm1nistrator
Well besides the name which would obviously need to be changed, the problem with newbie users, is that they don't know what's newbie and what isn't.
They might think making another listbox scroll when you scroll the first is easy.
Its not. It requires subclassing.
But at the same time they might think that grabbing files from the web is difficult.
Its not. It just requires the browser control or the internet transfer controls.
So that's an inherent problem with a newbie forum in my opinion...
Microsoft MVP : Visual Developer - Visual Basic [2004-2005]
-
Mar 12th, 2003, 09:20 PM
#3
Originally posted by plenderj
They might think making another listbox scroll when you scroll the first is easy.
Its not. It requires subclassing.
No it doesn't.
Laugh, and the world laughs with you. Cry, and you just water down your vodka.
Take credit, not responsibility
-
Mar 13th, 2003, 04:34 AM
#4
Retired VBF Adm1nistrator
Originally posted by crptcblade
No it doesn't.
Yeah it does. You can select things from one and make the same item be selected in the other, but to make them both scroll at the same time does need subclassing
Microsoft MVP : Visual Developer - Visual Basic [2004-2005]
-
Mar 13th, 2003, 04:45 AM
#5
Sorry Jamie, you lose.
VB Code:
Private Sub List1_Scroll()
List2.TopIndex = List1.TopIndex
End Sub
-
Mar 13th, 2003, 05:54 AM
#6

I'd agree with the above, the general Q&A is where all the newbies post & should be kept like that!
-
Mar 13th, 2003, 06:02 AM
#7
Retired VBF Adm1nistrator
Originally posted by MartinLiss
Sorry Jamie, you lose.
VB Code:
Private Sub List1_Scroll()
List2.TopIndex = List1.TopIndex
End Sub
Well spank me.
I never knew that.
huh. ya learn something new every day.
I'll just hang out in the newbie forum so
Microsoft MVP : Visual Developer - Visual Basic [2004-2005]
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
|