Search results

  1. K

    use text box to control combo box content

    i have a question i want to use a text box to controp the content of the combo box. for example table [key] id key 1 xxx1 1 xxx2 1 xxx3 2 yyy1 2 yyy2 there is a text box called "id" and combo box "key" on a form when i fill the [id] text box , ie "1", then the combo box...
  2. K

    What is the correct syntax?

    i built this event.... Private Sub Command39_Click() Dim x As String x = "All Current PC and Server" DoCmd.OutputTo acOutputQuery, "x", acFormatXLS, "All Current PC and Server.xls", True End Sub Of course , that is not correct. can anyone tell me how can i correct this and compile it...
  3. K

    Export to Excel

    hi, can anyone tell me how to deal with the following problem? there is a select query e.g. Query1 whixh contain the data that i want to export to Excel. i try to use OutputTo and it works. the excel file is served as a report. however, the column names in the exxcel file is...
  4. K

    Question about MouseWheel

    hi, i have a question about MouseWheel event ! in my access program, there are two checkboxes, for example, a & b, on a form with contain many record. sample record: no. a/b 1 a<---cannot be deleted 2 b<---can be deleted 3 b<---can...
  5. K

    Filter By Form by using VBA

    by using VBA, how can i filter the data by form by clicking one button on the form?
  6. K

    Can i do this on combo box ?

    Can i do something like this on combo box? -->Me![ComboboxName].Enabled = False -->Me![ComboBOXName].BackColor = RGB(255,255,255)
  7. K

    How to set a combo box to be disable?

    i want to set a combo box to be disable when the form is loaded. after i click a "edit" button, the combo box should be enabled to edit !
Back
Top Bottom