I have a public function in a module that converts a number given in millimeters to inches. The problem is that it does not convert accuratly and I'm stumped as to why? The code is:
Public Function CvrtInch(Dia As Single)
CvrtInch = Dia / 25.4
End Function
When I run the...
I have a form that uses a combo box to see dates from records in a table. Once I select the date, I hit a button and the main form opens up to the given record for editing. The problem I'm having is everytime I open up the "search" form, I can not select the combo box values. The combo box...