LoginSignup

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

(C#)Microsoftレポートを用いた帳票出力の仕方について

(C#)Microsoftレポートを用いた帳票出力の仕方について

Microsoftレポートでクラスに格納した値を動的に表示したい

日本だったら苗字を先に、海外だったら名前を先に表示を行いたい

日本の場合

苗字 名前 年齢
佐藤 としお 52
坂本 りょう 14
香川 てるき 10

海外の場合

名前 苗字 年齢
としお 佐藤 52
りょう 坂本 14
てるき 香川 10
public class 生徒
{
  public string 苗字 { get; }
  public string 名前 { get; }
  public int 年齢 { get; }
}

他にも、C#のListViewでは作成することが簡単であるため、ListViewをMicrosoftレポートのテーブルに転用する方法があれば教えてほしいです。

0

No Answers yet.

Your answer might help someone💌