Apip Bayok
Member
Hello everyone,
I work using B4A and write hundred line of code and sometime it's me make confused, for example:
	
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
	
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
is there a way to make it prettier with some shortcut or feature?
			
			I work using B4A and write hundred line of code and sometime it's me make confused, for example:
			
				B4A IDE Default style:
			
		
		
		Sub exm(a As Int,v As Boolean)
    If a<>0 Then
        Log("this a="&a)
        Else
            If v=True Then
                Log(v)
                Else
                    Log("this is example")
            End If
    End If
End Sub
Private Sub example(a As Int)
    If a=1 Then
        Else If a=2 Then
            else if a=3 Then
                Else                    
    End If
End Sub
			
				Wish be could like this:
			
		
		
		Sub exm(a As Int,v As Boolean)
    If a<>0 Then
        Log("this a="&a)
    Else
        If v=True Then
            Log(v)
        Else
            Log("this is example")
        End If
    End If
End Sub
Private Sub example(a As Int)
    If a=1 Then
        
    Else If a=2 Then
        
    else if a=3 Then
        
    Else
                            
    End If
End Subis there a way to make it prettier with some shortcut or feature?
 
				 
 
		 
 
		 
 
		 
 
		 
 
		 
 
		 
 
		 
 
		