Search results

  1. F

    Question: Opening Access Form without Access installed.

    Hi, I have a database (.mdb file) which includes a table, forms and VB code. I intend on putting it onto a CD and then opening the form on another computer which may not have Access. Is this possible? Can I convert the file or can I attach some type of reader to the disk? I have seen some...
  2. F

    Question regarding combo box values.

    Hi, I have a combo box acting as a filter for a form with the following row source: 1;2;3;4;5;6;7;8;9;10;11;12 It is related to a field which has the following VB code: If Not IsNull(Me.cboFilterPeople) Then strWhere = strWhere & "([AvailableNoTickets] = " &...
  3. F

    Question regarding 2 Fields in a combo box.

    Hi, I have a combo box acting as a filter for a form which contains data from 2 seperate fields using the following SQL code: SELECT tblData.Field1 FROM tblData GROUP BY tblData.Field1 UNION SELECT tblData.Field2 FROM tblData GROUP BY tblData.Field2; This combo box works fine in showing the...
Back
Top Bottom