Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Delphi code :

procedure TMainForm.PdtPrintDAT1AfterOptionsLoaded(Sender: TObject;
var ReportSettings: TpdtReportSettings);
begin
ReportSettings.HideColumns := '~Line#';     {Hide these columns in the report}
ReportSettings.MaxStringColWid[ umTxt ] := 25;    {Make all string columns a max of 25 characters}
if IncludeSampleAndTimeOnEachPrintedPage then
ReportSettings.NumFixedCols := 3 // 2 + 1 hidden line #
else ReportSettings.NumFixedCols := 0;
ReportSettings.OutputFileName := ExtractFilePath( Application.ExeName )
                             + SUBDIR_REPORTS
                             + '\'
                             + 'Rpt.TXT';
end;

I tried to convert a little bit like this.

public void PdtPrintDAT1AfterOptionsLoaded(Object Sender, ref PdtReportSettings ReportSettings)
    {

        ReportSettings.HideColumns = "~Line#";

        ReportSettings.MaxStringColWid[umTxt] = 25;

        if (Units.Main.IncludeSampleAndTimeOnEachPrintedPage)
        {

            ReportSettings.NumFixedCols = 3;
        }
        else
        {

            ReportSettings.NumFixedCols = 0;
        }

        ReportSettings.OutputFileName = Path.GetDirectoryName(System.Environment.GetCommandLineArgs()[0]) + Units.Main.SUBDIR_REPORTS + '\\' + "Rpt.TXT";
    }

But it gives error in the beginning for this. ref PdtReportSettings ReportSettings The type or namespace name 'PdtReportSettings' could not be found (are you missing a using directive or an assembly reference?)

How can I solve this?

share|improve this question
Probably need to reference some assemblies or .DLLs. C# is looking for references to objects that aren't there. – aserwin Oct 16 '12 at 20:35
Do you have the type PdtReportSettings at all? Maybe you need to convert it from Delphi first? – Vlad Oct 16 '12 at 20:39
1  
What is PDT report? Does it have .net assemblies? Do you know what a .net assembly is? Have you written any C# before? Trying to get a hold of what level you are at and what sort of help is appropriate. – David Heffernan Oct 16 '12 at 20:44

closed as too localized by Rob Kennedy, lkessler, Hristo Iliev, hims056, ChrisF Oct 20 '12 at 10:32

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

For begining, add reference to library with PdtReportSettings and using statement for that library.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.