Pocket PC Networking >> Vb.net PocketPc need help
by Michael Chong » Tue, 01 Mar 2005 16:29:21 GMT
I write a VB.NET program on my PocketPC with client socket communication
with desktop server application. I encounter a problem that the pocketpc
always hang if I click on combobox or TabControl for too many times or too
fast. It sures will hang!!! Why is this happening? Please help.
Thanks!
Michael.
Similar Threads
1. Vb.Net PocketPC Need Help
I write a VB.NET program on my PocketPC with client socket communication
with desktop server application. I encounter a problem that the pocketpc
always hang if I click on combobox or TabControl for too many times or too
fast. It sures will hang!!! Why is this happening? Please help.
Thanks!
Michael.
2. vb.net pocketpc need help
3. Newbie needs help with VB.Net
Hi,
I am trying to create a VB.Net Application to detect if another application
is running, if not start the application. Here is my code snippet:
Public Class Class1
<System.Runtime.InteropServices.DllImport("coredll.dll", _
EntryPoint:="FindWindow")> _
Private Shared Function FindWindow( _
ByVal lpClassName As String, _
ByVal lpWindowName As String) As IntPtr
End Function
Public Shared Sub Main()
Dim nWnd As IntPtr
Dim ceroIntPtr As New IntPtr(0)
'
nWnd = FindWindow(Nothing, "Form1")
If nWnd.Equals(ceroIntPtr) Then
shell("prgmgr.exe") 'This is not working
Else
MessageBox.Show("You have one instance of PRG Manager running")
End If
End Sub
End Class
Apparently shell command that exists in VB6 does not work, I don't know any
other way to do it.
TIA
4. [pocketpc]Embedded VB.Net DATABASE - Pocket PC Networking
5. PLEASE HELP: VB.NET 2003 for PocketPC - Receive Infrared Data
Hi NG,
has anyone example-code to receive infrared-data with an pocketpc, e.g. from
an other device in the hp-printer-language?
thanks
michael strau
6. VB.NET for PocketPC SetLocalTime HELP!! - Pocketpc Developer
7. VB.NET - DNS.Resolve is very slow, need help
Hi,
I am writing a program in VB.NET and it is very slow when it reach this
line :
...
Dim ipHostInfo As IPHostEntry = Dns.Resolve(strMyForeignIP)
...
It stay there at least 5 seconds to reach the foreign host, how can it
be fast (instant)? With winsock (in VB6) it is instant connection.
Thank you.
8. need help to implement IcmpSendEcho2 in vb.net