G
glenn
Using the following code from Project's VBE, you can launch Excel
automatically.
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Sub showexcel()
' You can also use the return value of the Shell function.
ReturnValue = Shell("c:\EXCEL\EXCEL.EXE", 1) ' Run Microsoft Excel.
AppActivate ReturnValue ' Activate Microsoft
' Excel
End Su
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
My question is this. Is it possible to read data from a UserForm
in Project's VBA without actually launching an Excel spreadsheet?
Thanks,
glenn
automatically.
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Sub showexcel()
' You can also use the return value of the Shell function.
ReturnValue = Shell("c:\EXCEL\EXCEL.EXE", 1) ' Run Microsoft Excel.
AppActivate ReturnValue ' Activate Microsoft
' Excel
End Su
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
My question is this. Is it possible to read data from a UserForm
in Project's VBA without actually launching an Excel spreadsheet?
Thanks,
glenn