コード例 #1
0
ファイル: Form4.cs プロジェクト: kumar-a6609/mySEJavaProject
        public void salesCatalog()
        {
            DisplayListBox.Show();
            try
            {
                using (StreamReader myInputStream
                           = new StreamReader("Property.txt"))
                {
                    DisplayListBox.Items.Clear();
                    DisplayListBox.Items.Add("\t\t\t" + "SALES REPORT");
                    DisplayListBox.Items.Add("\t\t\tMonthly report  ");
                    DisplayListBox.Items.Add("\t" + "Property ID " + "\tHouse type" + " \t  " + "Sold Price" + "\t" + "Date Sold");
                    string eachLine;
                    while (!myInputStream.EndOfStream)
                    {
                        eachLine = myInputStream.ReadLine();
                        eachLine.Trim('\r', '\n');
                        string[] Earray    = eachLine.Split(',');
                        string   PropID    = Earray[0];
                        string   PropName  = Earray[1];
                        string   PropPrice = Earray[2];
                        string   PropDOS   = Earray[3];


                        DisplayListBox.Items.Add("\t" + PropID + "\t\t" + PropName + "\t\t" + PropPrice + "\t\t" + PropDOS);
                    }
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }
コード例 #2
0
ファイル: Form4.cs プロジェクト: kumar-a6609/mySEJavaProject
        protected void addEditAgent()
        {
            DisplayListBox.Show();
            try
            {
                using (StreamReader myInputStream
                           = new StreamReader("employees.txt"))
                {
                    DisplayListBox.Items.Clear();
                    DisplayListBox.Items.Add("\t\t\tAgents" + "   " + "Agent ID");
                    string eachLine;
                    while (!myInputStream.EndOfStream)
                    {
                        eachLine = myInputStream.ReadLine();
                        eachLine.Trim('\r', '\n');
                        string[] Earray  = eachLine.Split(',');
                        string   empName = Earray[0];
                        string   empNum  = Earray[1];


                        DisplayListBox.Items.Add("\t\t\t" + empName + "\t" + empNum);
                    }
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }