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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Font Color on DataWindow

Status
Not open for further replies.

markv105

Programmer
Aug 8, 2002
11
CA
Hello everyone:

I am trying to change the text on a datawindow column:

dw_1.Modify("column1.Font.Color='413200'")

I'm getting a syntax error. What can be wrong?

Thanks!
 
It is not font.color : it is simply color property


dw_1.Modify("column1.Color='413200'")


or for background color it is


dw_1.Modify("column1.background.Color='413200'")


RT
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top