2006-04-21
05:24 PM
- last edited on
2023-05-26
03:08 PM
by
Rubia Torres
2006-04-21 07:10 PM
if gs_working_unit=`Inch` then
szov=str("%.32 ffi",AC_WIDO_A_SIZE)
inc=strlen (szov)
szovv=strsub (szov,1,inc-1)
fee=strstr (szovv,"'")
szo1=strsub(szovv,1,fee-1)
szo2=strsub(szovv,fee+1,inc-1)
szoveg1=szo1+szo2
szov=str("%.32 ffi",AC_WIDO_B_SIZE)
inc=strlen (szov)
szovv=strsub (szov,1,inc-1)
fee=strstr (szovv,"'")
szo1=strsub(szovv,1,fee-1)
szo2=strsub(szovv,fee+1,inc-1)
szoveg2=szo1+szo2
szoveg=szoveg1+GS_Separator+szoveg2
endif
but I'm not sure exactly where... probably near the bottom, like possibly szoveg1=szo1 + """ + szo2 +"'"2006-04-21 11:04 PM
if gs_working_unit=`Inch` then szoveg=str("%.32 ffi",AC_WIDO_A_SIZE)
Remember to always work on a copy. Do not modify existing parts unless you are really sure of what you are doing.
2006-04-26 07:28 PM
if gs_working_unit=`Inch` then
szov1=str("%.32 ffi",AC_WIDO_A_SIZE)
szov2=str("%.32 ffi",AC_WIDO_B_SIZE)
szoveg=szov1+GS_Separator+szov2
endif
Thanks for all the help...