Character/Symbols not displaying correctly in this web forum ???

G

Guest

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
 
G

Guest

Hello Needy-

Have you considered using a newsreader instead of your browser? Made a lot
of difference for me (even tho I still have to use IE @ work).

Regards |:>)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top