Giter VIP home page Giter VIP logo

stock's People

Contributors

vetrivelandyou avatar vetriveldevops avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

stock's Issues

Need Help to complete Stock Management Project

Respected Sir, I had watched your video and it really helped and guided me, so i decided to make my college project basis on it, but that tutorial is half part so sir please I kindly request and want to know when will your remaining video part will be uploaded.

Report has No Tables

hello sir,
i wrote the code just you say in video i.e; crystal report creation

in productreport.cs file
using CrystalDecisions.CrystalReports.Engine; // add this line
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Data.SqlClient;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace Stock_Management.ReportForm
{
public partial class ProductsReport : Form
{
ReportDocument cryrpt = new ReportDocument();
public ProductsReport()
{
InitializeComponent();
}

    private void ProductsReport_Load(object sender, EventArgs e)
    {
        cryrpt.Load(@"E:\venkat sai\Dot_Net\Csharp\Stock_Management\Stock_Management\Reports\Product.rpt");
        SqlConnection con = Connection.getConnection();
        con.Open();

        DataSet dst = new DataSet();
        SqlCommand cmd = new SqlCommand("select * from Products", con);
        cmd.ExecuteNonQuery();
        SqlDataAdapter sda = new SqlDataAdapter(cmd);
        DataTable dt = new DataTable();
        sda.Fill(dt);

        cryrpt.SetDataSource(dt)
        crystalReportViewer1.ReportSource = cryrpt;

        con.Close();
    }
}

}

the code doesn't show any errors but while running the application it is throwing an pop up that is

the report has no tables

please help me to solve this error in application sir

The Youtube Video is : https://youtu.be/ESrLYkktj5U

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.