View Single Post
  #1   Report Post  
needyourhelp
 
Posts: n/a
Default Character/Symbols not displaying correctly in this web forum ???

Can anyone tell me why certain /characters symbols are messed up on this
forums web pages ?

For whatever reason, all double quotes symbols/characters (") are displayed
to me as &quot as in the code exaple below.

Also, I run across the symbols &gt and &amp very often in these forums.

It is not that big a deal, but it sure makes trying to read code examples
difficult.

These are the only pages on the enitre www (that I vist) where I expereince
these issues.

What gives ?

Do I need to change browser settings or something ?

thanks,

tim




Range("O" & LastRowOfRawData).Select
ActiveCell.Value = Selection.Row
ActiveCell.Offset(-1, 0).Value = Selection.Row - 1
Range(ActiveCell.Offset(-1, 0), ActiveCell).Select


Selection.AutoFill Destination:=Range("O1", ActiveCell.Offset(1,
0)), Type:=xlFillDefault
Columns("A:O").Select
Selection.Sort Key1:=Range("N1"), Order1:=xlAscending,
Header:=xlNo, _
OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom

Range("N1").Select
Selection.End(xlDown).Select

Selection.Offset(1, 1).Select
Range("A" & ActiveCell.Row, ActiveCell.End(xlDown)).Select
Selection.ClearContents

Columns("A:O").Select
Selection.Sort Key1:=Range("O1"), Order1:=xlAscending,
Header:=xlGuess, _
OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom

Columns("O:O").Select
Selection.ClearContents

Range("A1").Select