Search results for query: *

  1. S

    Printing options for DataGridView

    Hi All, Does anyone know any methodology to create direct print-out from datagridview. From googling what i found is that it's quite complex process. Is there any package available to dot the same (i.e. nugget package). I have datagridview populated from database and I want to make PDF print of...
  2. S

    Problem with SQL JOIN calculation on SUM

    Hi All, I am have three tables in my database i.e. Stockin, Stockout and Products. Below is their detailed schema. CREATE TABLE [dbo].[Products]( [Id] [int] IDENTITY(1,1) NOT NULL, [Prod_ID] [varchar](10) NOT NULL, [Prod_Name] [varchar](150) NOT NULL, [Re_Order] [float] NOT NULL...
  3. S

    Bulk-Insert to SQL LocalDB not working with Dapper Plus

    0 I am trying to populate my database column with name "StockInTable" using Dapper Plus nugget package. My stockin file is as below. class Stockin { [Key] public int ID { get; set; } public DateTime Date { get; set; } public string Sup_ID { get; set; } public string Sup_Name...
  4. S

    Data import from Excel Files

    Hi All. I am working on a project where I need to carry out below steps. 1. Import data from Excel and display using datagridview 2. Create local database in the application - Windows .Net form application 3. Convert the loaded data into SQL format (SQL readable format) 4. Store the data in...
  5. S

    Report viewer for Visual Studio 2019

    Hi all, I am getting stuck with report viewer in Visual Studio 2019. I already have installed report designer and is working perfectly fine but whenever I try to install the "Report Viewer" from Nuget packages, it always either crashed or fails to load properly and show any report. Any permanent...
Back
Top Bottom