Hola T1NCH0, buena tarde. Aquà te va tu mismo código pero un poco formateado:
Private Sub Command1_Click()
Dim Num1 As Double
Num1 = 0.05
Label1 = Num1 * Val(Text1)
End Sub
Private Sub Command2_Click()
Dim Num1 As Double
Num1 = 0.1
Label2 = Num1 * Val(Text2)
End Sub
Private Sub Command3_Click()
Dim Num1 As Double
Num1 = 0.25
Label3 = Num1 * Val(Text3)
End Sub
Private Sub Command4_Click()
Dim Num1 As Double
Num1 = 0.5
Label4 = Num1 * Val(Text4)
End Sub
Private Sub Command5_Click()
Dim Num1 As Double
Num1 = 1
Label5 = Num1 * Val(Text4)
End Sub
Private Sub Command6_Click()
Dim Num1 As Double
Num1 = 2
Label6 = Num1 * Val(Text6)
End Sub
Private Sub Command7_Click()
Dim Num1 As Double
Num1 = 5
Label7 = Num1 * Val(Text6)
End Sub
Private Sub Command8_Click()
Dim Num1 As Double
Num1 = 10
Label8 = Num1 * Val(Text8)
End Sub
Private Sub Command9_Click()
Dim Num1 As Double
Num1 = 20
Label9 = Num1 * Val(Text9)
End Sub
Private Sub Command10_Click()
Dim Num1 As Double
Num1 = 50
Label10 = Num1 * Val(Text10)
End Sub
Private Sub Command11_Click()
Dim Num1 As Double
Num1 = 100
Label11 = Num1 * Val(Text11)
End Sub
Private Sub Command12_Click()
Dim Num1 As Double
Dim Num2 As Double
Dim Num3 As Double
Dim Num4 As Double
Dim Num5 As Double
Dim Num6 As Double
Dim Num7 As Double
Dim Num8 As Double
Dim Num9 As Double
Dim Num10 As Double
Dim Num11 As Double
Num1 = 0.05
Num2 = 0.1
Num3 = 0.25
Num4 = 0.5
Num5 = 1
Num6 = 2
Num7 = 5
Num8 = 10
Num9 = 20
Num10 = 50
Num11 = 100
Label12 = (Num1 * Val(Text1)) + (Num2 * Val(Text2)) + (Num3 * Val(Text3)) + _
(Num4 * Val(Text4)) + (Num5 * Val(Text5)) + (Num6 * Val(Text6)) + _
(Num7 * Val(Text7)) + (Num8 * Val(Text8)) + (Num9 * Val(Text9)) + _
(Num10 * Val(Text10) + Num11 * Val(Text11))
End Sub
Para serte sincero, sigo sin entender el por qué de tantas variables y para qué sirve el programa (soy un poco lento en entender xD); pero bueno, en donde le das el valor a Label12, si ya no te aparece ningún error, quiere decir que era por el tipo de datos que estabas usando, como ves, usé Val(String) para los TextBox, esta función sirve para convertir valores de cadena a numéricos, también habrás notado que declaré variables de tipo Double, pues bueno, esto lo hice porque se me dio la gana, jejeje, mentira, lo hice porque con este tipo de datos podrás utilizar fracciones sin temor a que aparezca un error "raro". Espero y esto te sirva, nos vemos.