コード例 #1
0
        private void button4_Click(object sender, EventArgs e)
        {
            MessageBox.Show("Downloading File");

            String downloaded_file = FileHandling.downloadFile();

            if (downloaded_file == null)
            {
                pictureBox1.Hide();
                richTextBox1.Show();
                string text = "Error while downloading";
                richTextBox1.Text = text;

                MessageBox.Show("Error while downloading");
                return;
            }

            String file_suffix = FirstdraftUiUtility.getSuffix(downloaded_file);

            MessageBox.Show("Suffix is " + file_suffix);

            if (file_suffix.Equals("jpg") == true ||
                file_suffix.Equals("jpeg") == true ||
                file_suffix.Equals("gif") == true ||
                file_suffix.Equals("bmp") == true)
            {
                // display image in picture box
                richTextBox1.Hide();
                pictureBox1.Show();
                pictureBox1.Image = new Bitmap(downloaded_file);
            }
            else if (file_suffix.Equals("txt") == true)
            {
                pictureBox1.Hide();
                richTextBox1.Show();
                string text = File.ReadAllText(downloaded_file);
                richTextBox1.Text = text;
                //richTextBox1.Text = "!..Welcome to FirstDraft..!";
            }
            else //pdf for now
            {
                pictureBox1.Hide();
                richTextBox1.Show();
                string text = "Format not supported";
                richTextBox1.Text = text;
                //richTextBox1.Text = "!..Welcome to FirstDraft..!";
            }

            MessageBox.Show("Filename is " + downloaded_file);


            MessageBox.Show("File downloaded");
        }
コード例 #2
0
        private void button3_Click(object sender, EventArgs e)
        {
            MessageBox.Show("Uploading File");

            // open file dialog
            OpenFileDialog open = new OpenFileDialog();

            // image filters
            open.Filter = "Image Files(*.jpg; *.jpeg; *.gif; *.bmp;*.txt;*.pdf)|*.jpg; *.jpeg; *.gif; *.bmp; *.txt; *.pdf";

            if (open.ShowDialog() != DialogResult.OK)
            {
                return;
            }

            String file_suffix = FirstdraftUiUtility.getSuffix(open.FileName);

            MessageBox.Show("Suffix is " + file_suffix);

            if (file_suffix.Equals("jpg") == true ||
                file_suffix.Equals("jpeg") == true ||
                file_suffix.Equals("gif") == true ||
                file_suffix.Equals("bmp") == true)
            {
                // display image in picture box
                richTextBox1.Hide();
                pictureBox1.Show();
                pictureBox1.Image = new Bitmap(open.FileName);
            }
            else if (file_suffix.Equals("txt") == true)
            {
                string text = File.ReadAllText(open.FileName);
                pictureBox1.Hide();
                richTextBox1.Show();
                richTextBox1.Text = text;
                //richTextBox1.Text = "!..Welcome to FirstDraft..!";
            }
            else //pdf for now
            {
                string text = "Format not supported";
                pictureBox1.Hide();
                richTextBox1.Show();
                richTextBox1.Text = text;
                //richTextBox1.Text = "!..Welcome to FirstDraft..!";
            }

            MessageBox.Show("Filename is " + open.FileName);

            FileHandling.uploadFile(open.FileName);

            if (FileHandling.isOperationSuccess() == false)
            {
                string text = "Upload operation failed";
                pictureBox1.Hide();
                richTextBox1.Show();
                richTextBox1.Text = text;

                MessageBox.Show("Upload operation failed");

                return;
            }
            MessageBox.Show("Upload operation success!!");
        }