NearImpossible
Registered User.
- Local time
- Today, 07:00
- Joined
- Jul 12, 2019
- Messages
- 225
I used a query on the SQL server to set some constraints, one of which is below
Which gave me a layout of
Server:
Client:
However after I changed the text format from Plain Text to Rich Text in the Access Properties, so I can make those entries Bold after I add additional data, it now appears as
Server: Client:
Whenever I add a new record. Is there anything I can add in the Constraint to make them Bold by default and appear as?
Server:
Client:
Code:
ALTER TABLE dbo.FacilityInformation
ADD CONSTRAINT RemoteConnection
DEFAULT 'Server: ' + char(13) + char(10) + 'Clients: '
FOR [Remote Connection] ;
Which gave me a layout of
Server:
Client:
However after I changed the text format from Plain Text to Rich Text in the Access Properties, so I can make those entries Bold after I add additional data, it now appears as
Server: Client:
Whenever I add a new record. Is there anything I can add in the Constraint to make them Bold by default and appear as?
Server:
Client: