S
Shawn
If I want to get the number of characters returned from a database query and
then set the width of a control, what is a good formula or good practice to
do this? I have been using things like,
Dim result as Integer = Query.Length
label1.width = result * 10
But of course, the longer the text returned from the query, the wider the
control.
then set the width of a control, what is a good formula or good practice to
do this? I have been using things like,
Dim result as Integer = Query.Length
label1.width = result * 10
But of course, the longer the text returned from the query, the wider the
control.