yogi_bear_79
Member
- Joined
- Sep 30, 2009
- Messages
- 19
- Programming Experience
- Beginner
I am using the following code to display a timer. I have no use for the hours, is it possible to format the string to show only MM:SS?
	
	
	
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
	
		
			
		
		
	
				
			
			
				VB.NET:
			
		
		
		Me.lblTime.Text = String.Format("{0}:{1:d2}:{2:d2}", remainingTime.Hours, remainingTime.Minutes, remainingTime.Seconds) 
	 
 
		

 
 
		 
 
		 
 
		