Search results

  1. J

    Question Switchboards

    the OP is a beginner, that has not used access much. I have only used access for a little while and just making a navigation page as per i descibed is pretty easy and think most people can get it to work
  2. J

    Count Char and words

    got some assistance and this seems to work for me pretty good Private Sub Post1_AfterUpdate() If Len(Me.Post1) > 0 Then Me.NumChar = Len(Post1) - (Len([Post1]) - Len(Replace([Post1], " ", ""))) Me.NumWord = (Len([Post1]) - Len(Replace([Post1], " ", ""))) + 1 Else Me.NumChar = 0...
  3. J

    Question Switchboards

    Tinarosa create a blank form under the design view click the button icon and place it on the form. Under the wizard go down to form operations on the left side~categories. then actions...choose open form click next then choose which form you want the button to open. click next click on...
  4. J

    Count Char and words

    do i just put that as code on the form? seems really simple to do all the things i need it to do
  5. J

    Count Char and words

    I searched but did not really find a clear answer. I have variable called post1, which is a memo data type. Post will be filled with a persons response to a question. I would like access to automatically calculate the number of words and put that number in a variable called numword also...
  6. J

    automatically display the list of choices in the combo boxes when the cursor comes to

    sorry i tried that but im still getting the same error
  7. J

    creating a Data Dictionary

    wow there are a lot of references...do i need to check the box for the DAO ones and the ADO but just have the DAO ones first? Thanks Josh
  8. J

    creating a Data Dictionary

    how to i use it as DAO? thanks
  9. J

    creating a Data Dictionary

    bump.......
  10. J

    automatically display the list of choices in the combo boxes when the cursor comes to

    I would like to automatically display the list of choices in the combo boxes when the cursor comes to those combo boxes. i used this code and then on the on got focus of each combo box i typed =dropdown However, it still wont work it gives me an error. The error is that the object does not...
  11. J

    creating a Data Dictionary

    there is an error with the mytable with feilds It displays red and gives an error compile error : expected expression thanks sorry i am very new to this and can't seem to fix it
  12. J

    creating a Data Dictionary

    I found this code and would like to use it to create a data dictionary however I cannot seem to get it to work. I put it into my code builder but then no table gets created Little help? Thanks. Public Function GenerateDataDictionary(aDataDictionaryTable As String) '*** Usage...
  13. J

    simple macro help

    i can make the text box...but i have not done a query before. So that may be where i am having the problem.
  14. J

    simple macro help

    mine is based on form and tables only: sorry im little unclear on what to do with the above steps..could you try and restate it to me. THanks
  15. J

    simple macro help

    mike i still would like these three digits to be saved in the table assoc. with the form.... can i do that using these functions?
  16. J

    simple macro help

    i have an variable which is zip code. Then later on the form i have another variable which is just the first three of the zip code. How can i setup a macro to have just the first three digits of the first variable fill in the later second variable. These are on the same form btw. Thanks in...
Back
Top Bottom