I have an application that creates a text file with information from several different tables. I currently create a recordset for each table and place the data in the appropriate order via
Open "C:\MArk\test.doc" For Output As #1 Len = 82
Print #1, " B. DEMOGRAPHICS"
Print #1, "Patient Last Name: "; rstBasic!B_LastName; " Patient First Name: "; rstBasic!B_FirstName
Print #1, "Medical Record: "; rstBasic!B_MedRec; " Account Number: "; rstBasic!B_Account
Print #1, " "
Print #1, " C. Hospitalization"
Is there a way to Bold the category lines B. Demographics, C. Hospitalization, etc and change the font for the actual field data
Thanks
Mark
Open "C:\MArk\test.doc" For Output As #1 Len = 82
Print #1, " B. DEMOGRAPHICS"
Print #1, "Patient Last Name: "; rstBasic!B_LastName; " Patient First Name: "; rstBasic!B_FirstName
Print #1, "Medical Record: "; rstBasic!B_MedRec; " Account Number: "; rstBasic!B_Account
Print #1, " "
Print #1, " C. Hospitalization"
Is there a way to Bold the category lines B. Demographics, C. Hospitalization, etc and change the font for the actual field data
Thanks
Mark