What all are the features that do run in Ms Access Application. Not in Runtime?

Thread Starter

Shafty

Joined Apr 25, 2023
327
My client's Ms Office trial license has expired. Planning to utilize the runtime instead of purchasing the application... if it works
Code:
Private Sub SaveToPenDrive()
  Call DoCmd.OpenReport("Delivery_Weekly", acViewPreview, , "Customer=" & Me.ID.Value)
  If Dir("E:\Software Bills\" & Date & "\", vbDirectory) = "" Then MkDir ("E:\Software Bills\" & Date & "\")
  Call DoCmd.OutputTo(acOutputReport, "Delivery_Weekly", acFormatPDF, "E:\Software Bills\" & Date & "\" & Me.NameVal.Value & ".pdf")
End Sub
Thanks.
With Hope,
Prabhakaran
 

Thread Starter

Shafty

Joined Apr 25, 2023
327
I just need a confirmation. That a feature which is not running in a subscribed application may run in runtime...!
 

joeyd999

Joined Jun 6, 2011
6,204
My client's Ms Office trial license has expired. Planning to utilize the runtime instead of purchasing the application... if it works
Code:
Private Sub SaveToPenDrive()
  Call DoCmd.OpenReport("Delivery_Weekly", acViewPreview, , "Customer=" & Me.ID.Value)
  If Dir("E:\Software Bills\" & Date & "\", vbDirectory) = "" Then MkDir ("E:\Software Bills\" & Date & "\")
  Call DoCmd.OutputTo(acOutputReport, "Delivery_Weekly", acFormatPDF, "E:\Software Bills\" & Date & "\" & Me.NameVal.Value & ".pdf")
End Sub
Thanks.
With Hope,
Prabhakaran
Why would one hard code drive letters and paths?
 
Top