Hey guys
Okay,so I am developing a application that should take data from some so called "editfields" and then send then all in a text message.
This is my code sofar:
What am I doing wrong??
Please help me
Thestar19
Okay,so I am developing a application that should take data from some so called "editfields" and then send then all in a text message.
This is my code sofar:
B4X:
Sub Globals
Dim phone_n As EditText
Dim team1 As EditText
Dim team2 As EditText
Dim time_game As EditText
End sub
Sub send1_Click
Dim message As String
message = name.Text+","+phone_n.Text+","+team1.Text+","+team2.Text+","+time_game.Text+","
Msgbox(message,"Information")
Dim send As PhoneSms
send.Send("0707575130",message)
Activity.LoadLayout("main")
End sub
What am I doing wrong??
Please help me
Thestar19