all groups > dotnet compact framework > february 2005 > threads for wednesday february 16
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
Dataview Sort
Posted by JoelB at 2/16/2005 5:53:17 PM
Apparently CF doesn't support sorting a dataview on multiple columns. The
following all work:
MyDV.Sort = "Col1"
MyDV.Sort = "Col2 DESC"
....but this doesn't:
MyDV.Sort = "Col1, Col2 DESC"
No error occurs.
I am using the Dataview to sort my data before binding it to a ... more >>
Datareader record count?
Posted by mikeb at 2/16/2005 5:26:29 PM
After you load a datareader, how can you find out how many records are
loaded?
Dim cmd as New SqlServerCe.SqlCeCommand(Sql, Conn)
dr = cmd.ExecuteReader()
ie:
RecCount = dr.recordcount 'how do I get the count of records loaded?
... more >>
System.NotSupportedException - on F5 debug but not on CTRL-F5
Posted by Carl Perkins at 2/16/2005 5:23:01 PM
I built an application that works 100% ok when I run it in debug mode but
with CTRL-F5.
I changed to deploy and get the System.NotSupportedException message.
I ALSO get the error when I run in debug mode with F5 (not CTRL-F5).
Here is a partial piece of code:
using System;
using System.Draw... more >>
Store info into pda
Posted by victor at 2/16/2005 4:55:26 PM
Hi guys
can anyone help me to find a place where i can save my infomation
permanently even after i do a hard reset.
cheers
victor
... more >>
Keyboard pop-up.
Posted by Mark Bath at 2/16/2005 3:37:42 PM
OK, I have a C# application that is running maximised (no minimie button, no
maximise, no menu) so takes the full screen up.
What I would like to do is place a graphic on the screen (or a button) that
the user presses to display the pop-up keyboard.
They would then press it again to hide the key... more >>
HowTo: detect if a file exists in the \Windows folder
Posted by Raj Kumar at 2/16/2005 3:27:02 PM
Hi!
I am using CF SP3 and C# for my application. As soon as the application
launches, I perform a check if all the required files exist in the
Application folder. I use:
Path.GetDirectoryName(Assembly.GetExecutingAssembly().GetName().CodeBase)
to get the Application folder.
Now I also wa... more >>
Disconnect a datareader?
Posted by mikeb at 2/16/2005 3:22:37 PM
Suppose you establish a connection with your sqlce database, use the data
reader to get your data, but then you want to close the connection. Is
there any way to preserve the data written to the data reader??? Example
below:
Private Sub getMyData(byref dr as SqlCeDataReader)
cnSQL.Op... more >>
CFReflector
Posted by danut.enachioiu NO[at]SPAM gmail.com at 2/16/2005 3:15:24 PM
I find myself often programming on my PDA (using the Pocket C#
compiler) and often in need of a Reflector like program to see
classes, methods, parameters and such of the framework.
Not finding one, I've developped one myself (it will very soon be
available as open-source as it is almost compl... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Problems using sockets between desktop and WinCE
Posted by John Olbert at 2/16/2005 2:27:07 PM
We are trying to run a Server App on WinCe and communicate with it (sending
an string back and forth) from another App running on the desktop. We are
using WinCe Emulator.
On this Newsgroup it was suggested that we try sockets. I am trying this
now. Code is below.
When I tried both ends ... more >>
datasets vs sqlce
Posted by mikeb at 2/16/2005 2:15:53 PM
Storing and searching data in datasets within an application with large
amounts of data appears slow.
Would one recommend using sqlce for a large number of records being stored,
over the use of datasets?
... more >>
Reflection
Posted by marko at 2/16/2005 2:02:24 PM
Hi All!
Is there an alternative method at
System.Reflection.Assembly.LoadFile("xyz.dll") to load assembly with NetCF
and Reflection??
Thank's
mkz
... more >>
Share code between CF and WinForms
Posted by Leif Eirik Olsen at 2/16/2005 1:56:26 PM
Hi,
..net newbee and first time on these groups so please bear with me:)
I'm writing a C# pda application and would very much like to 'package' this
application so it can be used in another .net winforms application. Is there
a way to write a component that will function both for CF and winf... more >>
Verify Signed XML document in compact framework
Posted by dani NO[at]SPAM writeme.com at 2/16/2005 1:26:50 PM
I want to convert following VB.Net code to cf Code:
Is there any way to do this? Please help me. Do not say only
System.Security.Cryptography.Xml is not included in cf..
Here is the working code in vb.Net:
(the public key is included in the xml file)
Public Function VerifyXMLDocume... more >>
Dispose a DataTable
Posted by Chakra at 2/16/2005 12:13:39 PM
In ADO.NET (for Windows.NEt and ASP.NET), there is a DataTable.Dispose()
method. What is the best way of disposing a datatable in CF.NET ?
... more >>
Running application like a service.
Posted by Eduardo S.E. de Castro at 2/16/2005 11:13:50 AM
Hi,
is there a way to run a compact framework based software like a Windows
Service, I know that services doesn`t exist at pocketpc, how can I simulate
it?
Thank You,
Eduardo Castro
MCSE/MCSA/MCP
... more >>
Problems Adding Icons to ImageList
Posted by Flynn Arrowstarr at 2/16/2005 10:39:06 AM
Hi, everyone.
I'm trying to add an Icon to an ImageList control. I've set the icons to
Embedded Resource, and I'm following the steps listed in a post from Neville
Lang in November (thread about adding images to toolbars on an HP 47xx).
| i) Use .ICO files in the project (instead of BMP fi... more >>
Landscape view
Posted by Darcy at 2/16/2005 10:17:03 AM
Is there a way to switch the designer to work in landscape view for a pda?... more >>
OpenNETCF problem
Posted by glenn at 2/16/2005 10:07:07 AM
I know this group is not for this but have gotten more answers here than
anywhere else so figured I'd ask...
I have a new Dell Axim x50v and I have an application designed for the PDA
that runs on every PDA I've installed it on. However, when running it on
this unit I receive the following er... more >>
Datasets with large amounts of data
Posted by mikeb at 2/16/2005 7:10:10 AM
I came onboard to help finish a ppc application (vb.net cf) for a company.
The original developer is loading datasets from a sql server database for
data handling. This worked pretty well (but very messy coding in my
opinion) up until we started dumping some real life data to the scanner
(... more >>
Images on Buttons and application
Posted by dantheman at 2/16/2005 6:54:32 AM
Hi,
can someone explain to me if we are obligated to add all button
"images" to the "entire" solution for distribution.
example:
i have one image button with imagex.gif assigned as image
if i include the image in my project and compile it works and it also
works if i don't include it in my... more >>
Date/Time stopped in Pocket PC 2003 Phone Edition emulator
Posted by bobgateaux NO[at]SPAM yahoo.com at 2/16/2005 2:51:28 AM
Hi,
I have just written my first application using the compact framework
and am testing it with the Pocket PC 2003 Phone Edition emulator.
However, I have run into a problem in that the Date and Time of the
emulator phone seem to be set when the emulator starts but then never
change (i.e. t... more >>
File Transfer via Active Sy
Posted by cortukmehmet at 2/16/2005 2:21:02 AM
Hi
I m developing app on pocket pc 2003 and i write some data in xml file and
want to send this file to users desktop when pda is on cradle and user press
a button.... more >>
enable keyboard shortcuts
Posted by Sitar at 2/16/2005 2:05:01 AM
Hello newsgroup,
How can I enable keyboard shortcuts on CF?
Like if I set the text property of a button to &Activate, A will be
underlined so
when I press alt+a that "pushes" the button.
This works fine on the full framework. On CF the letters are underlined but
pressing the alt key has ... more >>
Bug in .NET CF SSL staus??
Posted by Peter.Mohr NO[at]SPAM gmail.com at 2/16/2005 1:58:15 AM
Hi,
Does anybody have an update on the SSL implementation bug described in
this thread back in Sep-2003 ?
http://groups.google.dk/groups?hl=en&lr=&selm=rd9HPZ8gDHA.2632%40cpmsftngxa06.phx.gbl
I still have the problem running CF .Net 1.0 SP3
Thanks,
Peter... more >>
|