ms-access-2010

Save files to OneDrive using Access VBA

余生长醉 提交于 2020-07-24 05:44:47
问题 Our systems are changing over to cloud storage to our personal drives will be vanishing soon, therefore I need to save save applications to users OneDrives. This is new territory for me and what I am reading online is not making much sense. This is what I have so far: Set FileSystemObject = CreateObject("Scripting.FileSystemObject") Dim FileExistsbol As Boolean Dim stFileName As String Dim CopyFrom As String Dim CopyTo As String stFileName = "C:\Users\" & Environ("UserName") & "\OneDrive -

Save files to OneDrive using Access VBA

戏子无情 提交于 2020-07-24 05:42:31
问题 Our systems are changing over to cloud storage to our personal drives will be vanishing soon, therefore I need to save save applications to users OneDrives. This is new territory for me and what I am reading online is not making much sense. This is what I have so far: Set FileSystemObject = CreateObject("Scripting.FileSystemObject") Dim FileExistsbol As Boolean Dim stFileName As String Dim CopyFrom As String Dim CopyTo As String stFileName = "C:\Users\" & Environ("UserName") & "\OneDrive -

Save files to OneDrive using Access VBA

半城伤御伤魂 提交于 2020-07-24 05:42:11
问题 Our systems are changing over to cloud storage to our personal drives will be vanishing soon, therefore I need to save save applications to users OneDrives. This is new territory for me and what I am reading online is not making much sense. This is what I have so far: Set FileSystemObject = CreateObject("Scripting.FileSystemObject") Dim FileExistsbol As Boolean Dim stFileName As String Dim CopyFrom As String Dim CopyTo As String stFileName = "C:\Users\" & Environ("UserName") & "\OneDrive -

How to Handle a Popup, Modal, Resizable form

ε祈祈猫儿з 提交于 2020-07-22 09:29:28
问题 I need to have a popup form resizable for users whose screen is not as large as others - setting the form to Popup and Modal and BorderStyle Resizable has one major limitation - the code in the form that launches the popup now does not wait for the form to return. So how does one wait for a form to be made invisible? I tried looping with sleep and doevents, but that makes the popup form not very responsive and chews up cpu cycles. I have tried setting the form.gotfocus event of the launching

How to Handle a Popup, Modal, Resizable form

主宰稳场 提交于 2020-07-22 09:29:18
问题 I need to have a popup form resizable for users whose screen is not as large as others - setting the form to Popup and Modal and BorderStyle Resizable has one major limitation - the code in the form that launches the popup now does not wait for the form to return. So how does one wait for a form to be made invisible? I tried looping with sleep and doevents, but that makes the popup form not very responsive and chews up cpu cycles. I have tried setting the form.gotfocus event of the launching

in access how to draw tables on Report and then export it on word

非 Y 不嫁゛ 提交于 2020-07-20 04:46:38
问题 I need to draw a table within report, I tried to use line (from controls in design tab in design view) and I it works , I have tables in report . but I need to export my report in word , and pdf . For pdf I can see tables that I created, but in word I dont have tables. Are there other ways to create tables within report? 回答1: Once you have added your fields into your report, if you select the ones you want in a table, you can select stacked or tabular in the 'Arrange' tab in 'Design view'.