Storing a changable string

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
 
D

Douglas J. Steele

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.)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top