nun mal langsam....
ich nehme mal an, deine INI-Datei sieht so aus:
[userinformationen]
username=
und dann bekommst du einen Leerstring zurück mit
user_name := ini.readstring('userinformationen', 'username', '');
2 Fragen:
a) Was erwartest du anderes ?
b) was soll daran ein Bug sein ?
wenn du einen Default-string "
LocalHost" willst, dann schreib doch einfach
user_name := ini.readstring('userinformationen', 'username', 'LocalHost');
Roderich