M
MarkD
Using Access 2000
Hey all,
I need to create a csv file from a query. The csv CANNOT
have text qualifiers (believe me, I've argued that this is
silly, but the program importing this data is proprietary)
I created a function to return a string without the
commas, but I'm wondering if there's a way to remove
commas during data entry by using the input mask.
If not, I was thinking I could just do this on AfterUpdate:
Me.ActiveControl.value = RemChars
(Me.ActiveControl.value,",")
where remchars is my function that will remove the commas.
Is this how you developers would approach this, or would
you do it a different way?
Thanks,
-Mark
Hey all,
I need to create a csv file from a query. The csv CANNOT
have text qualifiers (believe me, I've argued that this is
silly, but the program importing this data is proprietary)
I created a function to return a string without the
commas, but I'm wondering if there's a way to remove
commas during data entry by using the input mask.
If not, I was thinking I could just do this on AfterUpdate:
Me.ActiveControl.value = RemChars
(Me.ActiveControl.value,",")
where remchars is my function that will remove the commas.
Is this how you developers would approach this, or would
you do it a different way?
Thanks,
-Mark