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

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

Similar Threads

Reg string public const 4
Calculating totals in access 1
Declaring Public Const 11
Eval(CONSTANT)? 3
Constants 2
Create a Table with Multiple Values Listbox 0
Weird Behaviour of Compiler Directives? 14
modify modules 1

Back
Top