Search results

  1. J

    Can't Change Combo Box Font to Calibri

    Every time I change 2 combo boxes FontName to 'Calibri' in design view, it changes it back to 'Franklin Gothic Book.' This isn't occurring on any other form. Any ideas??? James
  2. J

    Calendar for Viewing Only

    Hi. I'm trying to find a calendar I can place on my form for viewing only. With the ability to move between months. I found one some time ago but have lost the link. James
  3. J

    Dreaded RunCommand Has Been Canceled

    I've been looking into Delete query. But can't seem to get it to work. Dim strCurRec As String strCurRec = "DELETE FROM tblReminders WHERE Me!ReminderID" When I click the delete button nothing happens. I never understood the syntax for this stuff.
  4. J

    Dreaded RunCommand Has Been Canceled

    Thanks for refreshing my memory on error handling. Works fine. James
  5. J

    Dreaded RunCommand Has Been Canceled

    When clicking no on the delete record dialog I get that RunCommand has been canceled. Public Function GlobalDelete() DoCmd.RunCommand acCmdDeleteRecord End Function How do I eliminate this??? James
  6. J

    A Bit Confused

    Thanks much for the information. James
  7. J

    A Bit Confused

    Some, I've seen are pretty expensive. Well, let me ask one more question. I'm using Access 2010. Would it be worth my while to upgrade to Access 2016? Is there any indication when the next version of Access is coming out?
  8. J

    A Bit Confused

    Ok. So, if I wanted to switch to MySQL, will I find all the tools I need in order to create forms, reports...?
  9. J

    A Bit Confused

    I've been using Access for a very long time. But, now, when I read about database management I am a bit confused now. Maybe things are different now then they were before. Just looking for the basics. First, (I'm using MySql as an excample) MySql isn't a Datrabae Management System, right?? It's...
  10. J

    Some Command Buttons Not Using QuickStyle

    Just an addition. I took out the line setting the QuickStyle. Lo and behold one form's buttons retained the QuckeStyle. I had to go in and change bunch of stuff to get the buttons back to normal. Not really surprised.
  11. J

    Some Command Buttons Not Using QuickStyle

    Yes, Use Theme is set to yes on all buttons. Things like this are keeping from upgrading to 2016. I just won't use the QuickStyle.
  12. J

    Some Command Buttons Not Using QuickStyle

    I've heard of that also, where themes aren't applied to existing forms. But, why is the theme being applied to some but not all?? One would think no form's buttons would apply the theme. If I copy and paste a button from a form where the cmd is using the tbeme, the button uses the theme. these...
  13. J

    Some Command Buttons Not Using QuickStyle

    Public Function BtnProperties(frm As Form) For Each ctl In frm.Controls If ctl.ControlType = acCommandButton Then ctl.QuickStyle = 37 End If I'm calling tis code in the onload of all my forms. Problem is, mnost of the form's comand buttons are honoring the QuickStyle. But, on one...
  14. J

    Message Box Pops Up Before Form

    Now I'm confused. First, lets get this less than greater than symbol right. If I want to check to see if ReminderDate is earlier than today the less than greater than symbol should by pointing to ReminderDate????? ie: ReminderDate <Date() ie: 2<5 or 5>2. No matter which way the symbol is...
  15. J

    Message Box Pops Up Before Form

    THis code: If Me!ReminderDate > Date Then DoCmd.SelectObject acForm, "frmWeekView" MsgBox "Past Due Reminders" End If Works fine on 2 of my other forms, in the On Load, that I base tblReminders on. The difference is the forms it works on are populated with the...
  16. J

    Message Box Pops Up Before Form

    Again, this form DOES NOT display any text fields form the table it is based on.
  17. J

    Message Box Pops Up Before Form

    What is TextFirst representing?
  18. J

    Message Box Pops Up Before Form

    I'm getting 'variable not defined' on tblReminders.
  19. J

    Message Box Pops Up Before Form

    Where does the message box fit in?
  20. J

    Message Box Pops Up Before Form

    I'm checking to see if any record's date (ReminderDate) is before today. I want to see if there are any past due reminders.
Back
Top Bottom