What function will you use if you want informations to be retrieved from an ini file?
J jbkirby via AccessMonster.com Jan 14, 2008 #1 What function will you use if you want informations to be retrieved from an ini file?
A Arvin Meyer [MVP] Jan 14, 2008 #2 Open "C:\MyFolder\MyFile.ini" For Output Shared As #1 ' Read something Close #1
D Dirk Goldgar Jan 14, 2008 #3 Arvin Meyer said: Open "C:\MyFolder\MyFile.ini" For Output Shared As #1 ' Read something Click to expand... Gonna have a little trouble reading it if you open it for output, aren't you, Arvin? <g>
Arvin Meyer said: Open "C:\MyFolder\MyFile.ini" For Output Shared As #1 ' Read something Click to expand... Gonna have a little trouble reading it if you open it for output, aren't you, Arvin? <g>
D Dirk Goldgar Jan 14, 2008 #4 jbkirby via AccessMonster.com said: What function will you use if you want informations to be retrieved from an ini file? Click to expand... As an alternative to using basic text I/O statements, it may be that you can use Windows API functions for this purpose. See this link: http://allapi.mentalis.org/apilist/GetPrivateProfileString.shtml But I can't say for sure if these API functions still work with recent versions of Windows.
jbkirby via AccessMonster.com said: What function will you use if you want informations to be retrieved from an ini file? Click to expand... As an alternative to using basic text I/O statements, it may be that you can use Windows API functions for this purpose. See this link: http://allapi.mentalis.org/apilist/GetPrivateProfileString.shtml But I can't say for sure if these API functions still work with recent versions of Windows.