Posts

Showing posts from September, 2023
Image
                              PRINTING_CONCEPT FORM ONE DESIGN:   CODINGS FOR FORM1: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Drawing.Printing; namespace printing_lines {     public partial class Form1 : Form     {         public Form1()         {             InitializeComponent();         }         Font font1 = new Font("Times New Roman", 9);    // Default Text         Font font2 = new Font("Times New Roman", 10);    // BillNo, Date & Customer                                ...

VISUAL STUDIO PRACTICE-PROJECTS

Image
                        VISUAL STUDIO PROJECTS                                                                                                                                              ARITHMETIC OPERATIONS :        FORM DESIGN: CODINGS: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace oper2 {     public partial class Fo...