all groups > dotnet compact framework > february 2005 > threads for monday february 21
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
ListView
Posted by Veilchen at 2/21/2005 11:21:01 PM
Hello,
My application needs a ListView, that:
* can disable the ScrollBar
* scroll can be maintained through a method
* has Colums (more than 1)
The SmartList of the OpenNetCF has all but the Columns.
The ListView cannot be scrolled by any other way but the ScrollBar.
Is there a control that ... more >>
How to Detect a Program is Openen and Running
Posted by RC at 2/21/2005 6:12:59 PM
Hi,
How to detect a program such as Pocket Internet Explorer is Opened and
Running by using Compact .NET Framwork or OpenNETCF?
Thanks
RC
... more >>
Key_Press event
Posted by jayderk at 2/21/2005 5:05:16 PM
Hello All,
I have this code and am using a Qwerty keyboard device
private void txtCount_KeyPress(object sender,
System.Windows.Forms.KeyPressEventArgs e)
{
if(!(Char.IsLetterOrDigit(e.KeyChar)) && e.KeyChar != '\b')
{
e.Handled = true;
}
}
basically it ignores it... more >>
Cannot debug PPC app in high res mode on VGA emulator
Posted by Rich M at 2/21/2005 4:10:27 PM
I have followed the instructions for "Debugging Resolution Aware .NET CF
Pocket PC Apps" found at
http://blogs.msdn.com/windowsmobile/archive/2004/04/03/107203.aspx but I am
unable to get it to work. Whenever I try to debug my application it runs in
compatibility mode even when using the "3 ... more >>
TcpClient.Client Property is Private
Posted by mblake at 2/21/2005 2:27:02 PM
TcpClient.Client is private in Compact Framework
Is there an alternative way to set the client to a socket?
Thanks,
mblake
... more >>
Multiple connections on one port
Posted by mblake at 2/21/2005 2:25:02 PM
Hi,
I am trying to write an application that connects to the local port with a
TCPListener and also connects to the local port using a TCPCLient
Here is the code:
Dim m_IPPort As Integer = 502
Dim m_IPAddr As String = "10.1.1.204"
Dim m_LocalIPAddr As String = ""
Dim ... more >>
Why is my emulator not upgrading?
Posted by vbmark at 2/21/2005 2:19:03 PM
My SmartPhone emulator shows version 1.0.3111.0
Which according to this page:
<http://wiki.opennetcf.org/ow.asp?CompactFrameworkFAQ%2FDeterminingVersion>
Is "CF 1.0 SP1"
I installed the "Emulator Images for Windows Mobile 2003 Second Edition
software for Smartphone"
From this site:
<... more >>
Develop component for both CF and FF
Posted by Leif Eirik Olsen at 2/21/2005 10:36:17 AM
Hi again,
Have been reading about sharing code between CF and Full Framework (FF) on
http://www.danielmoth.com/Blog/ . I see that it is not recommanded to share
Gui apps between CF and FF. Does this mean it is not recommanded (or
possible) to develop components that run for both CF and FF? I a... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Any solution to using res2exe without removing the app icon
Posted by Rich M at 2/21/2005 10:15:26 AM
I have read information on the web that running res2exe to make a NETCF
program resolution aware will unintentionally remove the application icon
from the executable. Has anyone found a solution to this problem?
- Rich
... more >>
Digital signature
Posted by Giovanni Rena at 2/21/2005 8:44:45 AM
Hello,
is there a class in compact framework with that I can make digital
signatures on a touch display?
Thanks
... more >>
Catching Unhandled exceptions from custom controls
Posted by Bill Mittenzwey at 2/21/2005 8:19:11 AM
I have a form for the compact framework which can have different custom
buttons placed on it.
Sometimes those buttons may throw an exception in their click event which I
would like my form to handle.
I can't find the appdomain unhandled excption event or the thread exception
event in the com... more >>
Changing Web Reference
Posted by WM at 2/21/2005 7:49:05 AM
I have a eVb app that is using an XML web service. When I add the service to
the app in Visual Studio and run, it works fine. I would like to be able to
change the web service to another server when I distribute the program so my
customers. I need them to be able change to their server for the... more >>
ClickOnce for Compact Framework
Posted by TylerB at 2/21/2005 7:49:02 AM
Will ClickOnce deployment be available for applications written using the
Compact Framework 2.0?... more >>
How To: switch off slot power for Wireless LAN card
Posted by Ray at 2/21/2005 7:23:05 AM
I want to switch off slot power for Wireless LAN card from my application on
Symbol MC9000K with Windows Mobile 2003. I want to switch on power only when
I am communicating. I tried SetDevice Power() and DevicePowerNotify()
functions without success. These two functions execute successfully b... more >>
|