Android Question Coding, treeview and misc query

Anirban Sen

Member
Licensed User
A. The way I am presently writing my code, everything is being written in the Main module and this way, I fear readability of the code will suffer at a later stage. Ideally, I would want to have separate module handling the logic/code for each screen/layout. Presently, I do not know how to do this as the events are getting exposed only to the Main module.

B. The project is being generated with the name 'B4A Example'. I am unable to figure out how to change this to 'MIS'?

C. I have used Treeview for some reports. The issue is that Numeric fields are aligned to the centre. For better readability, I would prefer Quantity and Amount columns to be aligned to the right.

D. Once the project is complete, how do I generate a program that can run without IDE Debugger?

Thanks in advance.
 

Attachments

  • MIS - Copy.zip
    266 KB · Views: 149

DonManfred

Expert
Licensed User
Longtime User
B. The project is being generated with the name 'B4A Example'. I am unable to figure out how to change this to 'MIS'?
Open the region in top of mainmodule...
b4abasics1.png


->

b4abasics0002.png


change Applicationlabel to

B4X:
#ApplicationLabel: MIS

Note to update VersionCode for any version you want to release on google playstore. The number must bei grow from each version to the next..

D. Once the project is complete, how do I generate a program that can run without IDE Debugger?

b4abasics0003.png


Change the dropdown from Debug to Release and compile again.

b4abasics0004.png


A app compiled in releasemode does not need the debugger
 
Upvote 0
Top