R
Rick A
Can someone point out to me what's wrong the code below.
This code formats as shown below. It is wrong
Code
Me!txtQualified.Format = ";\PLACED;\NQ;\Null"
From the immediate window
?me!txtqualified.format
;"PLA"c\Ed;\Nq;"Null"
This code formats as shown below. It is right
Code
Me!txtQualified.Format = ";\QUALIFIED;\NQ;\Null"
From the immediate window
?me!txtqualified.format
;"QUALIFIED";"NQ";"Null"
If I change the first code example to be identical to the second in my code
it works as expected. What am I missing.
This is an Access 2000 format mdb that I'm working on in Access 2003.
Thanks,
This code formats as shown below. It is wrong
Code
Me!txtQualified.Format = ";\PLACED;\NQ;\Null"
From the immediate window
?me!txtqualified.format
;"PLA"c\Ed;\Nq;"Null"
This code formats as shown below. It is right
Code
Me!txtQualified.Format = ";\QUALIFIED;\NQ;\Null"
From the immediate window
?me!txtqualified.format
;"QUALIFIED";"NQ";"Null"
If I change the first code example to be identical to the second in my code
it works as expected. What am I missing.
This is an Access 2000 format mdb that I'm working on in Access 2003.
Thanks,