Hi all,
I've been doing a conversion from VB6 to VB.Net and i used the conversion wizard.
In VB6 code
after conversion wizard in
VB.Net it is written
it uses VB6 compatibility dll.
my question is how do i implement it in .Net so i would not used VB6 compatibility dll
the output will be 20/04/02
Thanks
I've been doing a conversion from VB6 to VB.Net and i used the conversion wizard.
VB.NET:
stringVal = "200402"
In VB6 code
VB.NET:
Format$(stringVal, "@@@@/@@/@@")
VB.Net it is written
VB.NET:
VB6.Format(stringVal, "@@@@/@@/@@")
my question is how do i implement it in .Net so i would not used VB6 compatibility dll
the output will be 20/04/02
Thanks