Recent

Author Topic: Reneme all RxFPC modules - add RX prefix to all files  (Read 4512 times)

alexs75

  • Full Member
  • ***
  • Posts: 112
Reneme all RxFPC modules - add RX prefix to all files
« on: September 15, 2016, 07:22:48 am »
Start of discussion - http://forum.lazarus.freepascal.org/index.php/topic,34014.msg222109.html#msg222109

This is a very serious question, because it will apply to all users. And if it will cause a big problem?

kit

  • New Member
  • *
  • Posts: 39
Re: Reneme all RxFPC modules - add RX prefix to all files
« Reply #1 on: September 17, 2016, 06:58:18 am »
It's not big problem.

alexs75

  • Full Member
  • ***
  • Posts: 112
Re: Reneme all RxFPC modules - add RX prefix to all files
« Reply #2 on: September 21, 2016, 11:45:12 am »
please - test

kit

  • New Member
  • *
  • Posts: 39
Re: Reneme all RxFPC modules - add RX prefix to all files
« Reply #3 on: September 22, 2016, 07:03:13 am »
procedure TRxDBGridExportSpreadSheet.DoExportColWidth;
var
  FW:integer;
  C:TRxColumn;
  i: Integer;
begin
  FW:=FRxDBGrid.Canvas.TextWidth('W');
  FCurCol:=0;
  for i:=0 to FRxDBGrid.Columns.Count - 1 do
  begin
    C:=FRxDBGrid.Columns as TRxColumn;
    if C.Visible then
    begin
      FWorksheet.WriteColWidth(FCurCol, Max(C.Width div FW, 20));
//      FWorksheet.WriteColWidth(FCurCol, C.Width, suPoints);
      inc(FCurCol);
    end;
  end;
end;

rxdbgridexportspreadsheet.pas(425,50) Error: Identifier not found "suPoints"
« Last Edit: September 25, 2016, 06:58:04 am by kit »

Thaddy

  • Hero Member
  • *****
  • Posts: 14359
  • Sensorship about opinions does not belong here.
Re: Reneme all RxFPC modules - add RX prefix to all files
« Reply #4 on: September 22, 2016, 10:32:50 am »
Oh, well,
Same story again.
Plz add a simple example in source code that shows the issue.
This is not reproducible.

Please show us some real world code!
Object Pascal programmers should get rid of their "component fetish" especially with the non-visuals.

 

TinyPortal © 2005-2018