If you are experiencing an issue please mention the full platform your 
issue applies to:
IDE: NetBeans
Device: iPad Pro 9.7 
OS: iOS 10.1.1
I compile debug version.

Error Displayed on show form (Form is empty): "An internal application 
error occurred: java.io.IOException: Err"

This is a strange one. Only some small "unrelated" changes causes this, 
while Andorid builds work just fine under the same code.

E.g.:
This works

> Label lTime = new Label("Time");
> //lTime.setVerticalAlignment(CENTER); 


While this causes error

> Label lTime = new Label("Time");
> lTime.setVerticalAlignment(CENTER); 


This works

> Label lTime = new Label("Time");
> this.addComponent(3, lTime);
> Container c1 = new Container(new BoxLayout(BoxLayout.X_AXIS));
> //c1.add(lTime);
> ...
> this.addComponent(4, c1);


while this causes error

> Label lTime = new Label("Time");
> //this.addComponent(3, lTime);
> Container c1 = new Container(new BoxLayout(BoxLayout.X_AXIS));
> c1.add(lTime);
> ...
> this.addComponent(3, c1);


I could go on and on ... so something must be really ...

Best regards,
CS

-- 
You received this message because you are subscribed to the Google Groups 
"CodenameOne Discussions" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/codenameone-discussions/3a17ae6c-c99f-464a-9990-f50df72021a7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to