then ... numericUpDown even has the Hexadecimal count format, however when sending to texBox it counts only in decimal is there any way the textBox can get the given numeric value in Hexadecimal?
I send the numeric value to the textBox like this:
private void numericUpDown1_ValueChanged(object sender, EventArgs e)
{
textBox1.Text = Convert.ToString(numericUpDown1.Value);
}