コード例 #1
0
        public void pd_PrintPage(object sender, PrintPageEventArgs e)
        {
            float currentY = 20;// declare  one variable for height measurement
            Font  font     = new Font(SystemFonts.DefaultFont.FontFamily, 18, FontStyle.Regular);
            float width    = ((float)this.ClientRectangle.Width);

            //SizeF size = e.Graphics.MeasureString(letter.ToString(), font);
            e.Graphics.DrawString("Glen Eden Cat Clinic", font, Brushes.Black, width / 2, currentY);
            currentY += 30;
            e.Graphics.DrawString("Veterinarians Report", font, Brushes.Black, width / 2, currentY);
            currentY += 50;
            int total_pages = VeterinariansArray.Count;

            if (totalnumber < total_pages) // check the number of items
            {
                VeterinarianReportModel vr = VeterinariansArray[totalnumber];
                Font f = new Font(SystemFonts.DefaultFont.FontFamily, 12, FontStyle.Regular);
                e.Graphics.DrawString("Veterinarian ID: " + vr.VeterinarianID, f, Brushes.Black, MARGIN_LEFT, currentY);

                currentY += 25;
                e.Graphics.DrawString("Name: " + vr.VeterinarianLastName + ", " + vr.VeterinarianFirstName, f, Brushes.Black, MARGIN_LEFT, currentY);
                e.Graphics.DrawString("Fee: " + "$" + vr.VeterinarianFee.ToString("F"), f, Brushes.Black, MARGIN_LEFT + 550, currentY);

                currentY += 25;
                e.Graphics.DrawString("Phone number: " + vr.PhoneNumber, f, Brushes.Black, MARGIN_LEFT, currentY);
                for (int i = 0; i < vr.VisitArray.Count; i++)
                {
                    currentY += 40;
                    e.Graphics.DrawString("Visit ID: " + vr.VisitArray[i].VisitId, f, Brushes.Black, MARGIN_LEFT, currentY);
                    e.Graphics.DrawString("Date: " + vr.VisitArray[i].VisitDate, f, Brushes.Black, MARGIN_LEFT + 300, currentY);
                    e.Graphics.DrawString("Status: " + vr.VisitArray[i].VisitStatus, f, Brushes.Black, MARGIN_LEFT + 550, currentY);

                    currentY += 25;
                    e.Graphics.DrawString("Description: " + vr.VisitArray[i].VisitDescription, f, Brushes.Black, MARGIN_LEFT, currentY);
                    e.Graphics.DrawString("Fee: " + "$" + vr.VisitArray[i].VisitFee.ToString("F"), f, Brushes.Black, MARGIN_LEFT + 550, currentY);

                    currentY += 40;
                    e.Graphics.DrawString("Cat ID: " + vr.VisitArray[i].CatId, f, Brushes.Black, MARGIN_LEFT, currentY);
                    e.Graphics.DrawString("Cat Name: " + vr.VisitArray[i].CatName, f, Brushes.Black, MARGIN_LEFT + 200, currentY);

                    currentY += 25;
                    e.Graphics.DrawString("Date of birth: ", f, Brushes.Black, MARGIN_LEFT, currentY);
                    e.Graphics.DrawString(vr.VisitArray[i].CatBirthDate, f, Brushes.Black, MARGIN_LEFT + 200, currentY);
                    currentY += 25;
                    e.Graphics.DrawString("Owner ID: " + vr.VisitArray[i].OwnerId, f, Brushes.Black, MARGIN_LEFT, currentY);
                    e.Graphics.DrawString("Name: " + vr.VisitArray[i].OwnerLastName + ", " + vr.VisitArray[i].OwnerFirstName, f, Brushes.Black, MARGIN_LEFT + 200, currentY);

                    currentY += 40;
                    e.Graphics.DrawString("Treatment: ", f, Brushes.Black, MARGIN_LEFT, currentY);
                    for (int j = 0; j < vr.VisitArray[i].VistTreatments.Count; j++)
                    {
                        VisitTreatmentModel vtm = vr.VisitArray[i].VistTreatments[j];
                        e.Graphics.DrawString(vtm.TreatmentID.ToString(), f, Brushes.Black, MARGIN_LEFT + 200, currentY);
                        e.Graphics.DrawString(vtm.TreatmentDescription, f, Brushes.Black, MARGIN_LEFT + 250, currentY);
                        e.Graphics.DrawString(vtm.Quantity.ToString(), f, Brushes.Black, MARGIN_LEFT + 450, currentY);
                        e.Graphics.DrawString("$" + vtm.TreatmentCost.ToString("F"), f, Brushes.Black, MARGIN_LEFT + 550, currentY);
                        currentY += 25;
                        //double subtotal = vtm.TreatmentCost * vtm.Quantity;
                        //e.Graphics.DrawString("$" + subtotal.ToString("F"), f, Brushes.Black, currentX + 450, currentY);
                    }
                }
                totalnumber += 1;
                if (totalnumber >= total_pages)
                {
                    e.HasMorePages = false;
                }
                else
                {
                    e.HasMorePages = true; //e.HasMorePages raised the PrintPage event once per page .
                }
            }
        }
