Hi,
I have a project (Project1) with 2 activities (Activity1 and Activity2) which is successfully running on ICS (rooted)
I have another project (Project2) with 2 activities (Activity3 and Activity4) for a Gingerbread device (Samsung Galaxy Y) (non-rooted)
This is code in Project1-Activity1
This is code in Project2-Activity3
This is code in Project1-Activity2 and Project2-Activity4
When compiling for the Galaxy Y (Gingerbread) I am getting the following error: (The compile was error-free for ICS)
In Activity3, I do not see the list of functions in the dropdown when I give "Activity4.".
Please give some suggestions on how to solve this?
Thanks in advance
I have a project (Project1) with 2 activities (Activity1 and Activity2) which is successfully running on ICS (rooted)
I have another project (Project2) with 2 activities (Activity3 and Activity4) for a Gingerbread device (Samsung Galaxy Y) (non-rooted)
This is code in Project1-Activity1
B4X:
strDt=Activity2.fnNow
This is code in Project2-Activity3
B4X:
strDt=Activity4.fnNow
This is code in Project1-Activity2 and Project2-Activity4
B4X:
Sub fnNow As String
Dim LnkDt As String
now = DateTime.now
LnkDt = DateTime.Date(now) ' e.g.: "110812150355" is Aug.12, 2011, 3:03:55 p.m.
Return LnkDt
End Sub
When compiling for the Galaxy Y (Gingerbread) I am getting the following error: (The compile was error-free for ICS)
B4X:
Compiling code. Error
Error compiling program.
Error description: Unknown member: fnnow
Occurred on line: 34
strDt=Activity4.fnnow
Word: fnnow
In Activity3, I do not see the list of functions in the dropdown when I give "Activity4.".
Please give some suggestions on how to solve this?
Thanks in advance