G
George
I'm new to classes, and I'm not entirely sure I know
whether this is a proper application:
Because almost every person-oriented record contains Name,
Address, Email, Phone Number, does it make sense to create
a single, consistent maintenance screen, called
frmContacts, and have a class that maintains it?
I'm thinking:
Dim objSubcontractor as Contact
With objSubcontractor
.table = "tblSubcontractor"
.Name = "tblSubcontractor.Name"
.Phone1 = tblSubcontractor.[Business Phone]"
.Phone2 = "tblSubcontractor.[Home Phone]"
.Address = tblSubcontractor.[Business Address]"
End with
OpenForm "frmContacts"
Does this sound like a strategy to persure?
whether this is a proper application:
Because almost every person-oriented record contains Name,
Address, Email, Phone Number, does it make sense to create
a single, consistent maintenance screen, called
frmContacts, and have a class that maintains it?
I'm thinking:
Dim objSubcontractor as Contact
With objSubcontractor
.table = "tblSubcontractor"
.Name = "tblSubcontractor.Name"
.Phone1 = tblSubcontractor.[Business Phone]"
.Phone2 = "tblSubcontractor.[Home Phone]"
.Address = tblSubcontractor.[Business Address]"
End with
OpenForm "frmContacts"
Does this sound like a strategy to persure?