3
then... the numericUpDown even has the count format in Hexadecimal, but when sending to texBox it counts only in decimal has some form of textbox to receive the Numeric given value in Hexadecimal?
I send the Numeric value to the textbox so:
private void numericUpDown1_ValueChanged(object sender, EventArgs e)
{
textBox1.Text = Convert.ToString(numericUpDown1.Value);
}
Poxa worth myth, came out perfect!
– Pedro Silva
Tiago, I got a problem, I was both sending the value of Numeric to the textbox and the textbox to Numeric, as a form of Load, when opening the file they synchronize and the úsuario can adjust the value of the textbox manually by Numeric, can you do the same process? or this time I’ll have to give up that timing?
– Pedro Silva
numericUpDown1.Value =int. Parse(textBox1.Text, System.Globalization.Numberstyles.Hexnumber)
– Tiago S