Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Strange behaviour of CHDIR
Message
 
 
To
06/01/2013 14:06:07
General information
Forum:
Visual FoxPro
Category:
Object Oriented Programming
Environment versions
Visual FoxPro:
VFP 9 SP2
OS:
Windows XP
Network:
Windows XP
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01561555
Message ID:
01561557
Views:
50
>I am using the following code in Click property of Combo Box
>
>lcCurDrive = ALLTRIM(Justdrive(Fullpath(Curdir())))
>lcCurDir = ALLTRIM(Curdir())
>
>SET DEFAULT TO (sDirectory)
>CreateDirectory('Backup',0)
>Targetpath='&sDirectory'+'Backup\'
>Thisform.unlockallfiles()
>Thisform.Fileselect()
>Thisform.Unitbackup()
>Thisform.circlebackup()
>Thisform.Closemonth()
>Thisform.lockallfiles()
>CHDIR ('lcCurDrive&lcCurDir')
>
>The program Was Running fine, and I was able to come Back to my parent Directory using CHDIR ('lcCurDrive&lcCurDir').
>But Suddenly My Program Started throwing error as "Invalid Path" for CHDIR ('lcCurDrive&lcCurDir').
>
>Whats the problem. Kinldy Guide.

Try
lcCurDir = fullpath(curdir())
......
cd (m.lcCurDir)
There is no need to use macros in this code.
If it's not broken, fix it until it is.


My Blog
Previous
Reply
Map
View

Click here to load this message in the networking platform