Click here to Skip to main content
15,900,258 members
Home / Discussions / Mobile
   

Mobile

 
QuestionLinker Error when built for Device and NO error for Emulator Pin
Rajesh R Nair7-Aug-08 6:22
Rajesh R Nair7-Aug-08 6:22 
QuestionForce the Phone to work only when the device is in the cradle Pin
Pryzrak7-Aug-08 0:47
Pryzrak7-Aug-08 0:47 
Question[Compact Framework] Multiline Label Pin
NetXtreme6-Aug-08 23:21
NetXtreme6-Aug-08 23:21 
QuestionGraphics.ResetClip Pin
Nigel Savidge5-Aug-08 6:06
Nigel Savidge5-Aug-08 6:06 
AnswerRe: Graphics.ResetClip Pin
Mike Dimmick7-Aug-08 12:08
Mike Dimmick7-Aug-08 12:08 
QuestionSMS through PC in VB.NET Pin
msmahmood644-Aug-08 22:05
msmahmood644-Aug-08 22:05 
QuestionUI effects Pin
Ahmed Charfeddine4-Aug-08 21:47
Ahmed Charfeddine4-Aug-08 21:47 
QuestionSMS via VB DOT NET Pin
msmahmood644-Aug-08 21:39
msmahmood644-Aug-08 21:39 
I have written a program for sending SMS from my PC. But there is a small problem that is the message did not save in the inbox of the mobile phone. Pl help in this regard. The complete code is

Imports System.IO.Ports

Public Class Form1
Dim WithEvents serialport As New IO.Ports.SerialPort
Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
For i As Integer = 0 To My.Computer.Ports.SerialPortNames.Count - 1
ComboBox1.Items.Add(My.Computer.Ports.SerialPortNames(i))
Next
End Sub

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

If serialport.IsOpen Then
serialport.Close()
End If

Try
With serialport
.PortName = ComboBox1.Text
.BaudRate = 96000
.Parity = Parity.None
.DataBits = 8
.StopBits = StopBits.One
.Handshake = Handshake.RequestToSend
.DtrEnable = True
.RtsEnable = True
.NewLine = vbCrLf
End With
serialport.Open()
Catch ex As Exception

End Try

serialport.WriteLine("AT+CMGF=1" & vbCr)
System.Threading.Thread.Sleep(200)
serialport.WriteLine("AT+CMGS=" & Chr(34) & "destination" & Chr(34) & vbCr)
System.Threading.Thread.Sleep(200)
serialport.WriteLine("test message" & vbCrLf & Chr(26))
System.Threading.Thread.Sleep(200)
End Sub
End Class
AnswerRe: SMS via VB DOT NET Pin
fjptlzx4-Aug-08 21:59
fjptlzx4-Aug-08 21:59 
QuestionAbout ListView Create Pin
Member 34113024-Aug-08 18:38
Member 34113024-Aug-08 18:38 
Questionsoft input panel Pin
iayd2-Aug-08 3:41
iayd2-Aug-08 3:41 
AnswerRe: soft input panel Pin
akirilov3-Aug-08 23:24
akirilov3-Aug-08 23:24 
QuestionNew To Mobile Applications Need Help Pin
Krazy Programmer1-Aug-08 22:09
Krazy Programmer1-Aug-08 22:09 
QuestionKeypad mapping Pin
MS_TJ1-Aug-08 1:03
MS_TJ1-Aug-08 1:03 
AnswerRe: Keypad mapping Pin
akirilov1-Aug-08 4:31
akirilov1-Aug-08 4:31 
GeneralRe: Keypad mapping Pin
MS_TJ1-Aug-08 19:20
MS_TJ1-Aug-08 19:20 
GeneralRe: Keypad mapping Pin
akirilov3-Aug-08 21:38
akirilov3-Aug-08 21:38 
Questionneed to start data connection automatically for my app Pin
Muhammad Rafiq30-Jul-08 4:05
Muhammad Rafiq30-Jul-08 4:05 
QuestionDLL sizes on CE Pin
Jim Crafton29-Jul-08 7:17
Jim Crafton29-Jul-08 7:17 
AnswerRe: DLL sizes on CE Pin
Mike Dimmick31-Jul-08 1:58
Mike Dimmick31-Jul-08 1:58 
GeneralRe: DLL sizes on CE Pin
Mike Dimmick31-Jul-08 4:36
Mike Dimmick31-Jul-08 4:36 
GeneralRe: DLL sizes on CE Pin
Jim Crafton1-Aug-08 10:14
Jim Crafton1-Aug-08 10:14 
QuestionMobile Web Application on Pocket PC 2003 Emulator Pin
Ian Uy29-Jul-08 2:34
Ian Uy29-Jul-08 2:34 
AnswerRe: Mobile Web Application on Pocket PC 2003 Emulator Pin
Slick6926-Aug-08 10:18
Slick6926-Aug-08 10:18 
QuestionProblem to connect PDA with database. Pin
Sritanu _ Ghosh28-Jul-08 21:37
Sritanu _ Ghosh28-Jul-08 21:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.