Search:

Type: Posts; User: TomGoodwin; Keyword(s):

Page 1 of 20 1 2 3 4

Search: Search took 0.07 seconds.

  1. Replies
    3
    Views
    411

    Yes. One that doesn't exist. This was my...

    Yes. One that doesn't exist. This was my solution, which seems to work.


    Private Sub Form_Open(Cancel As Integer)
    Dim strWhere As String
    strWhere = "ReceiptNumber=[Enter Receipt Number]"...
  2. Replies
    3
    Views
    411

    Error Handling

    I have a switchboard that has a Edit Record button. When the Edit Record button is clicked in call frmCheckInEdit. The operator is instructed to enter the receipt number. The On Open event on...
  3. Replies
    4
    Views
    900

    sorry for the belated response. I was called out...

    sorry for the belated response. I was called out of town expectantly. Many thanks.

    Tom
  4. Replies
    4
    Views
    900

    Month Function in Quries

    I am try to select records based on the following:

    1. I want to include the record if RentPaidDate is prior to ReportBeg date and the RentBeginDate is >= ReportBeg date. This I think this would...
  5. Replies
    3
    Views
    385

    Thanks for your solution. I solved the problem...

    Thanks for your solution. I solved the problem slightly differently. Leaving out the rounding functions I used

    TotalTaxeAmt: [RoomRate] * [StateSalesTaxRate] + [RoomRate] * [LocalSatesTaxRate]
    ...
  6. Replies
    3
    Views
    385

    I have two fields in tblTaxRate where...

    I have two fields in tblTaxRate where StateSalesTaxRate = 5.75% and LocalSalesTaxRate = 2.00%. Both fields are set up as follows:
    DataType = Number
    Field Size =...
  7. Replies
    3
    Views
    1,426

    Thanks. I am not trying to read the SNP file in...

    Thanks. I am not trying to read the SNP file in Windows 7 but to E-mail it to a user that is using Windows XP. The addressee has no problem reading SNP files send from other non Windows 7 users. It...
  8. Replies
    3
    Views
    1,426

    I have a database that uses the following On...

    I have a database that uses the following On click event code

    Private Sub cmdPrintSecurityDepositRefund_Click()
    If [TrfDepositCheckBox] = -1 Then
    Me.DepositRefundAmt = 999
    Else:...
  9. Replies
    2
    Views
    230

    They have the Original Office 2000 disks and it...

    They have the Original Office 2000 disks and it is currently installed. They have 25.2 gigs of unused space on the hard drive. Having the Office 2000 disk in the drive did not change the abort.
    ...
  10. Replies
    2
    Views
    230

    Am trying to have a remote location install SR1a...

    Am trying to have a remote location install SR1a to Access 2000. They are running windows XP Home with SR 3 installed.
    We tried installing Access SR-1a from...
  11. Replies
    9
    Views
    1,503

    Sorry for the delay in responding. I was...

    Sorry for the delay in responding. I was traveling and did not have access to a computer.

    When the frmCustomer is first opened, the first record in the table is displayed. We were having a problem...
  12. Replies
    9
    Views
    1,503

    I am attaching a stripped down database. Thanks...

    I am attaching a stripped down database. Thanks for looking at it.

    Tom Goodwin[attachment=85525:Woody.zip]



    You are trying to Save in a context where Access cannot Save.
    What is there in...
  13. Replies
    9
    Views
    1,503

    Thanks for the suggestion. I had previously tried...

    Thanks for the suggestion. I had previously tried this to no avail. Tried again, also to no avail.

    I will post a stripped down database in a few minutes.

    Tom


    quote name='PeterN'...
  14. Replies
    9
    Views
    1,503

    If you close frmCustomerEntry without clicking on...

    If you close frmCustomerEntry without clicking on the Check In button, all of the information is saved correctly. If you reopen frmCustomerEntry and use the locate record functon for the record just...
  15. Replies
    9
    Views
    1,503

    I have a frmCustomerEntry on which customer...

    I have a frmCustomerEntry on which customer information is entered. After completing the information, the operator presses the Check In command button on frmCustomerEntry. At this point I am trying...
  16. Replies
    4
    Views
    430

    Many thanks. That solved the problem. Tom ...

    Many thanks. That solved the problem.

    Tom


    Are you using DLookup to retrieve the values? DLookup tends to return a string value even if the field you're looking up is numeric.

    If so, try...
  17. Replies
    4
    Views
    430

    Thanks. I thought the field size might be causing...

    Thanks. I thought the field size might be causing my problem but that was not it. I have several tax rate lookups that are working fine. I have a query that does the lookup and returns...
  18. Replies
    4
    Views
    430

    What is the best number format for a percentage...

    What is the best number format for a percentage in a table that would always be less than 100%?

    Tom
  19. Thread: Formula

    by TomGoodwin
    Replies
    7
    Views
    472

    Many tanks for the assistance. The formula turned...

    Many tanks for the assistance. The formula turned out to be working correctly. The problem was in another field which was adding the tax amount in which made it look like the formula was not working....
  20. Thread: Formula

    by TomGoodwin
    Replies
    7
    Views
    472

    I verified that the date in the formula is...

    I verified that the date in the formula is #06/30/2007# and RentPaidDate is in fact 06/01/2007.

    RentPaidDate is a field in tblRental
    Date/Time
    Short Date
    99/99/00;0;_

    Tom
  21. Thread: Formula

    by TomGoodwin
    Replies
    7
    Views
    472

    Yes. Tom Is the RentPaidDate a Date/Time...

    Yes.

    Tom


    Is the RentPaidDate a Date/Time field?
  22. Thread: Formula

    by TomGoodwin
    Replies
    7
    Views
    472

    I have a calculated field, ExtraKP, in a...

    I have a calculated field, ExtraKP, in a qryRentCalc0

    I am trying to make a tax calculation when two conditions are met:
    1. When [PState] = “SC”
    2. When [RentPaidDate] is after 06/30/2007.

    My...
  23. Thread: DLookup

    by TomGoodwin
    Replies
    4
    Views
    402

    Many thanks the new code works fine. Tom ...

    Many thanks the new code works fine.

    Tom





    Sorry, I had the condition wrong, try this instead:
  24. Thread: DLookup

    by TomGoodwin
    Replies
    4
    Views
    402

    If I don't add tblTaxRate to query, the queryasks...

    If I don't add tblTaxRate to query, the queryasks for EffectiveFrom and EffectiveTo. The query returns records but the State Tax Rate field is blank. I am trying to figure out the quotation marks....
  25. Thread: DLookup

    by TomGoodwin
    Replies
    4
    Views
    402

    I currently have tblPropertyName that has among...

    I currently have tblPropertyName that has among other fields 4 tax rate fields. There are multiple properties that are identified by PropertyIDs. Currently there is only one set of the 4 sales tax...
Results 1 to 25 of 493
Page 1 of 20 1 2 3 4