Forum Discussion
AlexKaras
16 years agoCommunity Hero
Hi Derek,
Something like this (untested plain translation):
Dim drv
Dim wnd
Set drv = ' Create a new DDT driver
Set wnd = ' Obtain the window which contains text boxes
While(Not drv.EOF())
wnd.textBox1.Keys(drv.Value("textBox1Value"))
'...
wnd.textBoxN.Keys(drv.Value("textBoxNValue"))
drv.Next()
Wend
Something like this (untested plain translation):
Dim drv
Dim wnd
Set drv = ' Create a new DDT driver
Set wnd = ' Obtain the window which contains text boxes
While(Not drv.EOF())
wnd.textBox1.Keys(drv.Value("textBox1Value"))
'...
wnd.textBoxN.Keys(drv.Value("textBoxNValue"))
drv.Next()
Wend