Search results

  1. D

    How do embed an image of a webpage into excel?

    I have a spreadsheet with a column "URL". What I would like to accomplish thru VB is push a button and a small image of the URL is displayed in the adjacent cell. Think of it in terms of a store that has multiple products, each with a different URL. The cell to the right would contain an...
  2. D

    Data Input Form - Inconsistent with New Record

    I utilize two sub forms. One form lists all the data, the other is the data input form. I have set Data Entry, Allow Additions, Allow Deletions, Allow Edits to Yes. I have set Allow Filters to No. I have set Record Locks to No Locks The problem I run into is that it keeps on filling...
  3. D

    Image Hyperlink in Report

    I have an embedded .jpg that I want to act as a hyperlink when it moves on to a PDF. I have the hyperlink addresses stored in a field called: [Listings]! [Listing Link] The actual Hyperlink address within this field is...
  4. D

    Populate Bing Maps String

    I have a form that contains the following fields: Address City State Zip I convert this to FullAddress with: Dim FullAddress As String FullAddress = Address & " " & City & " " & State & " " & Zip I am outputting to Outlook and want to create a link to Bing Maps with: "<br><A...
  5. D

    HTML Tabbing (I Know) and Currency Formatting

    I have created a bit of code that pulls data from a form and populates an email for use in Outlook. I am down to a few formatting hurdles and am unsure of how to go about it. The First Issue. My current output looks like this SHOWING INFORMATION Agent: Some Agent Office: Some Office Showing...
  6. D

    Using HREF from field in Access in Outlook

    I have a field called "Listing Link". In that field there is a full URL path. I want to put this in the body of my email as a link. I have identified the field as: ListingLink = Me! [Listing Link]I try to populate the body of the email with: "<A HREF=ListingLink>Link to Listing</A>"But...
  7. D

    Email and Outlook

    My goal is to send Email thru Outlook from MS Access utilizing certain fields in my form. I am testing the concept with the following code: Private Sub Send_Info_Click() Dim Email As String '**create variables for Outlook Dim objOutlook As Object Dim objEmail As Object...
  8. D

    Button opening PDF File

    I have a Button that I want to press to open a PDF. The path to the PDF is constructed from a table called[Listings] that contains part of a link in a field called [Property Root Folder] and then add the end part of the link in another table called [Valuations] with the field [Valuation Link]...
Top Bottom