Today the topic is print the * like the previous vertion one, but this time it's reverse. ow to print it without using text allingn?

here is the code ^ ^ : ( this time i only put the short one only, coz kinda busy lately)
Dim i As Integer
Dim j As Integer
Dim a As Integer
TextBox2.Text = ""
For i = 1 To ((TextBox1.Text * 2) - 1)
a = IIf(i > TextBox1.Text, (2 * TextBox1.Text) - i, i)
For j = TextBox1.Text To 0 Step -1
If j = 0 Then
TextBox2.Text = TextBox2.Text & "*" & vbCrLf
Else
If j >= a Then
TextBox2.Text = TextBox2.Text & " "
Else
TextBox2.Text = TextBox2.Text & "*"
End If
End If
Next
Next
Hope u enjoy the content ^ ^.
someone ask for exercise. how about print the star in a Diamond shape like this?

Have a nice Try.

