Recent content by NewbieJohnny

  1. N

    Combo Box not selecting value - Access 2007

    I figured it out. My form was being opened up as Read Only.
  2. N

    VBA Function to convert mm to inches accuracy

    I want 25.4 / 25.4 to equal 1... Is this not possible. Sorry, I'm new to programming.
  3. N

    VBA Function to convert mm to inches accuracy

    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...
  4. N

    Combo Box not selecting value - Access 2007

    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...
Back
Top Bottom