i am using monthview control in my form to display date in textboxes
..
it's date format is mm/dd/yyyy , but i need to change it to dd/mm/yyyy..
is it possible in any other way than using "format" ??
coz when i use "format" it works only for 1 textbox, and in next textbox if i add some months to the pervios textbox value using dateadd () fn, the date format in second textbox changes..
so is there anyway wich v can change te way the date is displayed ?
following is my coding..
text1.text = Format$(mview.value , "dd/mm/yy")
private sub text1_change()
text2.text = dateadd("m",5,text1.text) /* here the format itself changes and it gives different values*/
thank you