|
-
Sep 19th, 2003, 03:32 AM
#1
Thread Starter
New Member
vScrollbar problem after converting from vb to vb .NET
hi friends ,
i devloped one application in vb in that i am using vScrollbar.now i am converted the application to vb .NET.when i am running the application after convertion the Vscrollbar is not working as earlier in vb. i placed the vscroll on one small frame which contains another big frame in it.
plz help me in solving this problem.below is the code in vb.
form load()
with vScrollbar
.min=0
.max=vScrollbar.height -largeframe.height
.largechange=400
.smallchange=200
.value=0
end with
end sub
vScrollbar_change()
largeframe.top=vScrollbar.value
endsub
vScrollbar_scroll()
largeframe.top=vScrollbar.value
endsub
so after convertion the .Net changes the change event as procedure.and in scroll event its calling the change even through
select- case.but it works only for the first click.
so my friends plz help me in solving this problem.
thanks in advance.
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
|