GREETINGS!
This question was awarded, but never cleared due to the JSP-500 errors of that time. It was "stuck" against userID -1 versus the intended expert whom you awarded. This corrects the problem and the expert will now receive these points; points verified.
Please click on your Member Profile and select "View Question History" to navigate through any open or locked questions you may have to update and finalize them. If you are an EE Pro user, you can also choose Power Search to find all your open questions.
This is the Community Support link, if help is needed, along with the link to All Topics which reflects many TAs recently added.
http://www.experts-exchang
http://www.experts-exchang
Thank you,
Moondancer
Moderator @ Experts Exchange
Main Topics
Browse All Topics





by: jkpcsPosted on 1999-08-20 at 17:48:49ID: 2005352
Have to use code similar to this:
Private Sub ListBox_AfterUpdate()
Dim NewWidth As Long
'Your Code Here to determine how much to increase/descrease
Me.ListBox.Width = Me.ListBox.Width + NewWidth
End Sub
NewWidth can be based on number of records in a rst or
whatever. Also, I used Width for the example, but Height or any other attribute can be put in it's place.