我有一个包含多个部分的ListBox(ListBox1),例如: 高强 字 观
当我点击某个部分时,它有多个相应的文本框,例如:
的Item1 txtbxCommandline c:\ word.exe txtbxShortcut 1 txtbxVersion 14
项目2 txtbxCommandline c:\ excel.exe txtbxShortcut 2 txtbxVersion 12
项目3 txtbxCommandline c:\ PowerPoint.exe txtbxShortcut 2 txtbxVersion 11
我使用以下代码将文本框的部分名称和值写入文件:
For Each item In ListBox1.Items
writeIni(file, item, CommandLine, txtbxCommandLine.Text)
writeIni(file, item, Shortcut, txtbxShortcut.Text)
writeIni(file, item, Version, txtbxVersion.Text)
文件是INI文件 项目是科 版本是标题 Txtbx是值
代码只将第一个值(在本例中为C:\ Word.exe值)写入3个部分,而不是3个部分使用不同的值。
我的问题是,如何在INI文件中获取不同的值,而不是相同值的3倍?