05-27-2012, 09:26 PM
The below does not work.
I need to be able to do each copy to variable separately.
One copy and/or selection at a time.
For instance the first one would be
;create global variables
str+ g_sA g_sB g_sC g_sD g_sE g_sF g_sG g_sH g_sI g_sJ g_sK g_sL g_sM g_sN g_sO g_sP
;copy1
g_sA.getsel
However when I get to
;create global variables
str+ g_sA g_sB g_sC g_sD g_sE g_sF g_sG g_sH g_sI g_sJ g_sK g_sL g_sM g_sN g_sO g_sP
;copy12
g_sO.getsel
This approach does not work.
The approach below does not work since I need to select before I use the .getsel
str+ g_sA g_sB g_sC g_sD g_sE g_sF g_sG g_sH g_sI g_sJ g_sK g_sL g_sM g_sN g_sO g_sP
g_sA.getsel
g_sB.getsel
g_sC.getsel
g_sD.getsel
g_sE.getsel
g_sF.getsel
g_sG.getsel
g_sH.getsel
g_sI.getsel
g_sJ.getsel
g_sK.getsel
g_sL.getsel
g_sM.getsel
g_sN.getsel
g_sO.getsel
g_sP.getsel
The main question is:
Why does the global variables stop after 10 variables when they are treated separately?
Thanks for your help
I need to be able to do each copy to variable separately.
One copy and/or selection at a time.
For instance the first one would be
;create global variables
str+ g_sA g_sB g_sC g_sD g_sE g_sF g_sG g_sH g_sI g_sJ g_sK g_sL g_sM g_sN g_sO g_sP
;copy1
g_sA.getsel
However when I get to
;create global variables
str+ g_sA g_sB g_sC g_sD g_sE g_sF g_sG g_sH g_sI g_sJ g_sK g_sL g_sM g_sN g_sO g_sP
;copy12
g_sO.getsel
This approach does not work.
The approach below does not work since I need to select before I use the .getsel
str+ g_sA g_sB g_sC g_sD g_sE g_sF g_sG g_sH g_sI g_sJ g_sK g_sL g_sM g_sN g_sO g_sP
g_sA.getsel
g_sB.getsel
g_sC.getsel
g_sD.getsel
g_sE.getsel
g_sF.getsel
g_sG.getsel
g_sH.getsel
g_sI.getsel
g_sJ.getsel
g_sK.getsel
g_sL.getsel
g_sM.getsel
g_sN.getsel
g_sO.getsel
g_sP.getsel
The main question is:
Why does the global variables stop after 10 variables when they are treated separately?
Thanks for your help