Don't get me wrong – B4PPC is a great tool to build apps for mobile device – it's simple, easy to use, fully documented, with numerous options and addons.
BUT
Running a very simple app like "Hello World" that weight only 40 KB (see code bellow) takes 6-8 seconds and about 3 MB of memory on the device.
A more complicate app will take about 10 seconds to load and 4-6 MB of memory.
I mean B4PPC is a very powerful tool but is there any way to reduce both memory and loading time?
"Hello World" Code:
Sub App_Start
Form1.Show
AddTextBox ("Form1","TextBox1", 60, 120, 100, 25, "")
TextBox1.text="Hello World"
End Sub
BUT
Running a very simple app like "Hello World" that weight only 40 KB (see code bellow) takes 6-8 seconds and about 3 MB of memory on the device.
A more complicate app will take about 10 seconds to load and 4-6 MB of memory.
I mean B4PPC is a very powerful tool but is there any way to reduce both memory and loading time?
"Hello World" Code:
Sub App_Start
Form1.Show
AddTextBox ("Form1","TextBox1", 60, 120, 100, 25, "")
TextBox1.text="Hello World"
End Sub