Recent content by Xaverria

  1. X

    Help! Problem i also donno how to describe..

    In the end, my (u) look like this: SELECT * FROM (table) WHERE ((((col1)=([Forms]![REPORT_ADMIN]![A1])) AND ((col2)=([Forms]![REPORT_ADMIN]![A2])) AND); How do i remove the last "AND" at the back?
  2. X

    Help! Problem i also donno how to describe..

    Does that mean my sql should be something like this: SELECT * FROM (table) WHERE (u); then using my VBA coding for my button i will need to add the condition to the (u).
  3. X

    Help! Problem i also donno how to describe..

    I have 20 criteria (yes/no). All in the same query, but at all time not all of them are need to filter the table. How should i compose my sql? Furthermore, i have made it into a form if the user want to use this criteria, he will check the box and choose (yes/no). If he did not check the box...
  4. X

    Options Button

    Thank you...
  5. X

    Options Button

    I have 2 options button, how do i know which one was checked or choosen by the user?
  6. X

    Input Mask Problem

    But i need to verify the value like (dd) has a value of 0-31, (mm), has a value of 1-12, ensuring a valid date is input.
  7. X

    Input Mask Problem

    I managed to change my format of a textbox that display date to (dd/mm/yyyy), but how do i change my input mask to the same format?
  8. X

    How to hide my program

    Thank you.. trucktime :D
  9. X

    How to hide my program

    I managed to make my login form been display upon the lauching of my access file. Now the problem is that database file control table (the one where we create new database, form and anything) is still visible. How do i hide it and only allow it to be shown is the user login as the...
  10. X

    Please Help Me, Run Time Error

    I place it like this -------------------------------------------------------------------------- Option Compare Database Public SESSION_NRIC As String Private Sub Form_Open(Cancel As Integer) 'On open set focus to combo box 'Completed Me.cboNRIC.SetFocus End Sub Private Sub...
  11. X

    Please Help Me, Run Time Error

    I should place it outside the sub procedures, right? But i try, but still cannot work.
  12. X

    Please Help Me, Run Time Error

    I have saved it to the public variable (under the same variable name as my query), but it still prompt me to enter a value for the variable. :(
  13. X

    Please Help Me, Run Time Error

    Ok. Thanks for the advice.. How do i do that? How and where should i declare a public variable ? How do i read it into my query?
  14. X

    Please Help Me, Run Time Error

    The form is created from a query SELECT * FROM PARTICULARS WHERE ((PARTICULARS.NRIC)=[SESSION_NRIC]); How do i pass the id into the variable SESSION_NRIC?
  15. X

    Please Help Me, Run Time Error

    Thanks it works... But how do i pass the cboNRIc.Value into the form?
Back
Top Bottom