Hello all,
I am creating a Customview and currently i raise Customview event as such :
How can i raise an event with more data? Example :
CallSub3(mCallBack, mEventName & "_" & "UserClick","Steven","32","Male","North")
CallSub 3 limits only to 2 parameters. Please help....
I am creating a Customview and currently i raise Customview event as such :
B4X:
#Event: UserClick(svalue1 as String,svalue2 as String)
...
...
...
CallSub3(mCallBack, mEventName & "_" & "UserClick","Steven","32") '<<--- Calling of Event
How can i raise an event with more data? Example :
CallSub3(mCallBack, mEventName & "_" & "UserClick","Steven","32","Male","North")
CallSub 3 limits only to 2 parameters. Please help....