PDA

View Full Version : Need 3310 VB program to read and send SMS



OwenMania
15-10-2003, 02:40 AM
I am currently doing a project on sending and receiving SMS by using Visual Basic
the program should be able to read and send SMS automatically
the phone i am using is 3310

Thank you very very much if you could help!

jc_armor
15-10-2003, 05:37 PM
I'm currently working on that too...I'm almost 90% finished...If you have any questions on sending or reading sms messages, just post it here.

OwenMania
16-10-2003, 03:15 AM
may i know when you will be able to finish the code?
do u mind posting the code here?
Thanks !

jc_armor
16-10-2003, 06:34 PM
Hopefully within 2 weeks, I can finish everything...I'm having problems reading linked messages.

Once I finished the code, i'll post it here so that anybody whose interested can download the code.

Maybe you can help me in reading linked messages. Do you have any idea on how to decode it?

OwenMania
17-10-2003, 02:35 AM
I don have idea now.
but i will read your code and hopefully i can help to solve the problem
Thanks

n0th1n6
17-10-2003, 04:35 AM
Sir JC baka pwede po hingi ng source code mo, la na akong time para mag start from scratch eh thanks

jc_armor
17-10-2003, 10:20 AM
Sure...but i'm not yet finished. Maybe you can help me out decode this frameset:

1E 0C 00 14 00 7A 01 08 00 08 05 02 16 02 02 81 F0 08 00 08 05 02 16 02 02 81 41 00 00 00 A0 00 81 01 00 74 41 00 00 00 A0 00 81 FF FF FF FF FF FF FF 05 00 03 C7 02 01 A8 E8 F4 1C 94 9E 83 D4 F5 39 1D 14 06 D1 CB 73 BA 0B 74 3D 83 DA E1 79 3E 4C 7E 83 C2 EC 30 3B 0C 5A 8F 41 F4 F2 9C 9E 76 9F 41 6C F7 19 E4 3E 87 41 69 FA 1B 54 76 81 A6 61 77 18 D4 3E DF DF F2 35 08 2E 0F 83 02 47 05 E7


This is one of the frameset that I couldn't read.

By the way, do you have any idea on how to send long sms?

NokDoc
17-10-2003, 03:18 PM
Mr. N0th1n6,

In between the bytes, we have a habit to speak in English here.

We would appreciate it if U do so too.

Thanks

NokDoc

ASalma
04-11-2003, 04:12 PM
Hi everybody,
I have been trying to connect to a Nokia 3350 via MBUS data cable.
the code is as follows

.
.
.
Private Sub reset_Click()
strRx = ""
Delay
infotext.Text = ""
infotext.Text = strRx
Launch11 ("1F 00 10 40 00 04 00 01 64 03 11 3C")
end sub
.
.
.
in module launch
Sub Launch11(H As String)
'Dimension the variables for this rutine
Dim strHexList() As String
Dim loop1 As Long
Dim bytSend As Byte
strHexList = Split(H, " ")
For loop1 = 0 To UBound(strHexList)
bytSend = CByte("&H" & strHexList(loop1))
Next
End Sub

The above code restarts the mobile. But if i use
Launch11 ("1F 00 0C 14 00 0C 00 01 01 07 08 00 01 01 65 01 01 42 7A 5C"). which is supposed to read the message in the inbox i get reply as

