Archive: Ini file readout without header


Ini file readout without header
is there a way to read out a string out of a ini file that doesn't have a 'header'
usual ini file that works without problems:


[Header]
Value1=A
Value2=B

my ini file i have a problem with

Value1=A
Value2=B

so how can i read out a value now?

DOCa Cola

I'm afraid that is not possible using standard Windows API. You will have to use file input commands and parse the strings.


ok, thx for the quick answer