Hi.

I can set picture box scale for the first time but after that I can't change it (For Example: Using a command button).

Code:
Private Sub Command1_Click()

Picture1.Scale (0, 0)-(3600, 90)

Picture1.Refresh


End Sub

Private Sub Form_Load()

Picture1.Scale (0, 0)-(180, 90)
    
    Picture1.Line (0, 0)-(100, 0)
    
End Sub
The command button does not work.

How can I change picture box scale for many times?

Please help me.