Normal Topic Works in DESIGNER but not in SESAME PLUS! (Read 11926 times)
NHUser
Full Member
***
Offline



Posts: 320
Location: Amherst, NH
Joined: Aug 2nd, 2010
Works in DESIGNER but not in SESAME PLUS!
Feb 5th, 2020 at 9:12pm
Print Post Print Post  
I have the following programming that works as wanted in Designer, but when I reconciled it with my active Sesame program, it does not!

Any idea why this is happening?

Thanks!

NHUser

var DirectoryList as string
var vDCNumber as string
var vSortedList as string
var vShowList as string
var vTemp as Int

vDCNumber = @left(Diacom P\N,4)

PopupSelectPosition(4, @XPos(ThisElement)-200, @YPos(ThisElement))

     directoryList = @LocalListDirectory("F:Doc\Tool Maintenance Record\"+vDCNumber)
     

     vShowList=@PopupChoiceList(DirectoryList,"SELECT A DIRECTORY TO VIEW")


     If @Len(vShowList)>0
     {
           vTemp = @ASynchShell("f:Doc\Tool Maintenance Record\"+vDCNumber+"\"+ vShowList)
     }

  
Back to top
 
IP Logged
 
Ray the Reaper
Global Moderator
Members
Lantica Support
*****
Offline


The One & The Only

Posts: 2480
Joined: Aug 20th, 2003
Re: Works in DESIGNER but not in SESAME PLUS!
Reply #1 - Feb 6th, 2020 at 2:22pm
Print Post Print Post  
Try replacing
Quote:
F:Doc\Tool Maintenance Record\"+vDCNumber

with
Quote:
F:\Doc\Tool Maintenance Record\"+vDCNumber


-Ray
  

Raymond Yoxall Consulting
ray.yoxall@gmail.com
ryoxall@lantica.com
Sesame Applications, Design and Support
Back to top
IP Logged
 
NHUser
Full Member
***
Offline



Posts: 320
Location: Amherst, NH
Joined: Aug 2nd, 2010
Re: Works in DESIGNER but not in SESAME PLUS!
Reply #2 - Feb 11th, 2020 at 8:06pm
Print Post Print Post  
Thanks, Ray

That did it!
  
Back to top
 
IP Logged