FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour Report source code question?
Posts: 866
Joined: Tue Oct 16, 2007 08:57 AM

Report source code question?

Posted: Fri May 26, 2017 03:39 AM
Hi All,

I found Report.prg source code appear this below
Code (fw): Select all Collapse
if cChar == nil
   cChar := "?
endif

or

cChar      := "?

or 

do case
     case nGrid == GRID_ABOVE
             cChar  := "?
             cLeft  := "?
             cRight := "?

      case nGrid == GRID_BELOW
              cChar  := "?
              cLeft  := "?
              cRight := "?

      case nGrid == GRID_ABOBEL
              cChar  := "?
              cLeft  := "?
              cRight := "?
endcase


What do it mean?
Best Regards,



Richard



Harbour 3.2.0dev (r2503251254) => Borland C++ v7.7 32bit

MySQL v8.0

Harbour 3.2.0dev (r2503251254) => Borland C++ v7.7 64bit
Posts: 44162
Joined: Thu Oct 06, 2005 05:47 PM

Re: Report source code question?

Posted: Fri May 26, 2017 06:44 AM
Richard,

Code (fw): Select all Collapse
      if cChar == nil
         cChar := "³"
      endif


They are special chars that your source code editor or notepad is not properly showing to you, surely due to a codepage issue
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 866
Joined: Tue Oct 16, 2007 08:57 AM

Re: Report source code question?

Posted: Fri May 26, 2017 07:32 AM
Antonio Linares wrote:Richard,

Code (fw): Select all Collapse
      if cChar == nil
         cChar := "³"
      endif


They are special chars that your source code editor or notepad is not properly showing to you, surely due to a codepage issue


Antonio,

I see. Thanks a lot.
Best Regards,



Richard



Harbour 3.2.0dev (r2503251254) => Borland C++ v7.7 32bit

MySQL v8.0

Harbour 3.2.0dev (r2503251254) => Borland C++ v7.7 64bit

Continue the discussion