all groups > dotnet compact framework > october 2003 > threads for thursday october 30
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
Problems with the emulator.
Posted by Rafael Pivato at 10/30/2003 8:11:33 PM
Hi,
I am using the ListBox1.Invoke method from another thread.
The method invoked gets fired only if this Form is not a dialog.
Using Form.ShowDialog (from a Main start procedure, for example)
will cause the method not to be invoked!
At my real device the two scenarios will work. Show and S... more >>
Windows CE.NET 4.1 vs 4.2 program execution
Posted by NT at 10/30/2003 7:05:39 PM
Having difficulty is executing a Hello World application
in a device with CE4.2 whereas working fine in 4.1
environment .Used Visual Studio 2003 and C#.
The error message is "****.exe has performed an illegal
operation ......."
If anyone has any idea please reply.
Thanks ... more >>
windows gui shown between forms: different behaviour in ppc and wce4.1
Posted by Matteo Cima at 10/30/2003 5:37:29 PM
Hi,
this is a repost, my previous question was incomplete.
I have some forms that return values, showing a list and then returning a
string when the user confirms, and to be sure that the form doesn't remain
in memory, i use this code: (the form is closed when i return the value)
i declare ... more >>
CertOpenStore failing on SP
Posted by casey chesnut at 10/30/2003 5:34:53 PM
This call works on the desktop and PocketPC emulators, but is failing on the
smartPhone emulator.
Anybody gotten it to work on the SP emulator?
//from a sample Alex F. put out long ago
[DllImport("crypt32", SetLastError=true)]
public static extern IntPtr CertOpenStore(IntPtr lpszStoreProvider... more >>
Stupid question but important for me !
Posted by Thomas at 10/30/2003 4:31:26 PM
Hi group !
I've a little question : when I execute CAB files (Compactframework install
package or .CAB generated with VS.NET), they disappear after the
installation. But when I make a .CAB file with InstallShield, it is not
destroyed after the installation.
I would like to have the behaviour ... more >>
Developing an application for multiples environments (Pocket PC and Desktop), in other words, how to create a business tier in PPC applications
Posted by Anderson Takemitsu Kubota at 10/30/2003 4:27:51 PM
Hi all!
Please I need to understand how could I save some time developing an
application that will have the same features in multiple environments.
The problem is that I have no experience in 3 tier development. So I don't
know how could I reuse any piece of code.
For example in Pocket PC e... more >>
Feature request: add stack trace to exceptions.
Posted by Mark McKnight at 10/30/2003 4:18:25 PM
Please, please:
Something I miss very much when debugging is the stack trace in an
exception. This is sooo useful, but .NET CF doesn't have it.
Could someone log a feature request to add this?
Thanks :)
Mark
... more >>
Encrypting-Decrypting XML file
Posted by Dev at 10/30/2003 1:46:38 PM
Hi,
Is there any way where I can encrypt/decrypt the
XML file on PC2003?
Thanks,
Dev... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Help with Persistent Configuration Settings
Posted by Steve at 10/30/2003 1:35:34 PM
Hello All,
I am developing in .Net and would like to know the
preferred method for storing persistent application
configuration settings where the application settings need
to be set at runtime.
All the information I find talks about .config files.
However, this doesn't do me any good... more >>
String Usage (VB.Net)
Posted by Paul [Paradise Solutions] at 10/30/2003 1:17:18 PM
Hi all
I've often seen (and have quoted myself) the fact the using '=' to
update a strings content is processor expencive as it destroys the
string and then re-creates it. Some people say to used things like
insert and concat.
This is fine but Insert and Concat don't carry out the action ... more >>
rda.SubmitSQL performance tip.
Posted by chris-s at 10/30/2003 1:11:33 PM
Hi,
We have a data update process whereby records are inserted into a SQL server
db from the device using the rda.submitsql method, executing it once for
each insert statement. The existing process was taking 1 1/2 minutes for a
certain number of records.
It never occured to me, until now, ... more >>
Books/resources for learning .NET development for Pocket PC
Posted by DCB at 10/30/2003 12:34:41 PM
Does anyone have any recommendations of best books or other resources for
developing applications for Pocket PC using the compact framework? Looking
for something that would walk us through the initial stages and best
practices of development on PPC. We have experienced programmers but
beginne... more >>
Installation error while installing the compactframeworkSP1
Posted by Swati at 10/30/2003 12:04:50 PM
Hello All,
I have downloaded the compactframeworkSP1 from the microsoft site.
http://www.microsoft.com/downloads/details.aspx?FamilyId=3D1F62A2A3-7282-=
4BA9-B26B-2267E972501D&displaylang=3Den
While trying to install it on Windows xp or windows 2000 it is giving =
following error -
Thi... more >>
pocket access
Posted by Oriol Tomàs at 10/30/2003 10:14:42 AM
I am using Compact Framework for my pocket PC 2002.
Can I accede to a Pocket Access (.cdb) with compact framework?
Can I use Activate Sync to syncronize the .mdb of my PC with the .cdb of my
pocket PC?
Thanks.
... more >>
using XML data & DataSet
Posted by rocio at 10/30/2003 10:09:54 AM
I'm writting an application that uses as a Database a XML file. The user
queries & modifies this database. But I'm using pure xml DOm for this
purpose, to read & write elements in the XML file.
I know I can load this XML to a dataset and do the same things but now
working with a Dataset.
My q... more >>
NorthwindCE Example - Error 80072EFD
Posted by DCB at 10/30/2003 10:08:19 AM
I have followed all the instructions for setting up the NorthwindCE example.
I am running the application through the Pocket PC emulator in VS 2003. The
application seems to work in as much as I can see data in the Customer,
Employee and Order controls. When I try to synchronize the data back t... more >>
Get Applicationname from an Assembly
Posted by Andreas Möller at 10/30/2003 9:31:26 AM
Hello NG,
i have a problem. I have to get applicationname out of an assembly, which
start and use the assembly.
System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase;
give me only the full name of assembly but not full name of application.
Can anybody help me?
Greeting... more >>
Is there a way to read/write to the registry in CF?
Posted by Young Cho at 10/30/2003 9:06:50 AM
Hi,
Is there a way to read from and write to the registry using the Compact
Framework? Or is the only way to access the registry by writing unmanaged
code? It seems that the full Framework has a Microsoft.Win32 namespace has
Registry and RegistryKey classes to do this. Is there an equivalen... more >>
Unexpected closing of forms
Posted by Daniel Man at 10/30/2003 7:58:01 AM
Hi,
I've problem with opening and closing of forms. I have an
application with one main form, which displays list of
some database (xml data source) data. Another form is
designed for inserting and editing rows of datasource and
function of the last form is to show filtered list of
some o... more >>
ActiveSync
Posted by fhunter at 10/30/2003 5:23:03 AM
Since I installed ActiveSync 3.7.1 I am unable to connect
to my Dell Axim 3 using Visual Studio.Net.
After I reset the Axim I was able to connect using
eMbedded C++ but never Visual Studio.
Has any one else seen this problem?
Any solutions out there?
Thanks
... more >>
Use Vb.Net class in C#
Posted by Rohit Kaushal at 10/30/2003 4:54:31 AM
i am developing a smart device application in C#.I have a
builded a class in VB.net and i want to use this class in
my C# project.pls tell me how to go about it?Any pointers
will really be helpful.
rgds,
alok... more >>
Selection in dataGrid nobody can help me??
Posted by Michael at 10/30/2003 3:57:35 AM
is it possible to mark a specific cell as "selected"
or "set the focus on it"?
This mark is nesessary to give the user a preselction of
the values shown in grid (a calendar).
my cells will be created with the following code:
currentCell = new DataGridCell(myRow, myColumn);
thanks ... more >>
How to retrieve a document?
Posted by Butt Chin Chuan at 10/30/2003 3:37:39 AM
I would like my application to retrieve a certain document
from certain directory in the server. How can that be
done? Any examples? Also, how to determine the total space
(the size) of the document?
Any help is greatly appreciated. Thank you!
Butt Chin Chuan
A beginner in .net cf ... more >>
TextBox password char
Posted by Sebastian Fresta at 10/30/2003 3:12:47 AM
Hi all,
I'm trying to create a small app for iPaq 5400 series that
need to login to a database.
My problem is that when I use a textbox with the
PasswordChar set, the application freezes as soon as i try
to input something from the SIP. To unlock the application
i have to click a number o... more >>
ok shame on me! but how to serch this newsgroup
Posted by -- kurt -- at 10/30/2003 2:47:26 AM
hi all
i try since i have found this group 2 search it 4 subjects
i am interested in. i click the search i enter a subject
word and i click on search and NOTHING! even when i search
4 something i c on the list. so what's the magic trick?
anyone knows?
thanks and cheers kurt... more >>
flushing output buffer
Posted by Neeraj at 10/30/2003 1:10:59 AM
Hi All,
Is there any method provided by WinCE to flush/drain the
output buffer ??
I am trying to communicate two pocket pc's with the
infrared port.I have the two pocket pc(Compaq iPaq and HP
jornada)with the different processors.
How can i flush the output buffer before sending next byte ... more >>
Starting activesync from application on pocketpc
Posted by Christiane at 10/30/2003 12:25:36 AM
Hi there,
I'm developing an application with .net cf for pocketpc
2002. My device is connected via wireless lan. In my app I
would like to include a button to start activesync from
the pocketpc. How can this be done?
Thanks in advance
Christiane... more >>
file association
Posted by Shaun Wilde at 10/30/2003 12:04:25 AM
I'd like to associate an icon with a file type where the icon is my
applications
icon in the registry using DefaultIcon
Now I can see how to do this with C code and resources etc but when I try
the same with .NET I do not know what ID my icon is stored under
can anyone help?
Shaun
---... more >>
|