all groups > dotnet compact framework > march 2004 > threads for thursday march 25
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
SQL CE Replication Error
Posted by fookyuan NO[at]SPAM idigi.net.my at 3/25/2004 8:09:32 PM
Hi,
I have problems replicating a database to the SQL CE and my codes are
like this
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles Button1.Click
Dim strDataSource = "My Documents\dbDataLogger.SDF"
Dim repl As SqlC... more >>
Deleting a SQL CE database
Posted by Richard Kucia at 3/25/2004 4:24:27 PM
I'm playing around with SQL CE for the first time, and it didn't take long
for me to come up with a puzzle. I created a little test app that gives the
user 3 buttons: Create, Insert and Display. "Create" deletes the SQL CE
database file (if it exists) and then creates a empty database with one
e... more >>
String to IntPtr conversion
Posted by massimo capetola at 3/25/2004 3:37:58 PM
I use vb.net 2003 to developp a program for PocketPc 2003.
I have a problem to pass parameters into a function of a C++ dll
Here is my function's declaration in vb.net:
Public Declare Function InitDll lib "Mydll" (ByVal initFile as IntPtr,
ByVal pnumber as long) as long
initFile is a pa... more >>
RAPI in C
Posted by Hilton at 3/25/2004 3:12:33 PM
Hi,
This is not really a CF question, but it is related. I have written a CF
app for the PPC. I would like to write a RAPI app on the PC, but I do not
want to insist that users install the (Full) Framework to run a simple
utility (RAPI in C#).
So, where can I get a sample in C, where are ... more >>
DiffGram DataSet Issue
Posted by Michael McGuire at 3/25/2004 2:45:16 PM
I am attempting to create a PocketPC 2002 application using the .NET Compact
Framework and Web Services. I have a web service that I connect to from a
mobile client form, and attempt to save the file off as a DiffGram because I
wish to track changes to upload back to the server. However, I seem... more >>
OpenNETCF problem: ProcessStartInfo
Posted by Balint Toth at 3/25/2004 1:56:28 PM
Hi,
I run the following code:
ProcessStartInfo pr=new ProcessStartInfo(@"\Storage\windows\Start
Menu\Accessories\myapp.exe");
Process.Start(pr);
But it return with System.TypeLoadException. Of course
using OpenNETCF.Diagnostics;
is added.
What can be the problem? Please help me... more >>
NOVICE: Remote Debuging - What is Needed?
Posted by Peter N. Konstant at 3/25/2004 12:33:21 PM
Hello,
Thanks for reviewing my question. I have VS.NET 2003 and created a C#
SmartDevice project. I have a Windows CE device. Both units are connected
to the network. I would like to debug the application on the actual unit.
What do I have to get the remote debugging working? Can I do it ... more >>
SqlConnection Errors - Resolved!
Posted by Tomer at 3/25/2004 11:51:02 AM
To all who had problems with connecting to a local sql server 2000 from a
pda. Problems like PlatformNotSupported, and user (null) exceptions.
(This goes to Microsoft's guys too!!)
Here's my suggested solution:
I've discovered that it matters which collation you use for your database,
and w... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Thread priorities in the .NET Compact Framework
Posted by Ottadev at 3/25/2004 11:26:08 AM
As I understood .NET Compact Framework does not support thread priorities as in the .NET Framework
This makes almost impossible for us to design our realtime applications using Windows CE .NET an
..NET Compact Framework. I wonder how other developers overcome lack of thread priorities as in th
..... more >>
Forms Designer not available for some forms
Posted by Justin Marshall at 3/25/2004 11:08:59 AM
Greetings,
I have just opened up a Compact Framework project that I was working on a
couple of days ago and I now can't edit the screen design of SOME of the
forms in the project (5 out of 12).
The icon in the solution explorer for the forms that I can't design has now
changed to the standard... more >>
Access modifiers
Posted by Elisa at 3/25/2004 11:01:48 AM
Hi,
Isn't there an access modifier that limits visibility to the same namespace?
Regards,
Elisa... more >>
'System.ArgumentException' occurred in System.Drawing.dl
Posted by Ricardo Parreira at 3/25/2004 10:15:17 AM
Hello
I'm having, a lot, this kind of error :
"An unhandled exception of type 'System.ArgumentException' occurred in
System.Drawing.dll"
It happens randomly when the form is adding pictureboxs. If i leave and
reenter the problem goes away, so its very difficult to repeat. I've several
cu... more >>
AddHandler and RemoveHandler
Posted by Elisa at 3/25/2004 10:01:42 AM
Hi,
If you add event handlers using AddHandler, do you have to explicitly
call RemoveHandler, or are event handlers automatically removed when the
listener goes "out of focus" (read: gets disposed)?
Regards,
Elisa... more >>
Threads and events (again)
Posted by Elisa at 3/25/2004 10:00:48 AM
Hi,
I already asked something similar previously, but I still haven't
completely grasped the concept of threads and events.
I'm trying to design an app using the Observer pattern and the Command
pattern, e.g. my GUI adds commands to a queue, this queue process these
commands in a seperat... more >>
Consuming WS on full vs compact framework - XmlException
Posted by Bert at 3/25/2004 9:55:41 AM
Hi,
I'm really desperate here, so I'll try to post my problem once more..
I'm building a web service (to be consumed by a .NET Compact Framework
client), using the Remoting infrastructure. Depending on the incoming
message, I change some properties in the IMessage object (in a
ChannelSi... more >>
Windows mobile second edition?
Posted by Zanna at 3/25/2004 8:54:11 AM
I found this
http://www.microsoft.com/downloads/details.aspx?FamilyId=6A34DC83-C3CE-4A4C-AB83-491FD5729551&displaylang=en
And a question is born :)
What is the "second edition" meaning?
Why I should download from that link?
Thanks
... more >>
CF 2.0 where to get?
Posted by éric at 3/25/2004 6:01:08 AM
I know it was distributed at mdc...
for those who could not attend... where will the next distribution
point/date be?
MSDN? beta.microsoft.com? mdc dvd for sale?
Thanks
... more >>
List view works but Details wont ???
Posted by tiger79 at 3/25/2004 3:06:06 AM
Hello
I've implemented a ListView in an C# CF application so that it shows me the files present in a directory. It shows them using the List option of View under Appearence. Because I need to know the dates in which those files have been created/edited I thought the details view would be more helpf... more >>
FMOD problem (playing MP3)
Posted by Balint Toth at 3/25/2004 2:12:28 AM
Hi all,
I got FMOD from www.fmod.org. I wrote the following simple code, but
unfortunately nothing happens:
[DllImport("fmodce.dll")]
public static extern bool FSOUND_Init(
int mixrate,
int maxsoftwarechannels,
uint flags);
[DllImport("fmodce.dll") ]
public static extern Int... more >>
Non-Full Screen Dialog Box
Posted by Amit Patankar at 3/25/2004 1:41:07 AM
Hi
I am developing a form which I want it to work as a modal dialog box (using ShowDialog)
But when I say ShowDialog it show me a full screen Dialog. I want the dialog to be of a small size or the size
of which I have designed. In EVC I used m_bFullScreen. But how should I make the same in Comp... more >>
|