Hi, Rusty,
here some hints for your request.
Here it goes: Initialize your DDL (drop down list)
Code:
Gui, Add, DDL, vmyDDL, A|B|C
Now make your choice by clicking onto a value of your DDL
At programme's ende write the currently chosen value to an .INI-file
Code:
Gui, Submit, Nohide
; IniWrite, Value, Filename, Section, Key ; look for it in the manual
At next programme start read the value from your .INI-file
Code:
;IniRead, OutputVar, Filename, Section, Key ; look for it in the manual
and put your DDL to the read value
Code:
GuiControl, Choose, myDDL, %variableFilledFromInifile%
That's it!
Regards,
Klaus