Code Monkey home page Code Monkey logo

texteditor's Issues

Fix form Font

Hi Bro. When I used your source, I found an error in the function fontToolStripMenuItem_Click(),fontToolStripMenuItem_Click,
When I press exit the form still opens a new form. How I fix errors:

private void fontToolStripMenuItem_Click(object sender, EventArgs e){
try
  {
        DialogResult result = fontDialog1.ShowDialog();    // show the Font Dialog
        System.Drawing.Font oldFont = this.Font;    // gets current font
        if (result == DialogResult.OK)
        {
            fontDialog1_Apply(richTextBox1, new System.EventArgs());
        }
        // set back to the recent font
        else if (result == DialogResult.Cancel)
        {
            // set current font back to the old font
            this.Font = oldFont;
            // sets the old font for the controls inside richTextBox1
            foreach (Control containedControl in richTextBox1.Controls)
            {
                containedControl.Font = oldFont;
            }
        }
    }
    catch (Exception ex)
    {
        MessageBox.Show(ex.Message, "Error Information", MessageBoxButtons.OK, MessageBoxIcon.Warning); // error
    }
}
private void fontToolStripMenuItem_Click(object sender, EventArgs e)
{
    try
    {
        DialogResult result = fontDialog1.ShowDialog();    // show the Font Dialog
        System.Drawing.Font oldFont = this.Font;    // gets current font
        if (result == DialogResult.OK)
        {
            fontDialog1_Apply(richTextBox1, new System.EventArgs());
        }
        // set back to the recent font
        else if (result == DialogResult.Cancel)
        {
            // set current font back to the old font
            this.Font = oldFont;
            // sets the old font for the controls inside richTextBox1
            foreach (Control containedControl in richTextBox1.Controls)
            {
                containedControl.Font = oldFont;
            }
        }
    }
    catch (Exception ex)
    {
        MessageBox.Show(ex.Message, "Error Information", MessageBoxButtons.OK, MessageBoxIcon.Warning); // error
    }
}

Error while increasing the font size.

Hi bro. I was learning from your project, and I found a bug while increasing the font size from the increaseStripButton_Click().

Solution:

private void increaseStripButton_Click(object sender, EventArgs e)
        {
            try
            {
                int size = Convert.ToInt32(richTextBox1.SelectionFont.Size) + 1;    // convert (fontSizeNum + 1)
                if (richTextBox1.SelectionFont == null)
                {
                    return;
                }
                // sets the updated font size
                richTextBox1.SelectionFont = new Font(richTextBox1.SelectionFont.FontFamily
                    ,size,richTextBox1.SelectionFont.Style);

                fontSizeComboBox.Text = size.ToString();    // update font size
            }
            catch(Exception ex)
            {
                MessageBox.Show(ex.Message, "Error Information", MessageBoxButtons.OK, 
                    MessageBoxIcon.Warning); // show error message
            }
        }

Good luck!

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.