Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. NorwalkPhil

    Moving Memo in Subform to Textbox on Main Form Truncated

    My subform displays a list of various types of problems. When the user clicks on a particular problem, the suggested fix is displayed in a textbox on the main form. Everything works fine except that the data is truncated to 255 characters. Main form = ODS2Dashboard Textbox on ODS2Dashboard =...
  2. NorwalkPhil

    Problem Saving PDF to OLE Object Field

    I am creating a PDF from an Access report with this code: vRptNm = lstSelectedRpt.value vRptFile = "c:\" & vRptNm & ".PDF" DoCmd.OpenReport vRptNm ,acViewPreview DoCmd.OutputTo acOutputReport,"",acFormatPDF, vRptFile, false This works fine. Now I want to store the report in an OLE Object field...
  3. NorwalkPhil

    Storing a PDF in an OLE Object Field in a Table?

    I am creating a PDF from and viewing an Access report with this code: vRptFile = "c:\MyReport.PDF" DoCmd.OpenReport "MyReport",acViewPreview DoCmd.OutputTo acOutputReport,"",acFormatPDF, vRptFile,True This works fine. Now I want to stored the same report in an OLE Object field in a table (so it...
  4. NorwalkPhil

    Prevent Users from Deleting Records in a SubForm's SourceObject

    I have an unbound main form "myMainForm" with a subform "mySubForm". MySubForm's sourceobject is a table "myTable". The main form is used for data entry (via various textboxes, comboboxes, etc.) and the data in the subform is used as reference by the user doing the data entry. The properties...

Part and Inventory Search

Back
Top