Hallo,
warum bekomme ich bei diesem Code die Warnung: "Not all code paths returns a value"?
warum bekomme ich bei diesem Code die Warnung: "Not all code paths returns a value"?
B4X:
Sub Activity_KeyPress (KeyCode As Int) As Boolean
If KeyCode = KeyCodes.KEYCODE_BACK AND pnlMenu.Visible = True Then
pnlMenu.Enabled = False
pnlMenu.Visible = False
Canvas1.DrawLine(x1,x2,y1,y2,Colors.Transparent,2dip) 'Linie löschen
Canvas1.DrawRect(Rechteck1,Colors.Transparent,False,3dip)
Return True
End If
End Sub