Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 188987
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T16:08:05+00:00 2026-05-11T16:08:05+00:00

how to send and return values in modal dialog form

  • 0

how to send and return values in modal dialog form

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T16:08:05+00:00Added an answer on May 11, 2026 at 4:08 pm

    Try this. It’s designed to be a counterpart to MessageBox. It doesn’t change its styling based on OS, though. It looks like Vista’s.

    Here’s an example of it in action, from it’s original home (a Paint.NET plugin).
    It will expand to fit the prompt.

    InputBox.cs:

        internal partial class InputBoxForm : Form
        {
            Size lbltextoriginalsize;
            Size pnlwhiteoroginalsize;
            public InputBoxForm(string text, string defaultvalue, string caption)
            {
                InitializeComponent();
                this.pnlWhite.Resize += new System.EventHandler(this.pnlWhite_Resize);
                this.lblText.Resize += new System.EventHandler(this.lblText_Resize);
                picIcon.Image = SystemIcons.Question.ToBitmap();
                lbltextoriginalsize = lblText.Size;
                pnlwhiteoroginalsize = pnlWhite.Size;
                this.lblText.Text = text;
                this.txtOut.Text = defaultvalue;
                this.Text = caption;
            }
    
            private void lblText_Resize(object sender, EventArgs e)
            {
                pnlWhite.Size += lblText.Size - lbltextoriginalsize;
            }
    
            private void pnlWhite_Resize(object sender, EventArgs e)
            {
                this.Size += pnlWhite.Size - pnlwhiteoroginalsize;
            }
    
            public string Value
            {
                get { return txtOut.Text; }
            }
        }
    
        /// 
        /// A counterpart to the MessageBox class, designed to look similar (at least on Vista)
        /// 
        public static class InputBox
        {
            public static DialogResult Show(string text, out string result)
            {
                return ShowCore(null, text, null, null, out result);
            }
            public static DialogResult Show(IWin32Window owner, string text, out string result)
            {
                return ShowCore(owner, text, null, null, out result);
            }
            public static DialogResult Show(string text, string defaultValue, out string result)
            {
                return ShowCore(null, text, defaultValue, null, out result);
            }
            public static DialogResult Show(IWin32Window owner, string text, string defaultValue, out string result)
            {
                return ShowCore(owner, text, defaultValue, null, out result);
            }
            public static DialogResult Show(string text, string defaultValue, string caption, out string result)
            {
                return ShowCore(null, text, defaultValue, caption, out result);
            }
            public static DialogResult Show(IWin32Window owner, string text, string defaultValue, string caption, out string result)
            {
                return ShowCore(owner, text, defaultValue, caption, out result);
            }
    
            private static DialogResult ShowCore(IWin32Window owner, string text, string defaultValue, string caption, out string result)
            {
                InputBoxForm box = new InputBoxForm(text, defaultValue, caption);
                DialogResult retval = box.ShowDialog(owner);
                result = box.Value;
                return retval;
            }
        }
    

    InputBox.Designer.cs:

        partial class InputBoxForm
        {
            /// 
            /// Required designer variable.
            /// 
            private System.ComponentModel.IContainer components = null;
    
            /// 
            /// Clean up any resources being used.
            /// 
            /// true if managed resources should be disposed; otherwise, false.
            protected override void Dispose(bool disposing)
            {
                if (disposing && (components != null))
                {
                    components.Dispose();
                }
                base.Dispose(disposing);
            }
    
            #region Windows Form Designer generated code
    
            /// 
            /// Required method for Designer support - do not modify
            /// the contents of this method with the code editor.
            /// 
            private void InitializeComponent()
            {
                this.pnlWhite = new System.Windows.Forms.Panel();
                this.lblText = new System.Windows.Forms.Label();
                this.picIcon = new System.Windows.Forms.PictureBox();
                this.txtOut = new System.Windows.Forms.TextBox();
                this.btnOK = new System.Windows.Forms.Button();
                this.btnCancel = new System.Windows.Forms.Button();
                this.pnlWhite.SuspendLayout();
                ((System.ComponentModel.ISupportInitialize)(this.picIcon)).BeginInit();
                this.SuspendLayout();
                // 
                // pnlWhite
                // 
                this.pnlWhite.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                            | System.Windows.Forms.AnchorStyles.Left)
                            | System.Windows.Forms.AnchorStyles.Right)));
                this.pnlWhite.BackColor = System.Drawing.Color.White;
                this.pnlWhite.Controls.Add(this.lblText);
                this.pnlWhite.Controls.Add(this.picIcon);
                this.pnlWhite.Controls.Add(this.txtOut);
                this.pnlWhite.Location = new System.Drawing.Point(0, 0);
                this.pnlWhite.Margin = new System.Windows.Forms.Padding(0);
                this.pnlWhite.MinimumSize = new System.Drawing.Size(235, 84);
                this.pnlWhite.Name = "pnlWhite";
                this.pnlWhite.Size = new System.Drawing.Size(235, 84);
                this.pnlWhite.TabIndex = 0;
                // 
                // lblText
                // 
                this.lblText.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                            | System.Windows.Forms.AnchorStyles.Left)));
                this.lblText.AutoSize = true;
                this.lblText.Location = new System.Drawing.Point(64, 26);
                this.lblText.Margin = new System.Windows.Forms.Padding(3, 0, 30, 30);
                this.lblText.MinimumSize = new System.Drawing.Size(159, 0);
                this.lblText.Name = "lblText";
                this.lblText.Size = new System.Drawing.Size(159, 13);
                this.lblText.TabIndex = 2;
                // 
                // picIcon
                // 
                this.picIcon.BackColor = System.Drawing.Color.White;
                this.picIcon.Location = new System.Drawing.Point(25, 26);
                this.picIcon.Name = "picIcon";
                this.picIcon.Size = new System.Drawing.Size(32, 32);
                this.picIcon.TabIndex = 1;
                this.picIcon.TabStop = false;
                // 
                // txtOut
                // 
                this.txtOut.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                            | System.Windows.Forms.AnchorStyles.Right)));
                this.txtOut.Location = new System.Drawing.Point(67, 50);
                this.txtOut.Name = "txtOut";
                this.txtOut.Size = new System.Drawing.Size(159, 20);
                this.txtOut.TabIndex = 5;
                // 
                // btnOK
                // 
                this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
                this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
                this.btnOK.Location = new System.Drawing.Point(42, 96);
                this.btnOK.Name = "btnOK";
                this.btnOK.Size = new System.Drawing.Size(88, 26);
                this.btnOK.TabIndex = 3;
                this.btnOK.Text = "OK";
                this.btnOK.UseVisualStyleBackColor = true;
                // 
                // btnCancel
                // 
                this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
                this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
                this.btnCancel.Location = new System.Drawing.Point(138, 96);
                this.btnCancel.Name = "btnCancel";
                this.btnCancel.Size = new System.Drawing.Size(88, 26);
                this.btnCancel.TabIndex = 4;
                this.btnCancel.Text = "Cancel";
                this.btnCancel.UseVisualStyleBackColor = true;
                // 
                // InputBoxForm
                // 
                this.AcceptButton = this.btnOK;
                this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
                this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
                this.CancelButton = this.btnCancel;
                this.ClientSize = new System.Drawing.Size(235, 133);
                this.Controls.Add(this.btnCancel);
                this.Controls.Add(this.btnOK);
                this.Controls.Add(this.pnlWhite);
                this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
                this.MaximizeBox = false;
                this.MinimizeBox = false;
                this.Name = "InputBoxForm";
                this.ShowIcon = false;
                this.ShowInTaskbar = false;
                this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
                this.pnlWhite.ResumeLayout(false);
                this.pnlWhite.PerformLayout();
                ((System.ComponentModel.ISupportInitialize)(this.picIcon)).EndInit();
                this.ResumeLayout(false);
    
            }
    
            #endregion
    
            private System.Windows.Forms.Panel pnlWhite;
            private System.Windows.Forms.PictureBox picIcon;
            private System.Windows.Forms.Label lblText;
            private System.Windows.Forms.Button btnOK;
            private System.Windows.Forms.Button btnCancel;
            private System.Windows.Forms.TextBox txtOut;
        }
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 325k
  • Answers 325k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer The only way to get with in a single request,… May 14, 2026 at 1:33 am
  • Editorial Team
    Editorial Team added an answer I think what you want requires an extra wrapper div.… May 14, 2026 at 1:33 am
  • Editorial Team
    Editorial Team added an answer One thought I had was to cache the results of… May 14, 2026 at 1:33 am

Related Questions

I've been intermixing JSPs and Servlets in the web app I'm building and I'm
I have a question on how to update an existing row in my database
Using the Authors/Books catalog example, let's say I want to edit the info for
I am a primarily a PHP guy. How would I handle forms in django?

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.