A
accessman2
Set tbl = db.TableDefs("Invoice")
tbl.Fields.Append tbl.CreateField("amount", dbCurrency)
the above code is working well.
However, the below code, I cannot change the format (standard), n
dollar sign.
tbl.Fields("amount").Properties("Format") = "Standard"
The message said that "property no found"
What's wrong with it?
How can I change the format (standard)?
Please let me know, thanks
tbl.Fields.Append tbl.CreateField("amount", dbCurrency)
the above code is working well.
However, the below code, I cannot change the format (standard), n
dollar sign.
tbl.Fields("amount").Properties("Format") = "Standard"
The message said that "property no found"
What's wrong with it?
How can I change the format (standard)?
Please let me know, thanks