all groups > dotnet compact framework > march 2005
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 29 30 31
Urg help!! - ListView Control Problem displaying multi-language
Posted by dilipn123 NO[at]SPAM gmail.com at 3/31/2005 7:29:56 PM
Hi,
I'm having this problem using ListView Control(.Net CF-VS net 2003) to
display e.g. customer names which is stored in Thai language. It
displays me special characters i.e. square boxes inplace of
description.
The surprising thing is the description is displayed properly in thai
language ... more >>
Deploy .NetCF and OpenNetCF.
Posted by alan at 3/31/2005 6:13:03 PM
how can I deploy the CAB files like "netcf.core.ppc3.arm.cab",
"OpenNetCF.SDF.PPC3.ARM.CAB" to my PPC device?
for normal PPC Application, i follow the example in codeproject of
customerinstaller, this works fine.
but how can i deploy the CF cabs to the device?
thanks a lot!!!... more >>
Loading Forms at Startup
Posted by Beebs at 3/31/2005 4:58:30 PM
Is there any way in VB .NET to load all forms into memory at startup
without showing them, then showing my startup form using ShowDialog.
For all of my forms I'm using the singleton method, so I don't know
whether that would be an issue or not. Would something like this work
for each form:
f... more >>
XML to SQLCE
Posted by Amirallia at 3/31/2005 4:30:52 PM
Hi,
I want to import my data from a XML file to a SqlCE db. I use VB.NET
What's the best solution to do this ?
Thanks
--
Ceci est une signature automatique de MesNews.
Site : http://www.mesnews.net
... more >>
Shared Method Error
Posted by Beebs at 3/31/2005 4:08:39 PM
I created a class to store some global variables that I need only if I
check the type of handheld and it matches. In my class, one of the
following shared Public variables is this:
Public Shared MyReaderHandler As New System.EventHandler(AddressOf
MyReader_Notify)
but I get the error:
C... more >>
Install Application to a memory card on the Device?
Posted by elena at 3/31/2005 3:07:02 PM
Hi, All
I build CAB file from Build CAB menu, in the property page i specified where
to install application on the device("\SD Card\APP"), this is the memory card
on the device. After i build cab, i have in \cab\release\many cab's with
different processors, the specific processor for my devic... more >>
grid column in vb.net (pocket pc)
Posted by Steiner Hubert at 3/31/2005 2:15:57 PM
hello,
i use this code:
toGrid.DataSource = dset.Tables("myTable")
this works fine - but here is my id field visible
-> how can i hide this id column in the grid?
... more >>
Prevent DataGrid row height resize?
Posted by Chris Botha at 3/31/2005 1:47:41 PM
How do I prevent the height resize of rows in a DataGrid?
Thanks.
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Custom control focus? Anyone?
Posted by Tomer at 3/31/2005 1:18:46 PM
Hi,
I've wrote a custom control which acts as a radio button, it can recieve
focus, and mouse clicks.
When a message is poped up it steals the focus, and when it is closed the
focus doesn't returns to the radio control.
I've check the same procedure with the regular text box and the focus
re... more >>
VS2005 and .netcf
Posted by ramonours at 3/31/2005 1:13:32 PM
Hello all,
anyone know what is going to be the minimum version of VS2005 we are going
to need to build .netcf applications??
Thanks inadvance,
-r
--
Get The CrashCart!!
http://www.rncrashcart.com
... more >>
How to Flush the database!
Posted by Mike at 3/31/2005 12:41:06 PM
I am trying to ensure minimal data loss in the event of a soft reset for my
data collection application. I am trying to use CeMountDBVol, CeFlushtDBVol,
CeUnMountDBVol, to do this but cant get it to work properly.
I would be extremely grateful to anyone who could post a quick code snippet
... more >>
Simple .cab Question
Posted by Beebs at 3/31/2005 11:51:21 AM
If I'm just distributing the cab file that I generate from Visual
Studio, how can I change the company information and application
title? I don't see any place in the project properties where this is
possible. Can I edit the AssemblyInfo.vb file directly?
Thanks... more >>
Start an extern application
Posted by benoit.rheaume NO[at]SPAM gmail.com at 3/31/2005 10:52:30 AM
Hello,
I'm trying, via my code in C#, to start an extern application. I've
tried to following code without success :
public struct ProcessInfo
{
public IntPtr hProcess;
public IntPtr hThread;
public Int32 ProcessId;
public Int32 ThreadId;
}
[DllImport("CoreDll.DLL", SetLastEr... more >>
Showing one form from another
Posted by Tommy at 3/31/2005 10:02:53 AM
I have a problem with forms getting hidden and the zorder getting screwed up
when going from one form to another and also if you bring up a program on
top of mine. When the other program is closed my showing form is hidden.
What is the preferred method of showing forms? I can't be the only on... more >>
Dynamic Invoke from Umanaged Dll in CompactFramework (WinCE 5, C#, VS 2003)
Posted by Marco [Stinger] at 3/31/2005 9:36:59 AM
Hi
Sorry if this has been asked before but I'm VERY new to the
compact framework.
Here's my problem
I'm writing a program for a WinCE.NET 5 device using Visual Studio 2003
and C#.
This program needs to call a few DLL writen in EmbeddedC++.
I already know that the dll's work since I've teste... more >>
SelectedIndexChanged Event is firing too many times
Posted by Michael Baltic at 3/31/2005 7:41:08 AM
I am using a custom collection class to fill a combo box. When I set the
data source properties, the SelectedIndexChanged event is firing for every
item in the collection. Here is a code snippet:
// Collection class
public class ReconcileBatchList : CollectionBase
{
}
// Combo box bin... more >>
[LISTVIEW] Keypress event
Posted by Rogerio Jun at 3/31/2005 7:11:06 AM
The ListView.KeyPress event is exposed in the
...NET Compact Framework, but maybe I am using it incorrectly. A complete
program is included below: I never get the MessageBox from
listView_KeyPress. This approach works on the .NET Framework. What am I
missing?
using System.Drawing;
using Syst... more >>
Button for smartphone?
Posted by temilson NO[at]SPAM sasktel.net at 3/31/2005 7:05:53 AM
Hi ...
I desperately need to be able to mimic a button on
Smartphone devices. I've created an 'image' button by
inheriting from control and then overiding paint etc..
However, even though this control displays perfectly, I cannot use the
up/down keys to take the focus to this control.
... more >>
installation package
Posted by alan at 3/31/2005 3:49:01 AM
how can i make the installation package for my PPC application?
I should use the deployment project in VS.net?
or make a cab file?
will the installation package install .net CF and opennetCF as well?
would you please tell me how to make the installation package step by step?
thanks a lot!!!... more >>
Printing from pocketpc
Posted by Rn at 3/31/2005 3:45:06 AM
Hi,
I am using .NETCF. I would like to add printing functionality to my app
- I would like it to print via Ir, Bluetooth or cable. I guess the best
option is a good third party SDK. The problem is it has to support
printing from right to left (hebrew).
Thanks in advance for any idea.
... more >>
Form cannot be minimized and show destop
Posted by RC at 3/31/2005 12:57:56 AM
hi,
My target platform is Windows CE.NET 4.2.
I 've create a form without control box and border, so it becomes full
screen.
I want to make a button on tool bar next to menu bar for minimize the form
But I find there is no windows state for minimizing windows (Only Max and
Normal).
How to... more >>
How to tell if WiFi is enabled
Posted by Dodzi at 3/31/2005 12:33:02 AM
..NET Compact Framework app, running on iPAQ. Is it possible from software to
determine whether WiFi is enabled? Further, is it possible to enable it?
Dodzi
... more >>
Dialogue Boxs
Posted by Greg at 3/30/2005 9:31:08 PM
How do I create a dialogue box in .net Compact framework and C#? I want to
create a screen when the user goes to file connect, that asks for user name
and pass word and has an ok button.
Also what does form_load do is this just when it first loads?... more >>
OpenNETCF Question
Posted by Yosh at 3/30/2005 7:28:02 PM
I am new to using the Smart Device Framework v1.2. =20
In the framework, I am using the OpenCFNET.Net.CommunicationManager =
class. When I run the following code below I get the exception "An =
unhandled exception of type 'System.MissingMethodException' occurred in =
ConnectionManager.exe."
... more >>
How to hangup a phone call ?
Posted by Tihomir Ignatov at 3/30/2005 5:41:19 PM
Hi All,
How can I hangup a phone call programmaticaly on Pocket PC 2003 Phone
Edition. I'm using .NET CF and OPENNETCF.
Thanks
Tihomir Ignatov
... more >>
Strange Exception
Posted by Beebs at 3/30/2005 5:14:18 PM
Why would this line of code throw a NullReferenceException if the
first item of my listview is clearly highlighted (selected)
If lstContainers.FocusedItem.Index = 0 Then
I know lists in VB are zero based, yet for some reason, an exception
is thrown. Is this some type of weird bug cause it s... more >>
j#
Posted by John Roberts at 3/30/2005 5:03:44 PM
Hi,
I have read that j# is not supported as a language for the compact
framework. However, is this absolutely true or is it more a case that Visual
Studio does not have the wizard and debug support for j#/compact framework
projects?
TIA,
- John
... more >>
Query Timeout
Posted by David de Passos at 3/30/2005 5:03:34 PM
How Can Set a Query Timeout and Catch the error when the time elapsed.
--
Cumprimentos,
David de Passos
--------------------------------------------------------------
RCSOFT, Lda.
E-Mail: passos@rcsoft.pt
Móvel: +351 966931639
Telefone: +351 239708708
Fax: +351 239708701
Tel. Direct... more >>
Battery Information
Posted by david.pope at 3/30/2005 3:18:04 PM
I have some sample code on obtaining battery information on a mobile device.
Does anyone know if one can obtain this information using the Smart Device
Framework v1.2? If so, can someone point me to the right namespace?
Thanks,
d
... more >>
Distribution of PDA APP to multiple devices
Posted by Frederik Jensen at 3/30/2005 3:04:37 PM
This issue seems pretty complex. I am not sure targeting this NG is correct
but please direct me otherwhere if so.
I have a system architecture with a central server and a .net 4.2 device.
Users input data on the device through a vb.net cf application and the data
is sent to the server usin... more >>
Trouble with parameterized INSERT
Posted by SteveInBeloit at 3/30/2005 2:14:00 PM
Hi,
I am using parameters to preform an INSERT. This is my first time. Here is
what I have:
Dim myConnection As New SqlConnection("User ID=sa;Password=sappkg;Initial
Catalog=PSC;Data Source=CSIREPL;")
Dim insertCommand As SqlCommand = myConnection.CreateCommand
insert... more >>
Balloon-tip
Posted by Stian_Skjørestad at 3/30/2005 1:55:54 PM
Does anyone know if it is possible to use balloon-tips in compactFramework?
S... more >>
Disabling user interaction
Posted by Darcy at 3/30/2005 1:41:12 PM
I have a program on my handheld that I built that communicates with some web
services. While the web services and handheld are communicating there is a
pause in the program. My issue comes when some of less than intelligent
users start pressing all of the buttons. When the handheld complete... more >>
Mappoint webservice on PPC error
Posted by Peter Villadsen at 3/30/2005 1:02:18 PM
Hello,
There is a bug in the NETCF that causes certain calls to the Mappoint web
service to fail. When trying to render a map, the system will not return a
map if there is no pushpin on the map. I found out the hard way, and it was
no fun.
I have now seen another sample using mappoint where... more >>
Colum concantenation
Posted by L_B_F at 3/30/2005 12:46:05 PM
I have need to issue a query similar to the following:
SELECT (colx + coly) as Stuff
FROM whatever
in an application built using the compact framework. It should be a
piece of cake... However the application issues an exception and
complains thusly:
"the data type is not valid for the ... more >>
opennetCF latest code
Posted by Sitar at 3/30/2005 10:43:01 AM
Hi,
Maybe I did not look everywhere but I can't find something like a zip file
of the latest source code. So I could just download, open the projects and
play around.
I can browse the source fine and that's convenient, but I'd rather be able
to grab the whole (even unstable) thing to hav... more >>
UnhandledExceptionEventArgs
Posted by KM at 3/30/2005 8:53:36 AM
Hi group
In "standard" .NET it´s possible to catch unhandled exception thru the
UnhandledExceptionEventArgs class. Is there a similar way with .NET
compact framework.
I´m currently developing a small appl for a pda, which connects to a
bluetooth GPS reciever. The communication between the p... more >>
sqlce & "The column name cannot be resolved to a table"
Posted by Chris Podmore at 3/30/2005 7:23:06 AM
I have a sqlce database that I am getting strange errors with, well I don’t
think it’s the database I think its sqlce.
My select statement is retrieving a number of columns (35) from a number of
different tables (8). The tables might are a mix of INNER and LEFT joins. My
application and... more >>
Checking serial communication
Posted by Gopi via DotNetMonster.com at 3/30/2005 5:40:49 AM
How to check serial communication of single board computer Wafer-5822 which
runs in Win Ce.net 4.2?
Any suggestions please?
--
Message posted via http://www.dotnetmonster.com... more >>
CE device "jumping" in memory usage
Posted by augustesen NO[at]SPAM privat.tdcadsl.dk at 3/30/2005 1:39:01 AM
Hi
I have a problem that I can't figure out, so I hope someone here can
help me.
I have written a program in C#.net for the Compact Framework. When I
run the program on the CE Emulator it runs just fine.
But when I try to start the program on the CE Device, the memory usage
"jumps" up an... more >>
.NET CF or embedded C++ ?
Posted by Lionel Reyero at 3/30/2005 1:11:01 AM
Hello guys!
I need to develop an application of video streaming from on Pocket PC to
another.
I hesitate between Visual Studio .NET Compact Framework and Visual Embedded
C++... could anyone help me ?
I am a beginner in both. I feel .NET CF is more elegant, easier, clearer...
but i ... more >>
parsing SMIL on Smartphone ?
Posted by Stefaan Moens at 3/30/2005 12:35:20 AM
Hellow,
Is there a way to parse a SMIL 2.0 formatted bytestream and get for example
a picture out of it?
I'm working on a Smartphone 2003 SE in C#...
greetz,
Stefaan.
... more >>
application to stay always open in a Pockect PC.
Posted by João Carvalho at 3/30/2005 12:35:02 AM
I have a application to stay always open in a Pockect PC.
But when the application is much time in StandBy it leaves to be in
Foreground and is hidden.
... more >>
Casting from XmlNode to an inherited calss from XmlElement
Posted by Parham at 3/29/2005 10:54:06 PM
Hello,
I have an inherited class from XmlElement with this name: XmlElementCF
I have added a function in XmlElementCF that returns a XmlNode, the
node type is Element. I can cast the returned node to XmlElement but
can not cast the returned node to XmlElementCF, I am getting an error
: Specifi... more >>
Close all threads when application closes
Posted by KC Eric at 3/29/2005 10:51:10 PM
Hi all,
I have some threads,
one is UI thread,
one is worker thread, which uses sockets to wait for incoming messages.
I deploy it in emulator, then I click OK in the top right corner,
but then I can't deploy again, unless I closed the emulator, the error is
something like it can't output ... more >>
basic at pocket pc
Posted by Steiner Hubert at 3/29/2005 10:16:05 PM
hello,
how can i import a xml file to a basic.net (pocket pc) dataset?
i use
Dim ds As New DataSet
ds.ReadXml(Me.txtImportFile.Text)
error: "FormatException"
any idea?
... more >>
ultra-weird GUI behavior
Posted by Jeremy at 3/29/2005 8:59:47 PM
We're all used to weird behaviors with the netcf, right?:P okay well I got
another one. I have honestly tried many of the known tricks to netcf
developers but they don't seem to solve my problem.
(being a good boy, instead of calling a webservice synchronously) I'm
calling a webservice asynchr... more >>
Contacts Database
Posted by crino at 3/29/2005 8:15:46 PM
Hi,
how can connect directly with contacts' database?
Any tips si appreciated ;)
nb: I need to connect directly and not by POOM
... more >>
calling eVC++ code into c#.net
Posted by sunny p via DotNetMonster.com at 3/29/2005 7:39:58 PM
Hi frnds,
I am verymuch new to .NET compact framework. i have a program written in
eVC++ for a PPC. Now i want to call that into c#.net how can i do that??
any suggestions would be great.
--
Message posted via http://www.dotnetmonster.com... more >>
cookies again, parameter matters?
Posted by chunsheng at 3/29/2005 6:43:01 PM
thanks Alex.
I think the 2nd type cookie is what I need.
But I found that by using the helperclass, parameters being passed did
affect the result.
When I used parameters as intergers or strings, I got everything I need.
But when the type got more complicated, like ArrayList, the call returned ... more >>
|