Search results

  1. R

    Textbox Highlighting all text

    Thanks! That helped a lot. Unfortunately the code made the cursor appear half way down the text, but i just added a small bit to the code you provided to make sure it started at the top: Me.txtBox.SelStart = Me.txtBox.SelLength = 0 Thanks! :D
  2. R

    Textbox Highlighting all text

    When i run my form, which contains only one textbox with data bound from a query, the text is fully highlighted. I do not want this to happen - is it possible to stop the text being highlighted?
  3. R

    Web Link for stored URL

    how do i make it "uneditable"? If i lock it and unable it, then the hyperlink wont work - its blocked out from use.
  4. R

    Web Link for stored URL

    now theres another problem. I have all other fields on the form locked and unabled so that they dont appear as text boxes and data cannot be changed. If i do this to the url text box though, it cannot be used as a link. How can i let a user use the link, but make it not appear as a text box...
  5. R

    Web Link for stored URL

    thanks for that, i recon i can sort it now :)
  6. R

    Web Link for stored URL

    i want to store web site links in a field in my table, e.g./ http://www.amazon.co.uk. Then i want some sort of access point (such as a button) on my form to link to this web site.
  7. R

    Web Link for stored URL

    I want a URL stored in one field in my table to be recalled and formatted as a link to a web site on my form. How can i do this? Do i need to format it in the table or do i do it in the form - or do i need a query to do it?
  8. R

    No spaces in data after it is entered

    an input mask would not do what i want - i want the data to be spaceless after input - so a format would be better - and i need someones help to do this.
  9. R

    No spaces in data after it is entered

    I have a field in a form that i want the user to use for entering telephone numbers. I want the data entered to have no spaces in it. Is there a special format or rule i could use to eliminate spaces after the user has entered the data?
  10. R

    A Challenging Form!

    I am doing a coursework project that requires me to build a large amount of search forms. So instead of doing lots of small ones i thought if it was possible i could do one large one. This is how i envision it: One form with criteria boxes. The first criteria box is a drop down box with all...
  11. R

    Tabular form height

    i have a form set up in tabular view. When i view it in form view it is too high. To solve this i have set the border style to sizeable, then when in form view i have dragged the border to the size i wanted. Then i went back to design view and selected the border style as thin. When i then...
  12. R

    Review form, not data entry

    I have a form that is used simply to recall and view records, yet by default there is always an additional record at the end of the record list which is blank, and is probably used to enter more records. I do not need this, how do i get rid of it?
  13. R

    Search form

    I have made a form with 4 fields on it. I want the user to enter data into these fields, and then a query should be run to find this data in the relevant table. This would be a very simple query to create, except i dont want it to just find records that are found by looking at data entered...
  14. R

    Checkboxes - not blank when form is run

    I have a number of checkboxes on a form. When the form is run the boxes are "greyed in" were they are not blank or ticked. This causes problems in one case - were i have to check and uncheck each box and then check the box i want. Otherwise the boxes unchecked remain greyed in which causes...
  15. R

    Check boxes

    Ive finally managed to solve the problem - thanks for all your help and pointing me in the right direction. In the end i worked out that in Access everything that is true is given a value of -1, and everything false is given a value of 0. I used these values in the tables and queried the...
  16. R

    Check boxes

    Right, i think i have done what youve insturcted: The checkboxes were called check132, check134, check 136 and check138. I have created a table with those 4 field names. I have set the record source of the form to that table. For each check box i have set the control source to the field with...
  17. R

    Check boxes

    that is the sort of thing i want to do but how do i do it? How do i connect the check boxes and the fields in the tables?
  18. R

    Check boxes

    i have made a form with several check boxes. I want the results of the clicked boxes (more than one can be selected) to be found from a select query. The thing is, i have also used an option group, and i can relate the value of each option to those i have stored in a table - i know how to do...
Back
Top Bottom