R
Rudy
How can I change the value of the Format property
of a Currency field in a table, let say in
"#.##0,00; -#.##0,00", using VBA code?
Using:
Set dbsMyDatabase = CurrentDb
Set dbsMyDatabase.TableDefs("tblAccounts"). _
Fields("Amount"). _
CreateProperty("Format", Text, Null) = _
"#.##0,00;-#.##0,00"
doesn't work.
Neighter does:
Set dbsMyDatabase = CurrentDb
Set dbsMyDatabase.TableDefs("tblAccounts"). _
Fields("Amount"). _
Properties("Format").Value = _
"#.##0,00;-#.##0,00"
of a Currency field in a table, let say in
"#.##0,00; -#.##0,00", using VBA code?
Using:
Set dbsMyDatabase = CurrentDb
Set dbsMyDatabase.TableDefs("tblAccounts"). _
Fields("Amount"). _
CreateProperty("Format", Text, Null) = _
"#.##0,00;-#.##0,00"
doesn't work.
Neighter does:
Set dbsMyDatabase = CurrentDb
Set dbsMyDatabase.TableDefs("tblAccounts"). _
Fields("Amount"). _
Properties("Format").Value = _
"#.##0,00;-#.##0,00"