D Duncan Winn Sep 19, 2003 #1 What is the best way of accessing info from ini files from VC++ (in VS.NET).
D Daniel Bass Sep 19, 2003 #2 MFC's CStdioFile is probably the easiest way to open the file if it's in text... Then use the readline method to check each line... You'll want something like a list of keywords, which you can check your read line against. Good luck. Dan. What is the best way of accessing info from ini files from VC++ (in VS.NET).
MFC's CStdioFile is probably the easiest way to open the file if it's in text... Then use the readline method to check each line... You'll want something like a list of keywords, which you can check your read line against. Good luck. Dan. What is the best way of accessing info from ini files from VC++ (in VS.NET).
D David Lowndes Sep 19, 2003 #4 What is the best way of accessing info from ini files from VC++ (in VS.NET). Try using the GetPrivateProfileXXX/WritePrivateProfilexxx APIs. Dave
What is the best way of accessing info from ini files from VC++ (in VS.NET). Try using the GetPrivateProfileXXX/WritePrivateProfilexxx APIs. Dave
D Duncan Winn Sep 22, 2003 #5 thanks Andreas Magnusson said: Or you could use the functions designed for ini-files: GetProfileString, WriteProfileString, GetProfileSection et al. /Andreas Click to expand...
thanks Andreas Magnusson said: Or you could use the functions designed for ini-files: GetProfileString, WriteProfileString, GetProfileSection et al. /Andreas Click to expand...
D Duncan Winn Sep 22, 2003 #6 thanks David Lowndes said: VS.NET). Try using the GetPrivateProfileXXX/WritePrivateProfilexxx APIs. Dave Click to expand...
thanks David Lowndes said: VS.NET). Try using the GetPrivateProfileXXX/WritePrivateProfilexxx APIs. Dave Click to expand...