iOS Question Debug vs Release

moore_it

Well-Known Member
Licensed User
Longtime User
When i put a code in resize event of a page

Private sub pagename_Resize(Width As Int, Height As Int)
end sub

in debug if i don't put a breakpoint in the code (because i put breakpoint in another class) the sub not performed, if i put a breakpoint in the class (not necessary in the sub) the sub is performed , in release mode work fine ...

It's a bug ?
 

tufanv

Expert
Licensed User
Longtime User
I have a similar problem. When I run in debug mode the app does not run it says

i=list1.Get(secilen)
javac 1.7.0_71
shell\src\com\ctmobilesoft\bmi14\b4i_main_subs_0.java:2145: error: double cannot be dereferenced
_i = BA.ObjectToNumber(_list1.runMethod(false,"Get:",(Object)(_secilen))).intValue;Debug.locals.put("i", _i);
^
1 error


But when I run in release mode no problems. Thats why I ant use the debug mode. How can i fix this ?

Can you upload a project that demonstrates this issue?
 
Upvote 0

moore_it

Well-Known Member
Licensed User
Longtime User
I hope it's helpful to understand the problem

Thanks
Toni
 

Attachments

  • IOS_ERR.zip
    392.9 KB · Views: 195
Upvote 0
Top