- Local time
- Today, 01:27
- Joined
- Jul 9, 2003
- Messages
- 17,582
You have a typos in your code your case statement is incorrect...
	
	
	
		
 
		Code:
	
	
	                        Select Case fGetCtrlZero
                            Case "G_price"
                            Me.G_price = Me.G_total / Me.G_amount
                            
                            Case "G_amount"
                            Me.G_amount = Me.G_total / Me.G_price
                        
                            Case "G_total"
                            Me.G_total = Me.G_price * Me.G_amount
                        End Select 
	 
 
		 
 
		