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 =...
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.