\\\\\\\\\\\\\\
Why when pressing a button in the main form the background blinks in the main form with each pressure and does not remain stationary
i used jpg,bmp,png>>>>same problem
Private Sub Command284_Click()
Dim CPU As String
Dim RAM As String
Dim HDD As String
Dim Spec As String
CPU = InputBox("Enter CPU.")
RAM = InputBox("Enter RAM.")
HDD = InputBox("Enter HDD.")
Spec = (CPU & "," & RAM & "," & HDD)
Me.Spec = Spec
End Sub