Im very new to PocketC so you might see quite a few questions in the future.. For now, though, I have a major one!!
- Code: Select all
@app myApp
{
creator = "DBiC";
name = "My First Application";
dbname = "MyFirst-DB";
}
@form myForm
{
id = 1001
text = "My First Form"
x = 0, y=0, w=320, h=480
resizable = true
}
handler myApp.onstart()
{
myForm.load();
}
Won't work! Says the form has to be 160 x 160 but my TX has a 320x480 display.. Am I doing something wrong? I have read the help file but its still a bit unclear on how I get a form element below the 160th pixel on my screen...
Thanks in advance!
Christopher