S
skulkrinbait
I'm using Excel to create a screen designer utility with a VBA macro
which will take the screen once designed and output source code which
can then be compiled to actually display the screen in the environment
it is designed for.
One problem I have is I need to convert the positions of the various
fields from their Excel format ie "C3" into x and Y coordinates, so
foir example "I14" becomes 9,11. I'm using a range loop to go through
the screen picking out the fields:
For Each sMainScreen In Range("C4:CA21")
.............
Next sMainScreen
But how can I write something to work out each location as it finds
the fields?
Thanks for any assistance, hope it's clear enough.
which will take the screen once designed and output source code which
can then be compiled to actually display the screen in the environment
it is designed for.
One problem I have is I need to convert the positions of the various
fields from their Excel format ie "C3" into x and Y coordinates, so
foir example "I14" becomes 9,11. I'm using a range loop to go through
the screen picking out the fields:
For Each sMainScreen In Range("C4:CA21")
.............
Next sMainScreen
But how can I write something to work out each location as it finds
the fields?
Thanks for any assistance, hope it's clear enough.