Search results

  1. 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
  2. T

    Bold font for numbers more than -1

    Thanks Tom that did the trick
  3. 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
  4. 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
  5. 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...
  6. T

    Solved-Trying to Delete empty records!

    DELETE tblHorseInfo.HorseName, tblHorseInfo.MotherName, tblHorseInfo.FatherName, tblHorseInfo.StableName, * FROM tblHorseInfo WHERE (((tblHorseInfo.HorseName) Is Null) AND ((tblHorseInfo.MotherName) Is Null) AND ((tblHorseInfo.FatherName) Is Null) AND ((tblHorseInfo.StableName) Is Null)); This...
  7. T

    Solved-Trying to Delete empty records!

    When I entered the Nulls the query said there where no fields , Thanks
  8. T

    Solved-Trying to Delete empty records!

    Ok one little problem ,when I double click on my query it works but when i enter in into my shut down button it does not delete the top 3 records, Thanks for any help ..Bob qryDeleteNoDetails is my query Private Sub cmdQuitSlow_Click() Me.ckbUpdate = True Forms!frmMain.Requery...
  9. T

    Solved-Trying to Delete empty records!

    isladogs your a legend, Your code worked perfect deleted out the top 3 fields, Thanks for all your help everybody :) Regards Bob DELETE *<br>FROM tblHorseInfo<br>WHERE Nz(HorseName,"")="" AND Nz(FatherName,"")="" AND Nz(MotherName,"")="" AND Nz(StableName,"")="";
  10. T

    Solved-Trying to Delete empty records!

    Thanks Tom, Usally Horses keep there racing name unless they go to another country,This database is just for my stable so if the horse leaves I put that horse in finish mode, Actually Horse Name and Stable name are usally different. Example horse Racing Name "Perfect Dividends) and stable Name PD
  11. T

    Solved-Trying to Delete empty records!

    Thanks Plog, This is my result
  12. T

    Solved-Trying to Delete empty records!

    I Ran your code June7 , for some reasson record 218 does not have a zero, the top 3 records should be deleted
  13. T

    Solved-Trying to Delete empty records!

    DELETE tblHorseInfo.HorseName, tblHorseInfo.FatherName, tblHorseInfo.MotherName, tblHorseInfo.StableName, tblHorseInfo.HorseID FROM tblHorseInfo WHERE (((tblHorseInfo.HorseName)="") AND ((tblHorseInfo.FatherName)="") AND ((tblHorseInfo.MotherName)="") AND ((tblHorseInfo.StableName)="")); Code...
  14. T

    Solved-Trying to Delete empty records!

    Tried using Is Null same result, Thanks
  15. T

    Solved-Trying to Delete empty records!

    There is about 20 fields in each record, but if these 4 fields are all empty I want the record deleted. All the fields are Short text. At the moment I have a record that has 4 empty filds but it is not asking to Delete 1 Record. Thanks for any help.......Bob DELETE tblHorseInfo.HorseName...
  16. T

    Access When emailing brings up Outlook 2016 wizard to add email account

    Thanks Guys :) Changed to outlook classic and my access database is now emailing, Had some trouble entering my details but finnaly figured out its not a POP account but a IMAP, Thanks again :)
  17. T

    Access When emailing brings up Outlook 2016 wizard to add email account

    Yes and I dont like it I would to like to use another version can I change my email client? Thanks Bob
  18. T

    Access When emailing brings up Outlook 2016 wizard to add email account

    I am running Windows pro 11 and Microsoft access 2024 on a 64 bit operating systerm. When I uprgraded from Access 2013 to access 2024 , when My database activates to email its brings up Outlook 2016 wizard. I have Outlook new open but access dosent seem to want to use it. Do you think it might...
  19. T

    Active X Error when emailing from Access

    This Laptop came with Windows 10 pro, So I imagine Outlook New came with that. So cant go back to Outlook Classic. When downloading Windows Classic and try to install it, I am getting this message. To install this product, first uninstall Microsoft Visio Standard 2019 Microsoft Office...
  20. T

    Active X Error when emailing from Access

    Thanks Doc Man, Yes this is Outlook (New) , I dont see A option to revert to the old Outlook Also I tried my database through Windows Live and got the same error Thanks for your help.....Bob
Back
Top Bottom