Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Font of Access - Challenging (i suppose)

Status
Not open for further replies.

WoodyRoundUp

Programmer
Feb 28, 2001
187
AU
Hi all.
I need some help.
I am doing some coding to create a new database with some tables.
And for one of the tables, I wanna change the font type.
Is there any idea I can change it?
The coding that I used are as follow:
sConnection = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + myFile
cat.Create sConnection

cat.ActiveConnection = sConnection

tbl2.Name = "SaveType"
tbl2.Columns.Append "SaveType", adInteger
cat.Tables.Append tbl2

Can anybody help me pls?
Thanks.

Budi
 
A table doesn't have a font. You can display the data in any font you choose. An Access datasheet has a font, or rather all tables in a database use the same font for display. This is set up in Access Options. Doesn't affect VB, which I assume you are using. Peter Meachem
peter @ accuflight.com

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top