Nov 16, 2010 #1 Palmyra Programmer Jan 5, 2007 150 US Can I strip the left four characters from a variable that I'm setting from a combo box? For example: Dim Resolution as String Resolution = Me.cboResolution However, I always want to strip the first four characters from Me.cboResolution Thanks.
Can I strip the left four characters from a variable that I'm setting from a combo box? For example: Dim Resolution as String Resolution = Me.cboResolution However, I always want to strip the first four characters from Me.cboResolution Thanks.
Nov 16, 2010 1 #2 MakeItSo Programmer Oct 21, 2003 3,316 DE Resolution=Mid(Me.cboResolution, 5) ? [navy]"We had to turn off that service to comply with the CDA Bill."[/navy] - The Bastard Operator From Hell Upvote 0 Downvote
Resolution=Mid(Me.cboResolution, 5) ? [navy]"We had to turn off that service to comply with the CDA Bill."[/navy] - The Bastard Operator From Hell
Nov 16, 2010 Thread starter #3 Palmyra Programmer Jan 5, 2007 150 US Perfect. Thank you. Upvote 0 Downvote