pungentSapling
NeedHotSauce?
- Local time
- Today, 16:14
- Joined
- Apr 4, 2002
- Messages
- 115
I have a field that requires a "fiscal week" for data. I formatted the txt box "yyww"...this works fine, it shows the last two digits of the year followed by the number representing the week.example: 0201
Problem is that this all has to be exported to a text file and when the yyww data goes to text it ends up taking on a more standard format. 01/01/2002 for example
I tried copying the value into an unformatted textbox on my for (from one formatted txtBox yyww to unformatted txtBox2)
....me.txtBox2.value = me.txtBox.value....
when the data goes to the new txtBox it is back in date format ie:01/01/2002
I tried putting the yyww value into a variable of type String and then putting the variable into txtBox2 with the same result 01/01/2002
How can I make the value inside the textbox the REAL "displayed" value?
Or make a variable equal to the displayed value of txtBox
thanks p
Problem is that this all has to be exported to a text file and when the yyww data goes to text it ends up taking on a more standard format. 01/01/2002 for example
I tried copying the value into an unformatted textbox on my for (from one formatted txtBox yyww to unformatted txtBox2)
....me.txtBox2.value = me.txtBox.value....
when the data goes to the new txtBox it is back in date format ie:01/01/2002
I tried putting the yyww value into a variable of type String and then putting the variable into txtBox2 with the same result 01/01/2002
How can I make the value inside the textbox the REAL "displayed" value?
Or make a variable equal to the displayed value of txtBox
thanks p