Hi, i need load a file with 20.000 lines and put in combobox.
Im using:
$cfgMac = FileOpen(@TempDir & '\MacList.cfg') $ArrayMac = FileReadToArray($cfgMac) For $j = 0 to (UBound($ArrayMac) - 1) _GUICtrlComboBox_AddString($MacList, $ArrayMac[$j]) Next FileClose($cfgMac)
are there any form to do fastter ?. Thz