コード例 #2
0
        private void LoadData()
        {
            OleDbConnection connection = DBConnection.Open();
            string          strSQL     = @"SELECT * FROM VETERINARIAN";
            OleDbCommand    command    = new OleDbCommand(strSQL, connection);
            // Execute command
            OleDbDataReader veter_reader = command.ExecuteReader();

            while (veter_reader.Read())
            {
                VeterinarianReportModel model = new VeterinarianReportModel();
                model.VeterinarianID        = Convert.ToInt32(veter_reader["VeterinarianID"]);
                model.VeterinarianFirstName = veter_reader["FirstName"].ToString();
                model.VeterinarianLastName  = veter_reader["LastName"].ToString();
                model.PhoneNumber           = veter_reader["PhoneNumber"].ToString();
                model.VeterinarianFee       = Convert.ToDouble(veter_reader["Fee"]);

                //read the visit list
                strSQL  = @"SELECT * FROM VISIT WHERE VeterinarianID=@id";
                command = new OleDbCommand(strSQL, connection);
                // Execute command
                command.Parameters.AddWithValue("@id", model.VeterinarianID);
                OleDbDataReader visit_reader = command.ExecuteReader();
                while (visit_reader.Read())
                {
                    VisitReportModel visit = new VisitReportModel();
                    visit.VisitId          = Convert.ToInt32(visit_reader["VisitId"]);
                    visit.VisitDescription = visit_reader["VisitDescription"].ToString();
                    DateTime dt = DateTime.Parse(visit_reader["VisitDate"].ToString());
                    visit.VisitDate   = dt.ToString("dd/MM/yyyy");
                    visit.VisitFee    = Convert.ToDouble(visit_reader["Fee"]);
                    visit.CatId       = Convert.ToInt32(visit_reader["CatId"]);
                    visit.VisitStatus = visit_reader["Status"].ToString();

                    strSQL  = @"SELECT * FROM CAT WHERE CatID = @id";
                    command = new OleDbCommand(strSQL, connection);
                    command.Parameters.AddWithValue("@id", visit.CatId);
                    OleDbDataReader reader = command.ExecuteReader();
                    if (reader.Read())
                    {
                        //read the cat name
                        visit.CatName = reader["CatName"].ToString();
                        DateTime dt1 = DateTime.Parse(reader["DateOfBirth"].ToString());
                        visit.CatBirthDate = dt1.ToString("dd/MM/yyyy");

                        visit.OwnerId = Convert.ToInt32(reader["OwnerID"]);
                        strSQL        = @"SELECT * FROM OWNER WHERE OwnerID = @id";
                        command       = new OleDbCommand(strSQL, connection);
                        command.Parameters.AddWithValue("@id", visit.OwnerId);
                        reader = command.ExecuteReader();
                        if (reader.Read())
                        {
                            //read the owner information
                            visit.OwnerLastName  = reader["LastName"].ToString();
                            visit.OwnerFirstName = reader["FirstName"].ToString();
                        }
                    }

                    //read the Treatment information
                    strSQL  = @"SELECT * FROM VISITTREATMENT WHERE VisitID = @id";
                    command = new OleDbCommand(strSQL, connection);
                    command.Parameters.AddWithValue("@id", visit.VisitId);
                    reader = command.ExecuteReader();
                    while (reader.Read())
                    {
                        VisitTreatmentModel visit_treatment = new VisitTreatmentModel();
                        visit_treatment.TreatmentID = Convert.ToInt32(reader["TreatmentID"]);
                        visit_treatment.Quantity    = Convert.ToInt32(reader["Quantity"]);

                        strSQL  = @"SELECT * FROM TREATMENT WHERE TreatmentID = @id";
                        command = new OleDbCommand(strSQL, connection);
                        command.Parameters.AddWithValue("@id", visit_treatment.TreatmentID);
                        OleDbDataReader reader2 = command.ExecuteReader();
                        if (reader2.Read())
                        {
                            visit_treatment.TreatmentDescription = reader2["TreatmentDescription"].ToString();
                            visit_treatment.TreatmentCost        = Convert.ToDouble(reader2["Cost"]);
                        }
                        visit.VistTreatments.Add(visit_treatment);
                    }
                    model.VisitArray.Add(visit);
                }
                VeterinariansArray.Add(model);
            }
            connection.Close();
        }
