Wish More features

chrjak

Active Member
Licensed User
Longtime User
Hey Erel,
This is an answer on this message: (#9) http://www.b4x.com/android/fo...oid-v3-50-beta-is-released.38421/#post-227467
The "text wrapper" was already in Version 3 and you named it "Auto compelete Code".
It was a great feature, which i want to have in the 3.5 Version(or later),too. but a Button would be useful to scan the project- If you already have a project and the code is not sorted you click on this button to "auto complete" the complete project.

and the second one:
Now the "both" function sets only the distance -A fuction, which leaves the Width alone and only sets the Button in the middle would be great. Now i do this with this Code:
Code:
Button1.left = 50%x - button1.width/2
and it would be easier if you could set this in the designer.

Hopefully you could follow. If not ask the things, which are unclear

Regards
Chris
 

chrjak

Active Member
Licensed User
Longtime User
Ok. You know the "Auto complete" function?
It was in b4a version 3
I want to have this function again
-second part:
And a button would be nice. Because i have many projects with some terrible code like:
B4X:
If string = string then
If string = string then
If string = string then
end if
end if
end if
and when i edited one line then the code became sorted but only this line- result:
B4X:
If string = string then
    If string = string then
If string = string then
end if
end if
end if
-and when you click on the button, which i wish the complete project gets sorted and not only the one line.
like vbindent.com
Regards
 
Top