B4A, of course
	
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
What the result will be?
And this?:
	
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
https://www.b4x.com/android/forum/threads/trasformare-un-importo-in-un-intero.58999/
	
	
		
			
	
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
Result: 125060
		
	
			
			
			
				B4X:
			
		
		
		Dim D As Double = 1250.60
D = D * 100
Log("D = " & D)
	What the result will be?
And this?:
			
				B4X:
			
		
		
		Dim D As Double = 1250.60
Dim L As Long = D * 100
Log("D = " & D)
Log("L =: " & L)
	https://www.b4x.com/android/forum/threads/trasformare-un-importo-in-un-intero.58999/
			
				B4X:
			
		
		
		  Private Sub Form1_Load(sender As Object, e As System.EventArgs) Handles Me.Load
      Dim D As Double = 1250.6
      D = D * 100
      Debug.Write(D)
      Application.Exit()
End Sub
	
			
				Last edited: