I have two problems here that should be easy but I'm stumped.

1.) I need a If statement that says IF label3(SP + 3) = 2.2 and Label3(SP+!) ="####82-#" then it should pop up a passed on a box. If those both are not true then it should popup a box saying INCORRECT. VB6 does not like my + .. any ideas?

2.) Also on the Label3(SP+1).Caption = "####82-#" the # means random numbers that can change, but the 82 won't. That is what I want the If statement to check to see if that 82 is in the 5th and 6th spot while ignoring the others where the # and - are. Any ideas?

Thank you!!!!

Code:
  If Label3(SP + 3).Caption = "2.2" + Label3(SP + 1).Caption = "####82-#" Then
    MsgBox ("Diameter and Carbon Passed!")
    Else
    MsgBox ("STOP! INCORRECT CARBON AND DIAMETER MATCH! CONTACT SUPERVISOR NOW!")
    End If