dbTalk Databases Forums  

VFP 9: MD Bug

comp.databases.xbase.fox comp.databases.xbase.fox


Discuss VFP 9: MD Bug in the comp.databases.xbase.fox forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Gene Wirchenko
 
Posts: n/a

Default VFP 9: MD Bug - 01-01-2008 , 09:46 PM






The md command can be used to create more than one level of
directory at once:
md new1\new2
where new1 does not already exist, works fine.

Unfortunately, there is a bug. Apparently, if more than one
level of directory does not already exist, the directory names are
created in lower case.

With the current VFP directory one that does not already have
either subdirectories/files ABC or DEF, try the following program:

********** Start of Test Program **********
md ABC\ABC
md ABC\DEF
md DEF

wait

rd ABC\ABC
rd ABC\DEF
rd ABC
rd DEF

wait

md ABC
md ABC\ABC
md ABC\DEF
md DEF

wait

rd ABC\ABC
rd ABC\DEF
rd ABC
rd DEF

wait

md ABC\ABC\ABC
md ABC\DEF

wait

rd ABC\ABC\ABC
rd ABC\ABC
rd ABC\DEF
rd ABC

return
********** End of Test Program **********

At each wait, have a look at the directory names with Windows
Explorer. (1) Remember to refresh. 2) Mind that you are not in any
of the created directories when the rd commands are executed.) The
first and third md sets have the problem. The second does not.

Sincerely,

Gene Wirchenko

Computerese Irregular Verb Conjugation:
I have preferences.
You have biases.
He/She has prejudices.

Reply With Quote
  #2  
Old   
swdev2
 
Posts: n/a

Default Re: VFP 9: MD Bug - 01-01-2008 , 10:59 PM






Hey Gene -
I tested this with VFP 8 sp2
on W2K sp5 -
but i changed up yer code a bit - using:
md ("ABC\ABC")
md ("ABC\DEF")
md ("DEF")
kinda constructs.

SAME RESULTS.
You should report it as a bug with the standard bug reporting service at
MS -
Mentioning it here DOES NOTHING to 'get it looked at'

Slan [Bill]

--
===================
William Sanders / EFG VFP / mySql / MS-SQL
www.efgroup.net/vfpwebhosting
www.terrafox.net www.viasqlserver.net

"Gene Wirchenko" <genew (AT) ocis (DOT) net> wrote

Quote:
The md command can be used to create more than one level of
directory at once:
md new1\new2
where new1 does not already exist, works fine.

Unfortunately, there is a bug. Apparently, if more than one
level of directory does not already exist, the directory names are
created in lower case.

With the current VFP directory one that does not already have
either subdirectories/files ABC or DEF, try the following program:

********** Start of Test Program **********
md ABC\ABC
md ABC\DEF
md DEF

wait

rd ABC\ABC
rd ABC\DEF
rd ABC
rd DEF

wait

md ABC
md ABC\ABC
md ABC\DEF
md DEF

wait

rd ABC\ABC
rd ABC\DEF
rd ABC
rd DEF

wait

md ABC\ABC\ABC
md ABC\DEF

wait

rd ABC\ABC\ABC
rd ABC\ABC
rd ABC\DEF
rd ABC

return
********** End of Test Program **********

At each wait, have a look at the directory names with Windows
Explorer. (1) Remember to refresh. 2) Mind that you are not in any
of the created directories when the rd commands are executed.) The
first and third md sets have the problem. The second does not.

Sincerely,

Gene Wirchenko

Computerese Irregular Verb Conjugation:
I have preferences.
You have biases.
He/She has prejudices.



Reply With Quote
  #3  
Old   
Rush Strong
 
Posts: n/a

Default Re: VFP 9: MD Bug - 01-02-2008 , 12:04 AM



swdev2 wrote:
Quote:
Hey Gene -
I tested this with VFP 8 sp2
on W2K sp5 -
but i changed up yer code a bit - using:
md ("ABC\ABC")
md ("ABC\DEF")
md ("DEF")
kinda constructs.

SAME RESULTS.
You should report it as a bug with the standard bug reporting service at
MS -
Mentioning it here DOES NOTHING to 'get it looked at'

Whereas, telling MS will result in . . . ?

- Rush


Reply With Quote
  #4  
Old   
swdev2
 
Posts: n/a

Default Re: VFP 9: MD Bug - 01-02-2008 , 12:17 AM



Hey Rush -

Bubba - ya never know ...
If it GETS into the queue,
It MIGHT actually 'get looked at'
and a bug disposition 'set' .

WHO KNOWS?

Ya Can't Win, If Ya Don't Play !!!!

Mondo Regards [Bill]
--
===================
William Sanders / EFG VFP / mySql / MS-SQL
www.efgroup.net/vfpwebhosting
www.terrafox.net www.viasqlserver.net

"Rush Strong" <rpstrong (AT) gmail (DOT) com> wrote

Quote:
swdev2 wrote:
Hey Gene -
I tested this with VFP 8 sp2
on W2K sp5 -
but i changed up yer code a bit - using:
md ("ABC\ABC")
md ("ABC\DEF")
md ("DEF")
kinda constructs.

SAME RESULTS.
You should report it as a bug with the standard bug reporting service at
MS -
Mentioning it here DOES NOTHING to 'get it looked at'

Whereas, telling MS will result in . . . ?

- Rush



Reply With Quote
  #5  
Old   
Gene Wirchenko
 
Posts: n/a

Default Re: VFP 9: MD Bug - 01-03-2008 , 04:46 PM



"swdev2" <wsanders (AT) dotnetconversions (DOT) bob.com> wrote:

