A family of Microsoft relational database management systems designed for ease of use.
The reason why you don't need quotes characters around acFormDS is because it is not a string expression, but a constant. Its value is an integer number, in this case 3. You can see this in a couple of ways:
1. Enter the following in the immediate window:
? acFormDS
3
2.Open the Object Browser and search for acFormDS. Down at the bottom of the dialogue you'll see:
Const acFormDS = 3
Member of Access.AcFormView
So if you wish to assign it to a variable, you could do so like this:
Dim frmview As Integer
frmview = acFormDS
but it would be better to do as Tom described:
Dim frmview As AcFormView
frmview = acFormDS
either way:
Debug.Print frmview
would return 3 in the immediate (aka Debug) window.