The case:
We have a customer index on database, every customer has unique customer number.
Every now and then we need to print out some customers. We do this from Windows application, it asks for start - end number, for example customers 150-200.
We have a list of customernumbers, which we need to print out, basically an Excel/TXT file:
Code: Select all
234
438
1025
77352
To print out customers, we input 234 as start AND end number, then 438, etc...
This is little bit tricky because the same value needs to be entered twice.
Does anyone have an idea how to do this? If Macro Scheduler supports reading data from textfile, then it would look something like this:
Read CUSTOMERS.TXT Line1
Move cursor to START, Send Line1
Move cursor to END, Send Line1
Move and leftclick "Print"
Read CUSTOMERS.TXT Line2
...etc.