Guest_imported
New member
- Jan 1, 1970
- 0
I am currently working on a project which during startup checks many params and sets up the user environment. Instead of a splash dialog, I want to create a splash that contains a box to display certain messages such as:
ThisParameter - Passed.
ThatParameter - Failed.
My question is what to use? A list box or edit box and how do I continue adding to it making sure for asthetics that each message begins on a new line?
I thought about
lcMessage = "What Parameter Passed"
------
oSplash.Message.Value = oSplash.Message.Value + CHR(13) + lcMessage
Don't know if there might be a quicker more efficient way?
T-i-A
R
ThisParameter - Passed.
ThatParameter - Failed.
My question is what to use? A list box or edit box and how do I continue adding to it making sure for asthetics that each message begins on a new line?
I thought about
lcMessage = "What Parameter Passed"
------
oSplash.Message.Value = oSplash.Message.Value + CHR(13) + lcMessage
Don't know if there might be a quicker more efficient way?
T-i-A
R