Storing a changable string

  • Thread starter Thread starter David
  • Start date Start date
D

David

Hello

I currently have a listbox that gets its list information from a constant.

eg
in a module:
Public Const GeneralList = "'K8','Jet4','Ch900','N47'"

and in the formload:
Me.currentList.RowSource = GeneralList

I need one of the values to change every so often. Can I change what is
stored in the constant without passing it to a table or a file?
I would like to keep the list information within the front end of the
database.
Can I do it?

David
 
The only way would be to change the code.

Using a table or file would be the best approach. (I typically use an INI
file.)
 
Back
Top