Neil Toulouse
Programmer
Hi folks!
Have come across a pain of a scenario (VFP6).
I need to specify 22 extensions in the GETFILE() function, but it appears to throw a wobbly at exactly 22!
To see the effect:
...now remove the W13 extension:
Is there a work around (except ugrading to VFP8 where it seems to work fine!!)?
TIA
Neil
I like work. It fascinates me. I can sit and look at it for hours...
Have come across a pain of a scenario (VFP6).
I need to specify 22 extensions in the GETFILE() function, but it appears to throw a wobbly at exactly 22!
To see the effect:
Code:
= GETFILE( 'CSV;C01;C02;C03;F01;F02;F03;F04;F05;W01;W02;W03;W04;W05;W06;W07;W08;W09;W10;W11;W12;W13', '', 'Select', 0, 'Select File' )
...now remove the W13 extension:
Code:
= GETFILE( 'CSV;C01;C02;C03;F01;F02;F03;F04;F05;W01;W02;W03;W04;W05;W06;W07;W08;W09;W10;W11;W12', '', 'Select', 0, 'Select File' )
Is there a work around (except ugrading to VFP8 where it seems to work fine!!)?
TIA
Neil
I like work. It fascinates me. I can sit and look at it for hours...