User Profile

Collapse

Profile Sidebar

Collapse
Yamasiash
Yamasiash
Last Activity: Apr 8 '20, 12:09 PM
Joined: Mar 27 '20
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • I doubt that you can do this with a gridview.

    Try using a Data table instead of a GridView. It can also be used for such purposes in "FastReport ", there it is done very simply.
    See more | Go to post

    Leave a comment:


  • If you use ASP.net, you can use this example connection string in the "Web.config " file:
    Code:
    <add name = "YouDbContext"
       connectionString = "Data Source = (LocalDb) \ MSSQLLocalDB; Initial Catalog = NameDb; Integrated Security = SSPI;"
       providerName = "System.Data.SqlClient"
    />
    See more | Go to post

    Leave a comment:


  • There is no difference. You can use any database management system for your project. The database management system already takes on this role.
    See more | Go to post

    Leave a comment:


  • Yamasiash
    replied to Automatic Print In C#
    I print from FastReport, there it is done very simply.
    Code:
    Report report = new Report ();
    report.Load ("filename");
    report.Prepare ();
    // print report to pdf printer
    report.PrintSettings.Printer = "PDFCreator";
    report.PrintSettings.ShowDialog = false;
    report.Print ();
    in "reportSettings " you can configure a lot of things, in particular everything that can be...
    See more | Go to post
    Last edited by gits; Mar 27 '20, 12:04 PM. Reason: added code tags

    Leave a comment:

No activity results to display
Show More
Working...