Search results

  1. J

    Message Box Pops Up Before Form

    The form isn't showing any records. I based the form on tblReminders so I can reference ReminderDate in tblReminders. If ReminderDate for na record in tblReminders is less than Today (past due) I want the message box to tell me.
  2. J

    Message Box Pops Up Before Form

    I should have explained further but I didn't expect it to be that complicated. This form does not display any records from the table that I have based the form on (tblReminders) The form is similar to a main menu.
  3. J

    Message Box Pops Up Before Form

    I tried that before. Now, even though there's a date earlier than today the message box does not pop up.
  4. J

    Message Box Pops Up Before Form

    Well, at tis time there are no dates less than today but the message box still pops up.
  5. J

    Message Box Pops Up Before Form

    I now can't seem to get it to work properly. The message box pops up regardless whether any record's date is before today. If Me!ReminderDate > Date Then DoCmd.SelectObject acForm, "frmWeekViewNew" MsgBox "Past Due Reminders" End If Also, am I the only one having...
  6. J

    Message Box Pops Up Before Form

    I needed the SelectObject: If Me!ReminderDate > Date Then DoCmd.SelectObject acForm, "frmWeekViewNew" MsgBox "Past Due Reminders" Else End If It works ok now. Thanks, james
  7. J

    Message Box Pops Up Before Form

    On the on Load of a form I'm checking the value of a date field. The message box pops up fine, but before the form opens. How do I have the form open before the message box. I thought using SelectObject some how works but I'm not sure how. If Me!ReminderDate > Date Then...
  8. J

    Importing Google Contacts into a Blank Access Table

    I tried but to insert a the csv attachment but the site tells me it's an invalid file.
  9. J

    Importing Google Contacts into a Blank Access Table

    Not sure if it will help, but. There is an address column off the right which didn't fit.
  10. J

    Importing Google Contacts into a Blank Access Table

    Well, seeing that I have some personal ph0one numbers, is there another way?
  11. J

    Importing Google Contacts into a Blank Access Table

    I credited a db with the imported data.
  12. J

    Importing Google Contacts into a Blank Access Table

    Problem is, Field1 has parts of the contact name and part of the address. It's a garbled mess.
  13. J

    Importing Google Contacts into a Blank Access Table

    I want to import my Google contacts into a blank access table. The structures is very different. I exported Google contacts as a .csv (google and outlook types) and neither worked. The exported files has 90 fields. It did import data but it seemed to separate much of the data between the Access...
  14. J

    Centering a Rectangle on a Form

    I'm using a tabbed interface so the form spans the width of the monitor. It doesn't need to be perfect but I measured the width of the monitor and used the formula and it looks ok now. I eye-balled the vertical position. Thanks much, James
  15. J

    Centering a Rectangle on a Form

    I just going by the values when the form is in design view. I'm not setting any values as far as the form's size or can grow.
  16. J

    Centering a Rectangle on a Form

    I'm not using twips. I'm taking the width of the form (13.76) and the width of the rectangle (7.35). Subtracting them (6.41) ad dividing that by 2 (3.2). So, the left side of the rectangle should be at 3.2?
  17. J

    Centering a Rectangle on a Form

    I used the formula but the rectangle is noticeably too far too the left and to the bottom. It looked mot centered when I just eyed it.
  18. J

    Centering a Rectangle on a Form

    I'm using a tabbed interface and have placed a rectangle on a form and placed command buttons inside the rectangle. How can I center the rectangle which is about a third the size of the form?? Is there a formula I might use? I'm not much of a mathematician. James
Back
Top Bottom