in ascii: ???Œ?? ?(??
in hex : 3F3F3F8C3F3FC3F283F3F03F3F3F3F3F3F3F3F3F3F3FFF

Can somebody help me as to what is this reply or whether my code itself is wrong. if possible plz some one could send me a sample code for sending a SMS.
My email id is [email protected]

Thanks and regards
Salma

natnat
05-11-2003, 08:02 AM
guyzzz please post it here coz i need it too and please avoid sending PM when its useful for everybody.

OwenMania
19-11-2003, 02:50 AM
hi could anyone post your code for recieving n sending sms here?
Thx a lot

ASalma
20-11-2003, 10:58 AM
Hello,
I am creating an application to send SMS via PC.
It was required to display the senders name(thats me) on the receivers mobile inbox even if the receiver hasn't stored my number.
Could some one please help me out by sending your code or wesite address. I am using MBUS commands.
Regards,
Salma

jc_armor
21-11-2003, 10:22 AM
Hello,
I am creating an application to send SMS via PC.
It was required to display the senders name(thats me) on the receivers mobile inbox even if the receiver hasn't stored my number.
Could some one please help me out by sending your code or wesite address. I am using MBUS commands.
Regards,
Salma

Sorry, but i think this is impossible. Only stored numbers can be recognized by the mobile phone.

Bungle
21-11-2003, 03:39 PM
Sorry, but i think this is impossible. Only stored numbers can be recognized by the mobile phone.

Im fairly sure you can do it, I saw it done a while ago, some online sms service let you put in the name that came up in the inbox on the list of messages. Dont think it would work on new phones since they just list the contents of the message if the sender isnt recognised tho.

ASalma
22-11-2003, 02:09 PM
Hi
Could you please let me know how exactly I must proceed to cause this the sender name to be displayed.
If sombody could format an MBus or Fbus command I would be very grateful.

Regards,
Salma

fiddler_808
11-12-2003, 08:25 AM
hi im currently working on a thesis about SMS-based Home Automation. Im planning to extract the SMS message from the phone using a Z8 Encore Development Kit using FBUS protocol. Im having trouble with the UART data registers. I know all frame format and all. My problem is actually receiving the bytes from the phone. I am aware that when a phone gets sent a message it also sends out a "message received frame" which contains the original message. I wait for this frame at the UART register of the z8 dev. board. Can u offer some help? thanks!

I am using 3310.

[email protected]

cjard
08-01-2004, 04:32 PM
Im fairly sure you can do it, I saw it done a while ago, some online sms service

that is because that online SMS service owns their own SMS service centre. it is the SMSc that puts your number into the FROM: field of a message, in teh same way that this bulletin board records your IP address..
you cannot change that FROM-header using the phone, any more than you can tell this bulletin board to record your ip address as HE.LL.O.MUM

the SMSc records what it sees, unless programmed otherwise. In the interests of preventing identity-faking, the major SMSc operated by networks will not allow you to choose your FROM header

caski_ex
14-01-2004, 02:57 PM
Hi everybody,
I have been trying to connect to a Nokia 3350 via MBUS data cable.
the code is as follows

.
.
.
Private Sub reset_Click()
strRx = ""
Delay
infotext.Text = ""
infotext.Text = strRx
Launch11 ("1F 00 10 40 00 04 00 01 64 03 11 3C")
end sub
.
.
.
in module launch
Sub Launch11(H As String)
'Dimension the variables for this rutine
Dim strHexList() As String
Dim loop1 As Long
Dim bytSend As Byte
strHexList = Split(H, " ")
For loop1 = 0 To UBound(strHexList)
bytSend = CByte("&H" & strHexList(loop1))
Next
End Sub

The above code restarts the mobile. But if i use
Launch11 ("1F 00 0C 14 00 0C 00 01 01 07 08 00 01 01 65 01 01 42 7A 5C"). which is supposed to read the message in the inbox i get reply as

in ascii: ???Œ?? ?(??
in hex : 3F3F3F8C3F3FC3F283F3F03F3F3F3F3F3F3F3F3F3F3FFF

Can somebody help me as to what is this reply or whether my code itself is wrong. if possible plz some one could send me a sample code for sending a SMS.
My email id is [email protected]

Thanks and regards
Salma


hi! thanx for the codes you posted, i was wondering if you could post a link to your source code for sending and reading sms. i badly need it for my thesis, i am willing to fry my eyes for long hours to understand everybit of ur code. hope somebody could help me out. Thanx and Happy New Year! by the way im using 5110.

natnat
16-01-2004, 08:48 AM
how about for a 3310???

where did you get the hex strings for reseting, receiving and sending sms by the way?

i tried your code. no error but also, nothing happens. maybe its not compatible.

thanks!

fiddler_808
22-01-2004, 07:01 PM
m interfacing a Z8 Evaluation Board and a Nokia 3310. Is the phone supposed to be configured as a DCE? i know i need to set DTR and clear RTS for FBUS operation and to power the data cable..but where do these pins connect at the serial port of my Z8 board? Id appreciate if u guys could lend me a hand..thnx!

kk_ram2001
31-03-2004, 10:18 AM
I'm currently working on that too...I'm almost 90% finished...If you have any questions on sending or reading sms messages, just post it here.


hi can u plz send me the source code for sending and receiving SMS in VB for nokia 3310. im in very urgent need of it

plz help me

with regards
ram

deepsurale
31-07-2004, 09:47 AM
I am sandip.Wants to work on same project.But not have any idea.Using Nokia 3310.Please give me summerised details.Shall i use USB to connect to mobile?Please.
[email protected]

DCA
26-08-2004, 09:44 AM
Hi everyone,

Why not have a look at:

hxxp://www.delikon.de/vb.html

Two nice examples for 7bit and 8bit PDU.

Should be enough to get it working (i guess)

l8er

veecut
07-01-2006, 03:48 PM
hi der!

im planning to create a faculty locator via sms for my thesis.. i juz would lyk to know what device wuld i be needing besides celphone&pc? & where can i get it? and please brief me about the basics for creating such program.. i rily badly nid ur help..=( thanks guys..