jcohedman Member Licensed User Longtime User Jun 10, 2014 #1 when I execute .jar, it appears different than when I compile and run... what am I doing wrong?
Erel B4X founder Staff member Licensed User Longtime User Jun 11, 2014 #2 In which way is it different? Upvote 0
jcohedman Member Licensed User Longtime User Jun 13, 2014 #3 B4X: MainForm.BackColor=fx.Colors.Red MainForm.Show if I compile and run, the color is red, executing .jar, white... Upvote 0
B4X: MainForm.BackColor=fx.Colors.Red MainForm.Show if I compile and run, the color is red, executing .jar, white...
Erel B4X founder Staff member Licensed User Longtime User Jun 15, 2014 #4 I'm unable to reproduce it. Tried with this code: B4X: Sub Process_Globals Private fx As JFX Private MainForm As Form End Sub Sub AppStart (Form1 As Form, Args() As String) MainForm = Form1 MainForm.BackColor = fx.Colors.Red MainForm.Show End Sub Upvote 0
I'm unable to reproduce it. Tried with this code: B4X: Sub Process_Globals Private fx As JFX Private MainForm As Form End Sub Sub AppStart (Form1 As Form, Args() As String) MainForm = Form1 MainForm.BackColor = fx.Colors.Red MainForm.Show End Sub