Quote:
Hey Gene -
I tested this with VFP 8 sp2
on W2K sp5 -
but i changed up yer code a bit - using:
md ("ABC\ABC")
md ("ABC\DEF")
md ("DEF")
kinda constructs.

SAME RESULTS.
I know. My code that I found the error with was in
md (memvar)
form.

Quote:
You should report it as a bug with the standard bug reporting service at
MS -
Mentioning it here DOES NOTHING to 'get it looked at'
What is the URL, please?

Sincerely,

Gene Wirchenko

Computerese Irregular Verb Conjugation:
I have preferences.
You have biases.
He/She has prejudices.


Reply With Quote
  #6  
Old   
swdev2
 
Posts: n/a

Default Re: VFP 9: MD Bug - 01-04-2008 , 12:30 AM



Heya Gene -
1. http://support.microsoft.com/kb/867477
2. https://connect.microsoft.com/Visual...eFeedback.aspx
and then once you log in:
3.
https://connect.microsoft.com/Visual...backForm.aspx?
FeedbackFormConfigurationID=1160&FeedbackType=1

Regards [Bill]

--
===================
William Sanders / EFG VFP / mySql / MS-SQL
www.efgroup.net/vfpwebhosting
www.terrafox.net www.viasqlserver.net

"Gene Wirchenko" <genew (AT) ocis (DOT) net> wrote

Quote:
"swdev2" <wsanders (AT) dotnetconversions (DOT) bob.com> wrote:

Hey Gene -
I tested this with VFP 8 sp2
on W2K sp5 -
but i changed up yer code a bit - using:
md ("ABC\ABC")
md ("ABC\DEF")
md ("DEF")
kinda constructs.

SAME RESULTS.

I know. My code that I found the error with was in
md (memvar)
form.

You should report it as a bug with the standard bug reporting service at
MS -
Mentioning it here DOES NOTHING to 'get it looked at'

What is the URL, please?

Sincerely,

Gene Wirchenko

Computerese Irregular Verb Conjugation:
I have preferences.
You have biases.
He/She has prejudices.



Reply With Quote
  #7  
Old   
swdev2
 
Posts: n/a

Default Re: VFP 9: MD Bug - 01-04-2008 , 12:47 AM



and 4 - Where to look for 'posted' bugs and their status:
https://connect.microsoft.com/Visual...lts.aspx?Advan
ced=true&KeywordSearchIn=2&SearchQuery=vfp+OR+foxp ro&FeedbackType=0

(watch for line wrapping, reform url as needed).

Mondo Regards [Bill]

--
===================
William Sanders / EFG VFP / mySql / MS-SQL
www.efgroup.net/vfpwebhosting
www.terrafox.net www.viasqlserver.net

"Gene Wirchenko" <genew (AT) ocis (DOT) net> wrote

Quote:
"swdev2" <wsanders (AT) dotnetconversions (DOT) bob.com> wrote:

Hey Gene -
I tested this with VFP 8 sp2
on W2K sp5 -
but i changed up yer code a bit - using:
md ("ABC\ABC")
md ("ABC\DEF")
md ("DEF")
kinda constructs.

SAME RESULTS.

I know. My code that I found the error with was in
md (memvar)
form.

You should report it as a bug with the standard bug reporting service at
MS -
Mentioning it here DOES NOTHING to 'get it looked at'

What is the URL, please?

Sincerely,

Gene Wirchenko

Computerese Irregular Verb Conjugation:
I have preferences.
You have biases.
He/She has prejudices.



Reply With Quote
  #8  
Old   
Gene Wirchenko
 
Posts: n/a

Default Re: VFP 9: MD Bug - 01-04-2008 , 11:30 AM



"swdev2" <wsanders (AT) dotnetconversions (DOT) bob.com> wrote:

Quote:
Heya Gene -
1. http://support.microsoft.com/kb/867477
2. https://connect.microsoft.com/Visual...eFeedback.aspx
and then once you log in:
3.
https://connect.microsoft.com/Visual...backForm.aspx?
FeedbackFormConfigurationID=1160&FeedbackType=1
I have submitted the bug. No login is required.

Sincerely,

Gene Wirchenko

Computerese Irregular Verb Conjugation:
I have preferences.
You have biases.
He/She has prejudices.


Reply With Quote
  #9  
Old   
Gene Wirchenko
 
Posts: n/a

Default Re: VFP 9: MD Bug - 01-04-2008 , 11:30 AM



"swdev2" <wsanders (AT) dotnetconversions (DOT) bob.com> wrote:

Quote:
Heya Gene -
1. http://support.microsoft.com/kb/867477
2. https://connect.microsoft.com/Visual...eFeedback.aspx
and then once you log in:
3.
https://connect.microsoft.com/Visual...backForm.aspx?
FeedbackFormConfigurationID=1160&FeedbackType=1
I have submitted the bug. No login is required.

Sincerely,

Gene Wirchenko

Computerese Irregular Verb Conjugation:
I have preferences.
You have biases.
He/She has prejudices.


Reply With Quote
  #10  
Old   
Gene Wirchenko
 
Posts: n/a

Default Re: VFP 9: MD Bug - 01-04-2008 , 11:30 AM



"swdev2" <wsanders (AT) dotnetconversions (DOT) bob.com> wrote:

Quote:
Heya Gene -
1. http://support.microsoft.com/kb/867477
2. https://connect.microsoft.com/Visual...eFeedback.aspx
and then once you log in:
3.
https://connect.microsoft.com/Visual...backForm.aspx?
FeedbackFormConfigurationID=1160&FeedbackType=1
I have submitted the bug. No login is required.

Sincerely,

Gene Wirchenko

Computerese Irregular Verb Conjugation:
I have preferences.
You have biases.
He/She has prejudices.


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.