F Fox Active Member Licensed User Longtime User Jul 19, 2011 #1 i try to readout an number from my phone with this code Dim a As PhoneId Dim b As String a.GetLine1Number b = a Msgbox(b,"Own number") but b shows me just some javacode in the messagebox... where is my error?
i try to readout an number from my phone with this code Dim a As PhoneId Dim b As String a.GetLine1Number b = a Msgbox(b,"Own number") but b shows me just some javacode in the messagebox... where is my error?
klaus Expert Licensed User Longtime User Jul 19, 2011 #2 It should be: Dim a As PhoneId Dim b As String b = a.GetLine1Number Msgbox(b,"Own number") Best regards. Upvote 0
It should be: Dim a As PhoneId Dim b As String b = a.GetLine1Number Msgbox(b,"Own number") Best regards.
F Fox Active Member Licensed User Longtime User Jul 19, 2011 #3 Ohhh yes sorry :sign0104: thx klaus but i have tried it and it should show my number right? but i get an clean message box Last edited: Jul 19, 2011 Upvote 0
Ohhh yes sorry :sign0104: thx klaus but i have tried it and it should show my number right? but i get an clean message box
agraham Expert Licensed User Longtime User Jul 20, 2011 #4 Is the phone on the device turned on? If not the SIM card is probably not powered and can't be read. Upvote 0