View Single Post
  #2   Report Post  
CyberTaz
 
Posts: n/a
Default

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 |:)

"needyourhelp" wrote:

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 " as in the code exaple below.

Also, I run across the symbols and & 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