Hi,
I'm converting my app to B4XPages and i want to know if a page already exist ,is there a way to do it?
Regards
I'm converting my app to B4XPages and i want to know if a page already exist ,is there a way to do it?
Something like that:
Dim MyPage As B4XMyPage
MyPage.Initialize
if B4xPages.PageExist("MyPage") then
MyPage = B4xPages.GetPage("MyPage")
else
B4XPages.AddPageAndCreate("MyPage",MyPage)
end if
Regards