all groups > dotnet compact framework > april 2004 > threads for friday april 23
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
USB programming?
Posted by Ă–zden Irmak at 4/23/2004 4:47:38 PM
Hi,
I just got a new project for Pocket PC Windows Mobile 2003 platform and am
going to use Compact Framework for it...
I need to reach the USB port at this Pocket PC application and was curious
if anyone could point me any resource on USB programming on Compact
Framework?
Thanks in adva... more >>
[BUG in cf] SqlException
Posted by Lloyd Dupont at 4/23/2004 3:51:31 PM
SqlExeption.Message is not override in CF.
I have a SqlException happening in my code
I treat it in a Global method:
OnException(Exception e)
{
string s = e.Message;
}
the message is "SqlException"
however if I cast my exception to SqlException
I have
OnException(Exeption e)
{
... more >>
icons and bitmap files not found in 2002
Posted by Richard Lewis Haggard at 4/23/2004 2:33:09 PM
I'm developing in C#. When my app is deployed to either the emulator or my
little iPAQ running 2002, there are problems with the application finding
bitmaps and icons. Obviously, I'm doing something wrong but what?
For example, I make a dialog box that has a picture control. The picture is
ass... more >>
Another OpenNETCF..Player question
Posted by Lloyd Dupont at 4/23/2004 12:09:29 PM
given a Wav file or byte[] how do I know the number of seconds it will play
?
--
ihookdb
Get your data mobile
http://www.ihookdb.com
... more >>
Build CAN File for only one Processor
Posted by stick_boy1106 NO[at]SPAM yahoo.com at 4/23/2004 12:08:01 PM
I am using Visual Studio .NET 2003 Enterprise Edition. I would like to
build a CAB file for an ARMV4 processor running PPC2003. The Build CAB file
command on the Build menu works but it builds several other CAB files in
addition to ARMV4 one I specifically need.
Also, I would like VS to pl... more >>
How to distribute an application?
Posted by Richard Lewis Haggard at 4/23/2004 12:06:07 PM
I've developed a simple little application that I'd like to make available.
However, I am confused as to how this can be done.
Here's what I'd like to do: A user downloads a single file to their PC. The
user runs the program. It installs the actual application to the attached
pocket PC.
----
... more >>
Threading / Event issue...
Posted by Brian H at 4/23/2004 11:31:25 AM
Hi all,
I've spent a couple of hours to observe this behavior... In my app, I have
an option that, if selected, spawns a new thread, and waits for the top of
the hour to play a sound. I wait for this event with something like:
Result = WaitForSingleObject(ExitEvent, WaitMilliseconds)
If ... more >>
mouse evnt
Posted by Lloyd Dupont at 4/23/2004 10:46:48 AM
I have a drawing module in my application which work with standart mouse
event
I just played a bit the Note taking application and found that you could
draw with great accuracy, however my drawing application is more akward,
like if I was missing a few mouse event compare to the Note applicati... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
OpenNETCF.Multimedia.Player problem
Posted by Lloyd Dupont at 4/23/2004 10:31:53 AM
I was able to read system wav file with just a couple of lines with the
OpenNETCF.Multimedia.Audio.Player class
However, when I tryed to do the same thing with sound recorded with the
default record application on my PPC I get the error "Unsupported Wave
Format" ??!!!
the WaveFormatEx objec... more >>
Can I do ... with .Net CF on a PPC 2003 device?
Posted by M. Said at 4/23/2004 7:58:31 AM
Hi,
Is it possible to do the following with .Net CF application ( on a PPC 2003
Device):
1) Boot the device directly into the .Net CF Application?
2) Prevent the user from killing the .Net CF Application?
3) Prevent the user from task switching?
Basicaly, The user needs to turn the ... more >>
Use NDoc with SQLCe reference
Posted by franky at 4/23/2004 7:08:49 AM
Most of my project have a lot of SQLCe SQLClient reference.... How can I
use the NDoc Tool?
with small exemple please... :*)
thanks!
--
__________________________
Franky
FrankyPDA@hotmail.com
... more >>
Integrating with Pocket PC calendar
Posted by Aditya Barve via .NET 247 at 4/23/2004 6:30:37 AM
Hi Guys,
I am a newbie to the Microsoft Compact Framework=2E I was=
wondering is it possible to integrate with the Pocket PC=
calendar using the Microsoft Compact Framework=2E I managed to=
integrate with Outlook but I am unable to integrate the calendar=
embedded in the Pocket PC=... more >>
Missing the Menu Solution Explorer
Posted by Urs at 4/23/2004 3:16:03 AM
In my Visual Studio .NET (Smart Device Project C#) I can not find the Menu Solution Explorer how it is described in http://msdn.microsoft.com/mobility/prodtechinfo/devtools/netcf/faq/default.aspx#1.27
What's the reason?
Is something wrong in my installation?
Thanks.... more >>
Detecting SQLCE?
Posted by David Johnson at 4/23/2004 2:34:50 AM
Hi,
Does anyone know a quick way to determine (programatically on the device) if
sqlce is installed?
Any Thoughts are much apreciated.
Thanks,
David
... more >>
How can I use the right mousedown event?
Posted by david wang via .NET 247 at 4/23/2004 1:02:52 AM
Hi, I want use right mousedown event, just like following:
.....
this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseDown);
private void Form1_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e)
{
if(e.Button == MouseButtons.Right)
this.label1.Text = Sys... more >>
|