Salve,

ho questo codice:

codice:
	  If IntImgW => IntImgH Then
	     If IntImgW > 240 Then
		    
			IntNewImgW = 240
		    IntNewImgH = (IntNewImgW / IntImgW) * IntImgH
         
		 End If
	  Else
	     If IntImgH > 240 Then
		    IntNewImgH = 240
		    IntNewImgW = (IntNewImgH / IntImgH) * IntImgW
		 End If
	  End If
che genera questo errore:

Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.

Compiler Error Message: BC30201: Expression expected.
su questa riga:

codice:
If IntImgW => IntImgH Then
come mai ?

grazie !