Search results

  1. T

    Entering text into a table via a query

    My Statement works fine just would to have a label on invoice to say paid, Some times if his invoices come to say 5k he may only pay 3k
  2. T

    Entering text into a table via a query

    Trouble is Client may have 6 Invoices and may only pay say half the owing amount Just wanted to get a paid label on invoices manually Thanks Bob
  3. T

    Entering text into a table via a query

    Just 2 tables tblInvoice tblAccountStatus which both have a ClientID to connect them in a query, Tables are not linked
  4. T

    Entering text into a table via a query

    They are just optional data if you want to enter into [Mode of Payment] or [Amount] of that invoice, Just wanted to have a PAID label on Invice if paid so if at any stage client wanted a copy of old Invoice it would have PAID written on it Thanks Bob
  5. T

    Entering text into a table via a query

    This will be why I can enter anything into my query............Thanks Bob It has a GROUP BY clause. A Totals query is always read-only SELECT tblInvoice.OwnerID, tblInvoice.InvoiceNo, tblInvoice.HorseID, [HorseName] & [ClientDetail] AS HorseNameB, tblInvoice.InvoiceDateInv...
  6. T

    Entering text into a table via a query

    But this information is going to tblAccounts and I'm wanting to go to tblInvoices where this information is showing in my subform Thanks Bob Private Sub cmdEnterHorse_Click() Me.Parent!tbModeOfPayment = Me!tbHorseName.value & " " & tbPercentage.value End Sub Private Sub cmdEnterInv_Click()...
  7. T

    Entering text into a table via a query

    It enters payment descriptions or Invoices numbers into payment descriptions or enter only that invoice total in to Paid amount but all this info is stored in TblAccount and Im trying get Paid save into tblInvoices
  8. T

    Entering text into a table via a query

    Private Sub cmdPaid_Click() Me.[tbSpareText] = "PAID" Me.Dirty = False End Sub This did not update the field The recordset is not updateable Thanks Bob
  9. T

    Entering text into a table via a query

    This is what I would like to do , I actually entered the word PAID into my tbInvoice manually
  10. T

    Entering text into a table via a query

    Option 1 , The recordset is not updateable This is my form with the subform of multiple records
  11. T

    Entering text into a table via a query

    No just one invoice at a time, Like a button to enter "Paid" into tbSpareText that shows on the subform, The subform shows all his Invoices
  12. T

    Entering text into a table via a query

    My Form has a sub form, When I select a client the sub form filters all his Invoice's. I want to add a button in my sub form to enter the word "PAID" to that record in the sub form. The main form has focus to TblAccounts and my sub form has a query to tblInvoices . The query in linked by...
  13. T

    Access calling up a web page from a unbound text box

    Thanks Tom, had to delete it as the site thought it was spam!
  14. T

    Access calling up a web page from a unbound text box

    This code works but if the horses name was in a unbound text box could I substitute the horse name "Kenny" to say "tbhorseName" loveracing.nz/RaceInfoSearch.aspx?q=Kenny&s=All&g=All&r=undefined&t=Name#horse Thanks for any help.......Bob Vance
  15. T

    Bold font for numbers more than -1

    Well nearly did the trick, I am trying to get tbInvoiceAmount to drop its font from 9 to 8 if tbFlag is -1 Conditional Formatting has no option of reducing the text size, Any Thoughts...........Regards Bob
  16. T

    Bold font for numbers more than -1

    Thanks Tom that did the trick
  17. T

    Bold font for numbers more than -1

    On my subform of my report I am trying to force access to give numbers more than minus 1 and bold font Is this possible? This is the control source to the text box =IIf([Flag]=0,[AmountSummary],"(" & Format([AmountSummary],'$#,##0.00;$#,##0.00') & ")") Thanks for any help................Bob
  18. T

    Solved-Trying to Delete empty records!

    I moved my code to OnLoad of my Main opening page instead of my closing button, and now the code is deleting the records thats have the 4 blank fields Thanks for everybodys help :) Bob
  19. T

    Solved-Trying to Delete empty records!

    Any reason the delete code dose not work When I shut down my database .. Thanks Bob Private Sub cmdQuitSlow_Click() 'Me.ckbUpdate = True 'Forms!frmMain.Requery DoCmd.SetWarnings False DoCmd.SetWarnings False DoCmd.OpenQuery "qryOrphanAddCharges" DoCmd.OpenQuery "qryOrphanDaily" DoCmd.OpenQuery...
Back
Top Bottom