R
Randy K
Novice VBA question.
I’ve written a VBA program in ESRI's ArcMap software that takes and
imports a serices of coverages into a Spatial Database Engine.
Currently I use a series of msgbox commands to track execution of the
code. But what I’d like to do is display in a window a running
collection of all the text that is currently being displayed using
msgbox. I tried creating a form with a textbox but it will only
display text set before I show the form.
How should I be approaching this problem?
Public Sub TestResults()
'This does not work but illustrates conceptually what I want to do
frmResults.Show
frmResults.txtResults.Text = "Line 1"
frmResults.txtResults.Text = "Line 2"
End Sub
Thanks,
Randy K
(e-mail address removed)
I’ve written a VBA program in ESRI's ArcMap software that takes and
imports a serices of coverages into a Spatial Database Engine.
Currently I use a series of msgbox commands to track execution of the
code. But what I’d like to do is display in a window a running
collection of all the text that is currently being displayed using
msgbox. I tried creating a form with a textbox but it will only
display text set before I show the form.
How should I be approaching this problem?
Public Sub TestResults()
'This does not work but illustrates conceptually what I want to do
frmResults.Show
frmResults.txtResults.Text = "Line 1"
frmResults.txtResults.Text = "Line 2"
End Sub
Thanks,
Randy K
(e-mail address removed)