i'm trying to have duplicate keys in ini file like this:
[section]
key1 = "value1"
key2 = "value2"
key1 = "value....."
Private Declare Ansi Function WritePrivateProfileString _
Lib "kernel32.dll" Alias "WritePrivateProfileStringA" _
(ByVal lpApplicationName As String, _
ByVal lpKeyName As String, ByVal lpString As String, _
ByVal lpFileName As String) As Integer
You might want to read your ini file duplicate keys into lookup instance.
Something like below might help: