You can't use multiplication for that. Making multiplication work for textboxes might be possible, but it would be too bizarre to use generally, so it would have to be highly specific.

What you actually need to do is to use a loop:
Code:
For x as integer = 0 to NumericUpDown1.Value-1
 Me.Controls.Add(Newbox)
Next