|
|
Question : To find an INI file from Access
|
|
Hello,
I have a simple code in my Access DB to get or write to the ini file. ----------------------------------------------------------------------------------------- Function GetIniEntrySettings(strSection As String, strEntry As String) As String
GetIniEntrySettings = GetSetting("Sample", strSection, strEntry, "") End Function ---------------------------------------------------------------------------------------------
But I don't know how to find that INI file! How can I locate that INI file? I didn't create that DB and need to find that ini file. Code doesn't define or declare any INI files. Is there some settings in the MDB file I can check? Is there a defualt folder that ini files sit?
So to summarize - how can I find the ini file that my code talks to.
|
Answer : To find an INI file from Access
|
|
locate the "Sample" key and export it to a *.reg file (only that branch). Copy that file to your computer and double-click it.
Cheers! (°v°)
|
|
|
|
|