Search results

  1. C

    Currency field

    I have a problem I need to know where to find the currency format that would show the words of the whole dollar amount For example if the field containe $4,125.50 I would like it to print Four Thousand One Hundred Twenty Five This is for a tax receipt and it MUST be in that format. Gotta love...
  2. C

    Saving record and clearing form

    That Worked Perfectly Thanks
  3. C

    Saving record and clearing form

    I believe so but how do i tell the second form to go to a new record. I tried the code at the beginning of this post but it did not work
  4. C

    Saving record and clearing form

    They are not identical records. They are two separate forms based on two separate tables. On the save command button in the first form I have placed several 'setvalue' commands that update the second form. I need to save the current record that is displayed in the second form and then clear the...
  5. C

    Saving record and clearing form

    There is no relationship between the forms but both are bound to separate tables.
  6. C

    Saving record and clearing form

    I have a command button that i need to be able to save the current record in a completely different form and then start a new record in that same form. I tried Forms!hfrm_PerSerOrgSerAssoc.Form.NewRecord but that did not work. Can anyone assist me with this one Thanks
  7. C

    Capture ID's From an Append query

    Thanks everyone for your input. By using dmax before and after the append I was able to come up with the valuse I needed.
  8. C

    Capture ID's From an Append query

    Using them in a delete query if an invoice has to be regenerated. Long story but I inherited this database that was originally and sql db gated to access....
  9. C

    Capture ID's From an Append query

    Would this not get me only the one id that was at the end of the append. There are between 40 and 50 records appended each time and the number is never the same
  10. C

    Capture ID's From an Append query

    Ok this is a bit of a weird one. I have an append query that appends records from one table to another. The second table's Primary key is an autonumber field. I need to capture the ID's that are created when the append is done. Any suggestions would be greatly appreciated.
  11. C

    Simple max query

    I could not get Max option in the query or DMax() function used in the query to work but TOP 1 with records in DESC worked perfectly. Many Thanks
  12. C

    Simple max query

    What I need is only one record to show that being the one with the highest value in a specific field.
  13. C

    Simple max query

    What is a TOP 1 query
  14. C

    Simple max query

    Not a report or form. I need to use this record to append to another table using the values in this record as a basis for some calculations for the appended record
  15. C

    Simple max query

    SELECT tbl_ProgramInvoiceLineItem.ServiceID, tbl_ProgramInvoiceLineItem.ProgInvLineItemCount, tbl_ProgramInvoiceLineItem.ProgServiceAssocID, tbl_ProgramInvoiceLineItem.ProgInvID, tbl_ProgramInvoiceLineItem.ProgInvLineItemCount, tbl_ProgramInvoiceLineItem.ProgInvLineItemUnitCost...
  16. C

    Simple max query

    I am having trouble trying show ONLY the record with the highest value in a specific field. The query shows the record set that I wish to grab the record from but I can not figure out how to show only the record with the highest value in a specific field I know this is probably easy. I have...
  17. C

    Line Numbers

    I know I my=ust be having a bit of a brain fart but how do you number the lines in the detail section of a report. I have searched the forum and did not see any relavant info
  18. C

    Toolbar and Menu Bar

    Ok but how do I get the custom toolbar and blank menubar to be visible on my report when the first code has turned all toolbars and menubars off. Do I use the opposite code on open to show all toolbars and menubars and the reverse it on close. That seems a bit cumbersome.
  19. C

    Toolbar and Menu Bar

    Hello Thanks for your input but neither solution seems to work. Because I have disabled all toolbars and menus with the first piece of code selecting a custom toolbar in the report properties has no effect.
  20. C

    Toolbar and Menu Bar

    I have followed the instructions in post http://www.access-programmers.co.uk/forums/showthread.php?t=100810&highlight=menubar In the onOpen evet in my splash screen I have place Dim i As Integer For i = 1 To CommandBars.Count CommandBars(i).Enabled = True Next i And on the onOpen event in...
Back
Top Bottom