thanks for the info, I'll pass that along.
As for a work around for the numericUpDown, I had a wild idea. You could
make your own with a textbox (that supports big fonts) and a vScrollBar
that's big, but not tall enough to see the thumb (or 2 separate buttons for
up/down):
using System;
using System.Drawing;
using System.Collections;
using System.Windows.Forms;
using System.Data;
namespace myNumericUpDown
{
/// <summary>
/// Summary description for Form1.
/// </summary>
public class Form1 : System.Windows.Forms.Form
{
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.VScrollBar vScrollBar1;
private System.Windows.Forms.MainMenu mainMenu1;
public Form1()
{
//
// Required for Windows Form Designer support
//
InitializeComponent();
}
/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose( bool disposing )
{
base.Dispose( disposing );
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.mainMenu1 = new System.Windows.Forms.MainMenu();
this.textBox1 = new System.Windows.Forms.TextBox();
this.vScrollBar1 = new System.Windows.Forms.VScrollBar();
//
// textBox1
//
this.textBox1.Font = new System.Drawing.Font("Tahoma", 18F,
System.Drawing.FontStyle.Regular);
this.textBox1.Location = new System.Drawing.Point(32, 40);
this.textBox1.Size = new System.Drawing.Size(128, 44);
this.textBox1.Text = "textBox1";
//
// vScrollBar1
//
this.vScrollBar1.Location = new System.Drawing.Point(160, 40);
this.vScrollBar1.Maximum = 91;
this.vScrollBar1.Size = new System.Drawing.Size(32, 40);
this.vScrollBar1.ValueChanged += new
System.EventHandler(this.vScrollBar1_ValueChanged);
//
// Form1
//
this.Controls.Add(this.vScrollBar1);
this.Controls.Add(this.textBox1);
this.Menu = this.mainMenu1;
this.Text = "Form1";
}
#endregion
/// <summary>
/// The main entry point for the application.
/// </summary>
static void Main()
{
Application.Run(new Form1());
}
private void vScrollBar1_ValueChanged(object sender,
System.EventArgs e)
{
this.textBox1.Text = this.vScrollBar1.Value.ToString();
}
}
}
NETCF Beta FAQ's --
http://www.gotdotnet.com/team/netcf/FAQ.aspx
This posting is provided "AS IS" with no warranties, and confers no rights.