Search results

  1. A

    ToolTip in Form

    I thought you had created a tool tip that will appear when the user hovers of the list box!!!, placing a text box to explain the meaning of the numbers in not appropriate,
  2. A

    ToolTip in Form

    ive uploaded and example of the form,
  3. A

    ToolTip in Form

    I have created a list box on my form, and the results of the select are 1, 2 and 3... but I want to add a tool tip showing an explaination of what they mean... Firstly is this possible? if so how? Im using Access 2002 Thanks in advance
  4. A

    Setting font colour within combobox

    I have a combobox on my form, the combobox has 3 values (1, 2 and 3). Is it possible to set the colour of the text within the combobox? 1 = Red 2 = Orange 3 = Green
  5. A

    Restrictive access on specific column in table form

    I have a form in MS Access and want to add another column at the end of my student list called 'Notes' As this field will contain sensitive and private information, can it be restricted access to specific named staff?
  6. A

    Combobox - disabling user to enter written text

    Thanks... it worked perfectly
  7. A

    Combobox - disabling user to enter written text

    I have a form which the user would select a option from the combobox, but what I have noticed is that users are writing in this field instead of selecting the options from the combobox... Is there anyway I can stop allowing any entries in this field? and only allow users to select options from...
  8. A

    POP UP Message - validation test

    ANSWER - Private Sub btnNewOrder_Click() Dim intanswer As Integer If isNull(Forms!frmnavigation!cmbDistributionOrder) Then intanswer = _ MsgBox("No Distribution selected, please select from list", vbInformation + vbOKOnly, "Select Distribution") Else...
  9. A

    POP UP Message - validation test

    can get the code to work correctly... can anyone assist please
  10. A

    POP UP Message - validation test

    ive attached a sample of my form... please could you assist in me writing the code for asking user to fill all entries before the form is submitted
  11. A

    POP UP Message - validation test

    where do i put this code? a newbie sorry
  12. A

    POP UP Message - validation test

    Is it possible to check if the fields and drop down boxes are all complete before the records are submitted from the form? I am using a COMMAND button on my form that will save the entries from the form into a database, but i want all the entries to be completed before it is submitted, so i...
  13. A

    Adding a email address on form

    I've added my email address in a text box on my form, for users to contact me if they require any assistance... but when i run the form and click on the email address, i get the following error message Unable to open email.address@hotmail.com. Cannot open the specified file. I've added the...
  14. A

    Removal of grey bar

    thanks perfect
  15. A

    Removal of grey bar

    SOLVED - Removal of grey bar How do I remove the grey bar on the left hand side of my form? thanks
  16. A

    Creating a search facility

    any help guys.. just need a command button to search the dataset and return the value in the subform... i have the query set up and running, just need to link it with the command button.
  17. A

    Creating a search facility

    the primary key is patnt_refno the relationship can be easily viewed from the query itself... it uses the patnt_refno to retrieve the staff if which is the Identifier field in the staff_id table
  18. A

    Creating a search facility

    thanks for the attachment... i think im nearly there... but i just need to the command button to populate the subform instead of running the query on a seperate page (see attached)
  19. A

    Creating a search facility

    Dont have that icon in 2002 version
  20. A

    Creating a search facility

    I need some assistance in creating a form that will allow a user to enter a staff id and the form should return the forename and surname of the staff member... I have created a textbox that would allow the user to enter the staff id. I have also created a query that will search the dataset and...
Back
Top Bottom