Click here to Skip to main content
15,891,431 members
Home / Discussions / Mobile
   

Mobile

 
AnswerRe: How to send SMS to multiple recipients? Pin
Joel Ivory Johnson17-May-09 10:25
professionalJoel Ivory Johnson17-May-09 10:25 
GeneralRe: How to send SMS to multiple recipients? Pin
Zeng_Zeng17-May-09 16:23
Zeng_Zeng17-May-09 16:23 
AnswerRe: How to send SMS to multiple recipients? Pin
Jabbar_espania18-May-09 23:10
Jabbar_espania18-May-09 23:10 
QuestionSound emission with duration and frequency control Pin
slugger66613-May-09 6:59
slugger66613-May-09 6:59 
AnswerRe: Sound emission with duration and frequency control Pin
Joel Ivory Johnson14-May-09 6:41
professionalJoel Ivory Johnson14-May-09 6:41 
QuestionTimer Control do not have Start and Stop methods. Pin
sunit_8213-May-09 3:06
sunit_8213-May-09 3:06 
AnswerRe: Timer Control do not have Start and Stop methods. Pin
PavanPareta13-May-09 8:19
PavanPareta13-May-09 8:19 
AnswerRe: Timer Control do not have Start and Stop methods. Pin
yrishi14-May-09 1:15
yrishi14-May-09 1:15 
You can use timer1.Enabled = true to start and for stop timer1.Enabled = false
And for yor stopwatch application, you can create this application using single timer control like.......
'-------------------------------------------------------------------------------
set the timer interval = 1000
Dim sec, min, mse, hr As Integer
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
timer1.Enabled = true
Timer1.Interval = 10
sec = 0
min = 0
mse = 0
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
If mse = 100 Then
sec = sec + 1
mse = 0
End If
If sec = 60 Then
min = min + 1
sec = 0
End If
If min = 60 Then
hr = hr + 1
min = 0
End If
Label1.Text = hr
Label2.Text = min
Label3.Text = sec
Label4.Text = mse
mse = mse + 1
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
timer1.Enabled = false
End Sub
'-------------------------------------------------------------------------------
QuestionHow to read .xls file(Excel Mobile) in WM? Pin
ujjawal kumar12-May-09 2:32
ujjawal kumar12-May-09 2:32 
QuestionAbout using keybd_event to send "Tab" problem. Pin
lovnin11-May-09 23:09
lovnin11-May-09 23:09 
AnswerRe: About using keybd_event to send "Tab" problem. Pin
sivaddrahcir28-May-09 12:25
sivaddrahcir28-May-09 12:25 
AnswerRe: About using keybd_event to send "Tab" problem. Pin
sivaddrahcir29-May-09 12:58
sivaddrahcir29-May-09 12:58 
QuestionHow to deal with "OutOfMemoryExceptoin" in my C# code based on WinCE5.0 in Arm9 [modified] Pin
zh.again11-May-09 21:56
zh.again11-May-09 21:56 
AnswerRe: How to deal with "OutOfMemoryExceptoin" in my C# code based on WinCE5.0 in Arm9 Pin
Joel Ivory Johnson12-May-09 3:21
professionalJoel Ivory Johnson12-May-09 3:21 
GeneralRe: How to deal with "OutOfMemoryExceptoin" in my C# code based on WinCE5.0 in Arm9 Pin
zh.again12-May-09 15:55
zh.again12-May-09 15:55 
GeneralRe: How to deal with "OutOfMemoryExceptoin" in my C# code based on WinCE5.0 in Arm9 Pin
yrishi14-May-09 1:03
yrishi14-May-09 1:03 
GeneralRe: How to deal with "OutOfMemoryExceptoin" in my C# code based on WinCE5.0 in Arm9 Pin
zh.again14-May-09 15:02
zh.again14-May-09 15:02 
QuestionHow to change tabcontrol color in .net compart framework? [modified] Pin
lovnin11-May-09 21:13
lovnin11-May-09 21:13 
QuestionRemotely Acess Pc using Cellphone Via Bluetooth.... Pin
shaina223111-May-09 20:00
shaina223111-May-09 20:00 
AnswerRe: Remotely Acess Pc using Cellphone Via Bluetooth.... Pin
shaina223111-May-09 21:04
shaina223111-May-09 21:04 
QuestionPhone Call Log Pin
mjmim11-May-09 5:00
mjmim11-May-09 5:00 
AnswerRe: Phone Call Log Pin
Joel Ivory Johnson11-May-09 5:36
professionalJoel Ivory Johnson11-May-09 5:36 
AnswerRe: Phone Call Log Pin
Member 1229748430-Jan-16 11:46
Member 1229748430-Jan-16 11:46 
QuestionHow to display a text file containing Bengali language font? Pin
Md. Ali Naser Khan10-May-09 18:41
Md. Ali Naser Khan10-May-09 18:41 
AnswerRe: How to display a text file containing Bengali language font? Pin
Joel Ivory Johnson11-May-09 5:34
professionalJoel Ivory Johnson11-May-09 5:34 

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.