Search results

  1. J

    Front End doesn't load if back end is missing

    I'm trying to implement the J Street Relinker on a db which has just been split into FE/BE. I've used the relinker on another db and I don't think the problem is the relinker. If I rename the BE, then when loading the FE, I get the Access attached screen as if no db was loaded. If I select the...
  2. J

    pic on form using a URL

    Is there some way to have a Picture property of a linked .jpg on a form reference a URL instead of a spot on the hard drive? I'll ultimately want to change the URL in my code depending on which pic to show, but I'd like to get a hard coded example working first. Using Access 2003. thanks, James
  3. J

    438 error sending Outlook e-mail

    I'm getting an error sending e-mails using Outlook. It works fine with Outlook 2002, but I'm getting a 438: Object doesn't support this property or method from the Outlook 2000 system. I'm late binding the Outlook object to help remove incompatibility issues. I'm using Outlook so I can send...
  4. J

    setting FrozenColumns value

    I would like to be able to set the FrozenColumns property of a form. But it's read only. What I'm doing is saving and restoring some of the properties of a datasheet subform so that the column changes a user makes will be restored automatically when the form opens. I've done this...
  5. J

    Sending HTML E-mails

    When I send an HTML e-mail, I must display the message, for the body to be placed in the email. If I comment out the .display, the body of the email is blank. I'd prefer not to display the message. below is my code. Dim objOutlook As Outlook.Application Dim objMsg As Outlook.MailItem...
  6. J

    SendObject attachment

    Is there a way to attach a file to an e-mail using DoCmd.SendObject? I'm using SendObject because I can't guarantee that the users machine will include Outlook. The file I want to attach is a simple .CSV file on my local hard drive. Thanks for any ideas. James
  7. J

    ADOX relationship creation

    I am creating a 1 to many relationship between 2 tables (in the back end). I want the record on the parent table to be optional (0 or 1 record). While creating the relationship programmatically I get an error. "You cannot add or change a record because a related record is required in table...
Back
Top Bottom