Search results

  1. M

    jumping to the new record problem (continuous form)

    Hi, On my form I have a button to create new record. When I click it, it opens as pop up (continuous). I put in Event on Load code: Private Sub Form_Load() Me.RecordsetClone.MoveLast Me.Form.InsideHeight = (Me.Detail.Height * (Me.RecordsetClone.RecordCount + IIf(Me.AllowAdditions, 1, 0)))...
  2. M

    Conditional formatting of combo box (text colour)

    Hi, I changed text color of my combo box on my form to blue but when i click on the combo box, the highlighted option is almost unreadable (black background and orange text (!?!)). Is there a way with conditional formatting to change highlighted text color and background of an single option...
  3. M

    making data entry form with subform

    Hi, I have to make an form but it doesn't work the way i want it to work.. I'll try to be clear as possible and left out some non-important data and columns. I have three tables. 1. os_tbl (osID, OS [eg. Linux, Windows]) 2. ver_tbl (verID, Version [eg. 7, 8, 10], osIDfk) 3. name_tbl (nameID...
  4. M

    combo boxes related to checkboxes

    Hi, i'm quite new in Access and VB. i have a form with two check boxes and many combo boxes. I would like to filter choices in combo boxes depending on those check boxes. I have quite lots of data in tables but all of them can be sorted in two types (thats why i have two check boxes). For...
Back
Top Bottom