A
avkokin
Hello.
Probably I found solution for getting the path for recent files. It
can get from registry. Examle, for Office 2003 it is here:
HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Common\General
\RecentFiles
I want to get value from this key. How?
I used follow code:
Sub getPathRF()
'get the path for recent files
Dim oPath As String
Dim sPath As String
oPath = "HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Common
\General\RecentFiles"
sPath = GetSetting() '???? I don't dig ????
MsgBox sPath
End Sub
However I don't know how to get value for my case? Help VBA don't
explain for me.
Thank you very much.
Probably I found solution for getting the path for recent files. It
can get from registry. Examle, for Office 2003 it is here:
HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Common\General
\RecentFiles
I want to get value from this key. How?
I used follow code:
Sub getPathRF()
'get the path for recent files
Dim oPath As String
Dim sPath As String
oPath = "HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Common
\General\RecentFiles"
sPath = GetSetting() '???? I don't dig ????
MsgBox sPath
End Sub
However I don't know how to get value for my case? Help VBA don't
explain for me.
Thank you very much.