Hi Guys
I have tried searching this one but havent come across anything. Im creating some basic apps to familirise myself with the IDE. At present ive created a main screen with two buttons. Upon clicking one of the buttons it should open a new activity for me.
Code in Home Screen
Sub btnadd_click
startactivity("Add")
End Sub
Then in the new activity like the Home I called
Sub Activity_create
activity.loadlayout("Add")
End Sub
Im getting a java error each time i click the button indicating
"java.io.filenotfoundexception: add.bal"
I cant seem to locate a file by that name in my project however i can see Add.bas. Have i missed something simple here or am i getting an error as its looking for the wrong file extension???
Any help appreicated