Search results

  1. Q

    passwording database

    help Hi, I was trying to run your example but when the form opens to ask me for the password I get the error message undefined getusername function. If I press ok I can go to the form but no User Name is fill and I can not update the field, if I try the password, I get incorrect password...
  2. Q

    opening excel from access and then going back to access

    Hi, The problem is that I need to import a file from excel and it has more that 16000 rows. I have Access 97 and when I import the file, the file gets cut in 16000 records, this is a bug with access 97 and the only way to overcome this is by having the excel file open. So I wanted to open excel...
  3. Q

    opening excel from access and then going back to access

    Hi, I have the following problem, I am trying to open an excel file from Access and then after is open going back to Access. I am able to open the Excel file but my database stays in the background while excel is in focus. I am using the following to open excel FollowHyperlink...
  4. Q

    Change field from date to text using text

    Thanks for the help and I will stop using Date as a field name. It works great the problem was that I was using Output to instead of TransferText. Take care
  5. Q

    Change field from date to text using text

    Here is the sql SELECT JAM.[Account #], Format([first day activity],"mm/dd/yy") AS [Date] FROM JAM; Thanks
  6. Q

    Change field from date to text using text

    Hi, I tried that but in the ouput file still shows up as date field
  7. Q

    Change field from date to text using text

    I need to output a query result as a text file. The format need it is the following "000005","12/18/70" (comma delimited)the first field is account # and the next is the Date account open, as you can see both need to be in text format. When I try to import the query result to a text file, when I...
  8. Q

    Parameter query

    Thanks, works great
  9. Q

    Parameter query

    I have a parameter query that feeds a form. I use 4 different fields that filter the records I want to show in the form. I am using a form (user will fill out criteria in form) to feed the criteria in the parameter query for the different fields used as filters using the format...
  10. Q

    making not visible a group option

    Thanks works great
  11. Q

    making not visible a group option

    Do I need to put the same code in the On current event in the Form properties. I used the code in the On click event in the properties of the Next buttom
  12. Q

    making not visible a group option

    I have a form where I have two option groups. If I click one of the option groups it will make visible the second group option (set to not visible in properties). When I want to move to the next record I want to make the second option group not visible. I used the following...
  13. Q

    Change mouse pointer over Command button

    Thanks for the help, works great.
  14. Q

    Change mouse pointer over Command button

    Hi, I want to know if there is a way to change the mouse pointer to a hand when over a command button. I am using Access 97. Thanks
  15. Q

    Merge multiple records to Word

    Hi, I am trying to merge multiple records from a subform to a Word document. I do not have any problems merging data from the form but when I tried to merge data from the subform only the first record is merged. I am using the following code: .ActiveDocument.Bookmarks("table").Select...
  16. Q

    Merging to Access

    Now I have another problem. I have multiple records in the subform but when I merge it to Word only the first record is merged. How I can show all the records from the subform
  17. Q

    Merging to Access

    Thanks for the help.
  18. Q

    Merging to Access

    Trying to merge a field on a form to a word document using .ActiveDocument.Bookmarks("percentaccount").Select .Selection.Text = (CStr(Forms![freedeliver]![child86])) The field in question is a subform. I just get an error message. I want to know if there is any way to merge the...
Back
Top Bottom