コード例 #3
0
        private void LoadData()
        {
            OleDbConnection connection = DBConnection.Open();

            //read the visit list
            string       strSQL  = @"SELECT * FROM VISIT";
            OleDbCommand command = new OleDbCommand(strSQL, connection);
            // Execute command
            OleDbDataReader visit_reader = command.ExecuteReader();

            //int i = 0;
            while (visit_reader.Read())
            {
                VisitModel visit = new VisitModel();
                visit.VisitId          = Convert.ToInt32(visit_reader["VisitId"]);
                visit.VisitDescription = visit_reader["VisitDescription"].ToString();
                DateTime dt = DateTime.Parse(visit_reader["VisitDate"].ToString());
                visit.VisitDate      = dt.ToString("dd/MM/yyyy");
                visit.VisitFee       = Convert.ToDouble(visit_reader["Fee"]);
                visit.CatId          = Convert.ToInt32(visit_reader["CatId"]);
                visit.VeterinarianID = Convert.ToInt32(visit_reader["VeterinarianID"]);

                strSQL  = @"SELECT * FROM CAT WHERE CatID = @id";
                command = new OleDbCommand(strSQL, connection);
                command.Parameters.AddWithValue("@id", visit.CatId);
                OleDbDataReader reader = command.ExecuteReader();
                if (reader.Read())
                {
                    //read the cat name
                    visit.CatName = reader["CatName"].ToString();

                    visit.OwnerId = Convert.ToInt32(reader["OwnerID"]);
                    strSQL        = @"SELECT * FROM OWNER WHERE OwnerID = @id";
                    command       = new OleDbCommand(strSQL, connection);
                    command.Parameters.AddWithValue("@id", visit.OwnerId);
                    reader = command.ExecuteReader();
                    if (reader.Read())
                    {
                        //read the owner information
                        visit.OwnerLastName      = reader["LastName"].ToString();
                        visit.OwnerFirstName     = reader["FirstName"].ToString();
                        visit.OwnerStreetAddress = reader["StreetAddress"].ToString();
                        visit.OwnerSuburb        = reader["Suburb"].ToString();
                    }
                }

                //read the Veterinarian information
                strSQL  = @"SELECT * FROM VETERINARIAN WHERE VeterinarianID = @id";
                command = new OleDbCommand(strSQL, connection);
                command.Parameters.AddWithValue("@id", visit.VeterinarianID);
                reader = command.ExecuteReader();
                if (reader.Read())
                {
                    visit.VeterinarianLastName  = reader["LastName"].ToString();
                    visit.VeterinarianFirstName = reader["FirstName"].ToString();
                    visit.VeterinarianFee       = Convert.ToDouble(reader["Fee"]);
                }

                //read the Treatment information
                strSQL  = @"SELECT * FROM VISITTREATMENT WHERE VisitID = @id";
                command = new OleDbCommand(strSQL, connection);
                command.Parameters.AddWithValue("@id", visit.VisitId);
                reader = command.ExecuteReader();
                while (reader.Read())
                {
                    VisitTreatmentModel model = new VisitTreatmentModel();
                    model.TreatmentID = Convert.ToInt32(reader["TreatmentID"]);
                    model.Quantity    = Convert.ToInt32(reader["Quantity"]);

                    strSQL  = @"SELECT * FROM TREATMENT WHERE TreatmentID = @id";
                    command = new OleDbCommand(strSQL, connection);
                    command.Parameters.AddWithValue("@id", model.TreatmentID);
                    OleDbDataReader reader2 = command.ExecuteReader();
                    if (reader2.Read())
                    {
                        model.TreatmentDescription = reader2["TreatmentDescription"].ToString();
                        model.TreatmentCost        = Convert.ToDouble(reader2["Cost"]);
                    }
                    visit.VistTreatments.Add(model);
                }

                visitList.Add(visit);
            }
        }