Hi. I'm using VS2008. I'm trying to load a textbox with the value from a float field (.25) and the value keeps rounding to 0. Here's an example of what I am trying to do:
Dim strString As Single
strString = rsPMData.Fields("AcreOrig").Value
txtOrigAcres.Text = CStr(strString)
I have also tried:
txtOrigAcres.Text = = rsPMData.Fields("AcreOrig").Value
and got the same results. I've been looking everywhere for a solution, but I'm hitting dead ends.
Thanks for any help you can give me. Cathy
Dim strString As Single
strString = rsPMData.Fields("AcreOrig").Value
txtOrigAcres.Text = CStr(strString)
I have also tried:
txtOrigAcres.Text = = rsPMData.Fields("AcreOrig").Value
and got the same results. I've been looking everywhere for a solution, but I'm hitting dead ends.
Thanks for any help you can give me. Cathy