arjun_ta
12 years agoContributor
DDTOBJECT
Hi,
I have connected the DDT driver to an excel present in my local,now how can i set the value lets say DDT.CurrentDriver.Value(0)to a particular object.
for example my object name is
Sys.Process("Bedrock").Window("#32770", "Save As", 1).Window("DUIViewWndClassName", "", 1).Window("DirectUIHWND", "", 1).Window("FloatNotifySink", "", 1).Window("ComboBox", "", 1).Edit("File name:")
how can put the value present in DDT.CurrentDriver.Value(0) in the combobox or the edit box.
I am usin VB scripting.
Appreciate anyone's help on this.
Regards,
Arjun
I have connected the DDT driver to an excel present in my local,now how can i set the value lets say DDT.CurrentDriver.Value(0)to a particular object.
for example my object name is
Sys.Process("Bedrock").Window("#32770", "Save As", 1).Window("DUIViewWndClassName", "", 1).Window("DirectUIHWND", "", 1).Window("FloatNotifySink", "", 1).Window("ComboBox", "", 1).Edit("File name:")
how can put the value present in DDT.CurrentDriver.Value(0) in the combobox or the edit box.
I am usin VB scripting.
Appreciate anyone's help on this.
Regards,
Arjun
- Hi u have to create ddt driver and use them in script
Call DDT.ExcelDriver(filepath, Sheetname)
Sys.Process("Bedrock").Window("#32770", "Save As", 1).Window("DUIViewWndClassName", "", 1).Window("DirectUIHWND", "", 1).Window("FloatNotifySink", "", 1).Window("ComboBox", "", 1).Edit("File name:").keys DDT.CurrentDriver.Value(0)
for more details