K
ken
Hi,
I have another dumb newbe question. I tried looking in the help but,
maybe I'm using the wrong search criteria. Oh well. My question is
this. I would like to add the value of txtTimer1.Text to the end of
my label text. What happens now is the text will scroll off the form.
For example the txtTimer1.Text returns 1. 2. 3. 4. 5... etc. What I
would like is after a value is returned it displays that value only
and not a sequence of values. I would like to truncate to 1's, 10's,
and 100's. Can someone point me in the right direction. Thanks.
Regards,
Ken
frmKDMmain.lblFueltankquantity.Text = _
frmKDMmain.lblFueltankquantity.Text & " " & _
txtTimer1.Text
I have another dumb newbe question. I tried looking in the help but,
maybe I'm using the wrong search criteria. Oh well. My question is
this. I would like to add the value of txtTimer1.Text to the end of
my label text. What happens now is the text will scroll off the form.
For example the txtTimer1.Text returns 1. 2. 3. 4. 5... etc. What I
would like is after a value is returned it displays that value only
and not a sequence of values. I would like to truncate to 1's, 10's,
and 100's. Can someone point me in the right direction. Thanks.
Regards,
Ken
frmKDMmain.lblFueltankquantity.Text = _
frmKDMmain.lblFueltankquantity.Text & " " & _
txtTimer1.Text