misssugarella said:
Im very new to MS project and Im not much of a "techie" person but it there a
way to highlight a row?
any help is appreciated!
THANKS!
misssugarella,
Sweet lady?
I'm going to avoid providing the obvious answer (i.e. just click on the
row) since I think you are trying to ask something else but I'm not sure
what it is. However, since you posted in the developer newsgroup I might
assume you want to do the highlighting with VBA. Now, highlight can mean
several things. If you are trying to color the background of all fields
in a row, sorry, Project does not have that feature. The best you can do
is to set the font characteristics for a row. For example the following
code will set the 2nd row of the current view to bold:
Sub Highlight()
SelectRow Row:=2, rowrelative:=False
Font Bold:=True
End Sub
Hope this helps.
John
Project MVP