Text to Speech
Does anyone know of a text to speech library which has both english and
french language support and will run on Windows NT Embedded.
Thanks Tag: programatically turning wireless ON / OFF Tag: 91610
Sending data via the IrDa Port
Hi all,
I am writing a small app that needs to send a serial string out of the
infra red port, the app does not need to look for a response hence no
need for a recieve routine. The data that I need to send is simple plain
ascii characters ie: the string "12456" padded with ASCII Start of
Header (1 hex) at the start of the data and ASCII End of Text at the end
of the data.
Has anyone done this before, and if so has anyone got a code sample I
could look at or maybe a goo hyperlink.
Many thanks
Joe Tag: programatically turning wireless ON / OFF Tag: 91606
National Language Support
We are using language resources in one of our projects, and they work fine.
We have not translated any message text yet, and I was wondering how other
people might have done it. The obvious solution is to use hidden labels, but
I was wondering if there is anything better. Tag: programatically turning wireless ON / OFF Tag: 91603
Create a virtual comport for gps data?
Hello!
I want to create a virtual comport on my windows mobile 2003 device which I
want to use for navigation.
I have a rs232 connection to a blackbox which sends me all kind of data
including NMEA signals wrapped in a protocol. I want to extract the NMEA
data from the protocol and send it to the virtual comport so that the
navigation software thinks it has it's own dedicated comport. I've looked in
the microsofts knowledgebase but only find bluetooth related items. like
this:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wcebluet/html/ceconvirtualcomportsample.asp
I couldn't check if this was usefull because I don't have this program.
Can anyone help me?
thanks,
Thijs. Tag: programatically turning wireless ON / OFF Tag: 91602
ftp with evb
Hi!
I have a pocketpc with windows mobile 2003.
I try to use thies code for ftp
http://support.microsoft.com/default.aspx?scid=kb;en-us;305598
the error is here:
lngFtpHandle = InternetConnect(lngInternetHandle, myserverftp, _
INTERNET_DEFAULT_FTP_PORT, myusr, mypsw, _
INTERNET_SERVICE_FTP, INTERNET_FLAG_PASSIVE, 0)
It's work in the emulator but don't work in pocketpc
Pocketpc work with internet explorer, msn etc
Any idea? It's a bug of wininet.dll?
Hi, AEOM Tag: programatically turning wireless ON / OFF Tag: 91600
IOCTL_HAL_GET_DEVICEID not returning a full buffer?
This is a repost with more details. The plot has thickened....
I have some customer complaining about there DeviceID ( a unique id obtained
by IOCTL_HAL_GET_DEVICEID ) not working properly. Further digging I found
that IOCTL_HAL_GET_DEVICEID doesn't return a full buffer.
Here is the deal in more detail. This code works on many machines with many
different os versions. I have narrowed in down to be machine specific. It is
not a problem with Mobile 2003 SE. I purchased a Dell X30 to make sure. Turns
out the code only returns 36 bytes on some machines but 40 on most. So anyone
have any ideas now?
[BAD RESPONSE]
Here is the output on a machine with a 36 bytes return.
Microsoft Windows CE 4.20.0
First Int32: 256
KernelIoControl Error: 0
Buffer Length: 256
Bytes Returned: 36
First Int32: 36
dwPresetIDOffset: 20
dwPlatformIDOffset: 36
dwPlatformIDSize: 0
Full ID: F80300EB-A471-1171-0078-
[GOOD RESPONSE]
Here is the same code run on a Dell x30 with WM2003 SE. Notice the 40 byte
return.
Microsoft Windows CE 4.21.1088
First Int32: 256
KernelIoControl Error: 0
Buffer Length: 256
Bytes Returned: 40
First Int32: 40
dwPresetIDOffsset: 20
dwPlatformIDOffset: 32
dwPlatformIDSize: 6
Full ID:
028B5615-4187-51DF-00A8-0050BFE45CE5
[CODE]
AddText( Environment.OSVersion.ToString() );
uint len = 256;
Int32 cb = 0; //For some reason this is very important
byte [] buffer = new byte[256];
buffer[0] = 0;
buffer[1] = 1;
uint ret;
AddText( "First Int32: " + BitConverter.ToInt32( buffer, 0 ).ToString() );
try
{
ret = KernelIoControl( IOCTL_HAL_GET_DEVICEID, IntPtr.Zero, 0, buffer,
len, ref cb );
AddText( "KernelIoControl Error: " + GetLastError().ToString() );
}
catch
{
throw;
}
AddText( "Buffer Length: " + len.ToString() );
AddText( "Bytes Returned: " + cb.ToString() );
AddText( "First Int32: " + BitConverter.ToInt32( buffer, 0 ).ToString() );
Int32 dwPresetIDOffsset = BitConverter.ToInt32(buffer, 4);
Int32 dwPlatformIDOffset = BitConverter.ToInt32(buffer, 0xc);
Int32 dwPlatformIDSize = BitConverter.ToInt32(buffer, 0x10);
StringBuilder sb = new StringBuilder();
sb.Append(String.Format("{0:X8}-{1:X4}-{2:X4}-{3:X4}-",
BitConverter.ToInt32(buffer, dwPresetIDOffsset),
BitConverter.ToInt16(buffer, dwPresetIDOffsset+4),
BitConverter.ToInt16(buffer, dwPresetIDOffsset+6),
BitConverter.ToInt16(buffer, dwPresetIDOffsset+8)));
AddText( "dwPresetIDOffsset: " + dwPresetIDOffsset.ToString() );
AddText( "dwPlatformIDOffset: " + dwPlatformIDOffset.ToString() );
AddText( "dwPlatformIDSize: " + dwPlatformIDSize.ToString() );
for( int i = dwPlatformIDOffset; i < dwPlatformIDOffset +
dwPlatformIDSize; i ++ )
sb.Append( String.Format("{0:X2}", buffer[i] ));
string text = sb.ToString();
AddText( "Full ID: " + text );
[/CODE]
--
Bobby Cannon
SharpDeck Software
www.sharpdeck.net Tag: programatically turning wireless ON / OFF Tag: 91593
Bluetooth with Pocket PCs
I have a question to everyone
I am trying to develop an application that recieves information from a
bluetooth adaptor (which is plugged into a detector via a serial port
connection), the information will be recieved by teh bluetooth on my Pocket PC
At the moment will be recieving data in bytes.
Is there a easy way to implement something like this. Tag: programatically turning wireless ON / OFF Tag: 91591
Exporting SDK from PocketPC Magneto
Could someone tell me the command line for exporting a SDK package?
Thanks,
Tiegang Li Tag: programatically turning wireless ON / OFF Tag: 91590
how to get device id or whatever unique for every device?
Hi
Does anybody have any idea to recognize devices uniquely?
KernelIoControl () works with some devices but not all.
I think there should be some kind of id which can apply to every device like
MAC address for Ethernet devices.
If anybody knows, please reply.
thnks Tag: programatically turning wireless ON / OFF Tag: 91589
How to using CopyMessages method of CEMAPI?
Hi
if a SMS message has just created using CreateMessage method, how do I get
its ENTRYID?
What I want is to copy this new created message to a folder.
MSDN do not have a sample for this, could any one show me the code?
Thanks Tag: programatically turning wireless ON / OFF Tag: 91584
Persistent installation
I have programmed a pocketpc (HP/iPaq 2210) to operate as a controller for
some electronic test equipment.
The problem I have is that if the battery goes flat on the iPaq it loses its
application. I have the installation stored on the non-volatile memory
area, and can re-install, but then the installation erases itself.
Can I get the installation to NOT erase itself after installation, or can I
run the application from the non-volatile area?
Can someone give me a pointer here?
TIA
Steve
Albury AU Tag: programatically turning wireless ON / OFF Tag: 91582
COMM Ports on Windows Mobile 2003 Second Edition
Hi all,
I have an HP4700 running on Windows Mobile 2003 Second Edition.
I am running a couple tests on my COM ports and I currently have the
following information that I get from the registry:
Port Registry Path Description
COM1 Drivers/BuiltIn/Serial "Serial Cable on COM1:"
COM2 Drivers/BuiltIn/Serial_FIR "Infrared Port"
COM3 Drivers/BuiltIn/IrComm "Infrared Port"
COM4 Drivers/Buildin/Serial_BTUR
COM5 Drivers/BuiltIn/Serial5 "Bluetooth Serial Port COM5:"
COM8 Drivers/BuiltIn/Serial8 "Bluetooth Serial Port COM8:"
COM9 Drivers/BuiltIn/SerialUSB "Serial on USB"
When I run the test with Bluetooth enabled, ports COM2 and COM4 fail. Why
would these ports fail if Bluetooth uses COM5 and COM8?
When I run the test with Bluetooth disabled, ports COM2, COM5 and COM8 fail.
If port COM5 and COM8 are Bluetooth and Bluetooth is disabled, how can they
fail saying that they are in use? Do I have the wrong mapping for the ports?
Any help is appreciated.
Thanks in advance.
--
Anderson Tag: programatically turning wireless ON / OFF Tag: 91581
Pocket PC Emulator Stuck
My pocket PC emulation is stuck on "Tap to Set Up." How can I get around
that? Tag: programatically turning wireless ON / OFF Tag: 91579
embedded VC 3.0 question
I am building an application that requires that I use eVC++ 3.0. I have a
question concerning the development environment.
How do I copy additional files to the emulator when I start the debugger?
How is this done in 3.0.
Paul Tag: programatically turning wireless ON / OFF Tag: 91578
Header File compile time problems
Hello,
I am using EVC4 with the pocketpc 2003 SDK.
When I try to compile a set of c files that I have added to the Source Files
for a workspace that I have set up, I get a lot of errors in the include
files that came with the pocketPC 2003 SDK.
Im assuming that I have not set up the project or EVC4 correctly.
I have tried creating the project as a WCE ppc 2003 application, targeted
for the WCE ARMV4 and win32 emulator, as an empty project, simple windows CE
application and a typical hello world application.
Compiling the Typical Hello World app worked fine, before I added my C files.
Here are some examples of the errors/warnings I get, any pointers anyone has
would be greatly appreciated, I have not used VC/VS or EVC before. Thanks!
Compiling...
xcnv.c
C:\Program Files\Windows CE Tools\wce420\POCKET PC
2003\Include\emulator\stdlib.h(752) : error C2143: syntax error : missing ':'
before 'constant'
C:\Program Files\Windows CE Tools\wce420\POCKET PC
2003\Include\emulator\stdlib.h(752) : error C2143: syntax error : missing ';'
before ':'
C:\Program Files\Windows CE Tools\wce420\POCKET PC
2003\Include\emulator\stdlib.h(752) : error C2059: syntax error : ':'
...
C:\Program Files\Windows CE Tools\wce420\POCKET PC
2003\Include\emulator\winnt.h(2890) : warning C4005: 'CONTEXT_CONTROL' :
macro redefinition
C:\Program Files\Windows CE Tools\wce420\POCKET PC
2003\Include\emulator\winnt.h(1318) : see previous definition of
'CONTEXT_CONTROL'
... Tag: programatically turning wireless ON / OFF Tag: 91572
library for 3D graphics for PocketPC
I have to make some practical task for uni. Course of computer graphics.
From lines and B-splines with antialiasing to 3D rasterizing with textures.
Will it be worth to do for PPC?
Just want to know, is there something already for PPC? free? Tag: programatically turning wireless ON / OFF Tag: 91571
Available Space
Using a C# from a PC how can I find out how much main memory space there is
available and how much storage card space is available?
--
-Demetri Tag: programatically turning wireless ON / OFF Tag: 91570
Push error when trying to push a table to SQL Server
I am trying to push a table from my pocket pc to my SQL Server but I recive
an error "The table cannot be opened " "The specified table does not exist ".
I recive this error when I have made changes to my table and then want to
push it back to SQL Server.
I can not understand why it does not work,. The table does exist.
Can anyone help me to solve this problem. Please
Thanks Tag: programatically turning wireless ON / OFF Tag: 91561
Suspend/Resume and TODAY Screen
This is a general question for Pocket/Win Mobile. -- I have seen this happen
multiple times on Win Mobile 2003.
Launch your application -- next let the device goto sleep for a prolonged
period of time -- like overnight. Come back the next day and then power-on
the device you will see that in some-cases you first see the TODAY SCREEN
then your application and in other cases it directly jumps to TODAY SCREEN
and stays there ...
For an enterprise app and a novice user they feel that the app has exited
and if there is any captivity code included the Today screen seems to easily
break it by showing the Start -Menu etc on the top.
Is there any way to avoid or better stop such forceful behavior of the TODAY
SCREEN ?
Thanks in advance. Tag: programatically turning wireless ON / OFF Tag: 91556
Suspend/Resume and TODAY Screen
This is a general question for Pocket/Win Mobile. -- I have seen this happen
multiple times on Win Mobile 2003.
Launch your application -- next let the device goto sleep for a prolonged
period of time -- like overnight. Come back the next day and then power-on
the device you will see that in some-cases you first see the TODAY SCREEN
then your application and in other cases it directly jumps to TODAY SCREEN
and stays there ...
For an enterprise app and a novice user they feel that the app has exited
and if there is any captivity code included the Today screen seems to easily
break it by showing the Start -Menu etc on the top.
Is there any way to avoid or better stop such forceful behavior of the TODAY
SCREEN ?
Thanks in advance. Tag: programatically turning wireless ON / OFF Tag: 91554
Customize My pocket PC OS
Hi evryone,
I would like to customize my Pocket PC OS by uninstalling all software,
drivers and hardware in ROM that I don't need.
My aim also is to build my application in ROM so as to be loaded and
installed automatically if I do Hard Reset.
Could Platform Builder do that ?
If not, do you know any way to realise this operation.
Thanks. Tag: programatically turning wireless ON / OFF Tag: 91551
Bluetooth Wake uo
Hi,
I have a belkin USB adapter and I am using the stack provided by Microsoft.
The OS is MS win XP SP2.
The problem is when my system goes in stand by and when a request arrives
from my PDA the system does not wake up.
Can somebody please help me here.
Subu Tag: programatically turning wireless ON / OFF Tag: 91550
2 hopefully easy questions....
1. Is it possible to disable the battery warning popup message?
2. Is it possible to change the percentage level for when the alarm is
shown? eg..to show when it gets down to last, say 10%.
thanks,
paul Tag: programatically turning wireless ON / OFF Tag: 91549
WM_VSCROLL
Hello,
my SpinButtonCtrl is connected to an input field, the orientation is set to
vertical.
If I press the up arrow the number of my input field is decreased and if I
press the down arrow the number is increased. How to change this behaviour.
I want to press the up arrow to let the number increase and to press the
down arrow to let the number decrease.
please help thanks in advance.....eVC++ 4.0 dialog based mfc app Tag: programatically turning wireless ON / OFF Tag: 91547
Help! DELL AXIM UPGRADE
First Is it possible to upgrade DELL Axim X30 with the ROM Update? (From
support.dell URL about 33MB)
second is it possible to reverse the ROM Version leter if needed?
Thanks,
Arvi Tag: programatically turning wireless ON / OFF Tag: 91546
Using Platform Builder libs
Hi,
I'm currently developing an application for PPC 2003. My problem is that I
would like to use one of the .lib files included in Platform Builder 4.2. I
have downloaded the trial version of PB and as I interpret the EULA, I'm not
allowed to link the lib file into my program if I intend to distribute it
comersially.
I guess my question is this: If I purchase the full license for Platform
Builder 4.2, am I then allowed to use lib files included in the PB for
comersial use?
regards
Johan Haren Tag: programatically turning wireless ON / OFF Tag: 91544
Scrollbars on inputforms
Hi,
We're making some input forms on a PPC 2003 SE, using VB.Net...
But we ran into some trouble when the forms started getting larger than the
screen. We are now using the VScrollBar class, and to scroll, we put all the
input-fields on a panel. So when the user scrolls, the panel's Top-property
is set, so that it moves off the screen. This works obviously, but not
nearly how it should be done i guess....
Can anyone help me out on how to do this properly??
regards,
Christian Berkhout
Iv-Software BV
The Netherlands Tag: programatically turning wireless ON / OFF Tag: 91542
About delete a file
Hi I use C# on PPC,
how can I delete a file with C# and moves it into Recycle Bin?
--
Thanks in advance,
Renzo Contarini Tag: programatically turning wireless ON / OFF Tag: 91540
sync/recharger port
Hi Pocket PC gurus,
I am looking at a project that will be using pocket PC, but the other end
will be either a serial link or a USB link. There are many converter cables
for converting from sync/recharger port to serial/USB, but none for the SDIO
port. So my question is, will I be able to use the recharge/sync port from my
program? Thanks. Tag: programatically turning wireless ON / OFF Tag: 91538
5-way Nav Control .NET CF API?
How does one receive notification of a button event from the 5-way Nav
control on a PDA with .NET Compact Framework? Tag: programatically turning wireless ON / OFF Tag: 91537
graph code
Hi,
Anyone know of any free code or add-in to display extremely simple graph,
from a data grid, or other data object with just a date and a value?
I have seen the post from Mooseworks software, and their graph control
sounds great, but I'm not able to spend money on this part of the application.
Any code source or advice on writing my own code would be appreciated.
Thanks Tag: programatically turning wireless ON / OFF Tag: 91531
ActiveSync - Combine or Replace - dialog question
Is there any way an ActiveSync provider can tell when this dialog is
displayed, and which option is selected?
Frank Tag: programatically turning wireless ON / OFF Tag: 91528
systry form
Dear All,
How to make a form that show systry icon on Pocket Pc 2003 ?
Where can I read some tutorial about it ?
Thank's. Tag: programatically turning wireless ON / OFF Tag: 91524
Database Question
In eVB I am able to use Pocket Access for my standalone application. Can
Pocket Access be used in .NET compact framework using VB.NET? What is the
best option to use for a database? I am not trying to create an enterprise
application, but rather one for a home user and wasnt sure if SQL Server CE
is the way to go. Tag: programatically turning wireless ON / OFF Tag: 91518
kszCapSMTPAuthenticate...
This is a multi-part message in MIME format.
------=_NextPart_000_0020_01C512CB.538B8240
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
Hi all,
searching about my problem with CeMAPI, I found this define in the =
cemapi.h:
const WCHAR kszCapSMTPAuthenticate[] =3D L"SMTPAuthenticate";
Does it is used for the MAPI authenticate on smtp server to send =
messages??
I tried to use it like that:
//////////////////////
hr =3D MailSync->GetCapability(kszCapSMTPAuthenticate, &Value);
if(!hr)
{
Value.Value.l =3D 0xFFFFFFFF;
hr =3D MailSync->SetCapability(kszCapSMTPAuthenticate, &Value);
EXIT_ON_FAILED (hr);
}
but it seems not to work, please, if there is anyone that uses CeMAPI, =
could
you help me explaining how could I set to authenticate on SMTP? If I not =
do
this, my applications (EVC++) cannot send messages, only receives..
thankyou very much.
Thiago
------=_NextPart_000_0020_01C512CB.538B8240
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 6.00.2900.2523" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT face=3DVerdana size=3D2>Hi all,</FONT></DIV>
<DIV><FONT face=3DVerdana size=3D2></FONT> </DIV>
<DIV><FONT face=3DVerdana size=3D2>searching about my problem with =
CeMAPI, I found=20
this define in the cemapi.h:</FONT></DIV>
<DIV><FONT face=3DVerdana size=3D2></FONT> </DIV>
<DIV><FONT face=3DVerdana size=3D2>const WCHAR=20
kszCapSMTPAuthenticate[] =3D=20
L"SMTPAuthenticate";<BR></DIV></FONT>
<DIV><FONT face=3DVerdana size=3D2>Does it is used for the MAPI =
authenticate on smtp=20
server to send messages??</FONT></DIV>
<DIV><FONT face=3DVerdana size=3D2>I tried to use it like =
that:</FONT></DIV>
<DIV><FONT face=3DVerdana size=3D2></FONT> </DIV>
<DIV><FONT face=3DVerdana=20
size=3D2> //////////////////////<BR> hr =3D=20
MailSync->GetCapability(kszCapSMTPAuthenticate,=20
&Value);<BR> =20
if(!hr)<BR> {<BR> Value.Value.l =3D=20
0xFFFFFFFF;<BR> hr =3D=20
MailSync->SetCapability(kszCapSMTPAuthenticate,=20
&Value);<BR> EXIT_ON_FAILED=20
(hr);<BR> }<BR></FONT><FONT face=3DVerdana =
size=3D2></FONT></DIV>
<DIV><FONT face=3DVerdana size=3D2>but it seems not to work, please, if =
there is=20
anyone that uses CeMAPI, could</FONT></DIV>
<DIV><FONT face=3DVerdana><FONT size=3D2>you help me explaining how =
could I set to=20
authenticate on SMTP? If I not do</FONT></FONT></DIV>
<DIV><FONT face=3DVerdana><FONT size=3D2>this, my applications (EVC++) =
cannot send=20
messages, only receives..</FONT></FONT></DIV>
<DIV><FONT face=3DVerdana><FONT size=3D2></FONT></FONT> </DIV>
<DIV><FONT face=3DVerdana><FONT size=3D2>thankyou very =
much.</FONT></DIV></FONT>
<DIV>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0pt; WORD-SPACING: 0pt; TEXT-INDENT: 0pt; LINE-HEIGHT: =
100%"><SPAN><FONT=20
face=3DVerdana size=3D2> <?xml:namespace prefix =3D o /><o:p>=20
Thiago</o:p></FONT></SPAN></P></DIV></BODY></HTML>
------=_NextPart_000_0020_01C512CB.538B8240-- Tag: programatically turning wireless ON / OFF Tag: 91516
Current IP is 127.0
I use the following code to get the IP address of a pocket pc device:
string HostName = Dns.GetHostName();
IPHostEntry thisHost = Dns.GetHostByName(HostName);
string thisIpAddr = thisHost.AddressList[0].ToString();
Unfortunatly sometimes this reports 127.0.0.1, when connected with the
craddle.
VxUtil also reports 127.0.0.1 for the curent IP, but also an adapter
(ppp1 or USB Cable, depending on Pocket PC version) with an valid IP
adress. Other applications, like PocketIE are also working fine.
Thanks in advance
Pascal Tag: programatically turning wireless ON / OFF Tag: 91512
PPC and assembler
Hi
I use eMVC4 on a ARMV4 target, and I need to speed up small parts of the
code that are repeated often.
I have searched high and low for information on how to interface assembler
code into my C++ project, but have so far come up with absolutely nothing
Anybody knows anything about this ?
TIA Tag: programatically turning wireless ON / OFF Tag: 91507
What on earth is the purpose of GXOpenInput!!!!!!!!
Hi
I have found the root cause of a problem I have been experiencing with PPC
2003 SE devices
not toggling between landscape and portrait.
The code contains calls to GXOpenInput.
I see from the documentation what this does,
but WHY would you need to use it?
Any thoughts greatly appreciated. Tag: programatically turning wireless ON / OFF Tag: 91504
Digital signing of a driver for windows mobile?
Hi,
I want to access the hardware registers on my loox pda (there is an intel
pxa272 inside). In my efforts I have learned that on a windows mobile pocket
pc 2003 I should be able to manage this by writing a .dll.
The problems I am having right now concerns the digital signing, this since
my .dll will end up in ram and not in rom. (Is there a way to place it in rom
without downloading a new OS?)
Do I have to sign the .dll and the application in order to access the
hardware? (My guess is that I have to, since nothing is working but correct
me if I am wrong).
Is it enough to just use any old rsa key pair (between 512- and 1024-bits)
to do the signing? Or has it got to be some specific microsoft or OEM key
pair?
Do I automatically get the OEM_CERTIFY_TRUST from the function
OEMCertifyModule if I sign the .dll and application and the pda has access to
the public key?
How do I plant/transfer my public key to the pda and where should it reside?
The key pair should be in blob format, thats another problem. The example
rsa key at
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/seccrypto/security/private_key_blobs.asp
did not work with Signfile.exe(from platform builder). I got :
Error 80090016 during CryptAcquireContext!
*** Error signing hash
So either I gobbled it up or it is not correct but it still leaves me
wondering how it really should look.
Regards
Johan Tag: programatically turning wireless ON / OFF Tag: 91502
pocket pc 2003 emulator unavailable in VS .NET 2003
Hi,
I've installed eVC++, Visual Studio .NET 2003 and the
Pocket PC 2003 SDK. I can run eVC++ programs on the Pocket
PC 2003 emulator, but the PPC 2003 emulator is not
available in VS .NET 2003 (PPC 2002 is the only option).
Does anyone know what is the problem? Thanks.
Cecilia Tag: programatically turning wireless ON / OFF Tag: 91500
Problem reading database after sync
Hi All,
I am testing two applications one windows based and one Pocket PC 2003. When
I sync data from the PC in a .mdb file to the device a .cdb file using
DESKTOPTODEVICE function the data gets transferred by the device application
can not read from the .cdb file to display the data. If I copy over the .mdb
to a .cdb using ActiveSync the device reads the data fine.
Is the DESKTOPTODEVICE function compatable with 2003 second edition?
--
Cheers
New Developer Tag: programatically turning wireless ON / OFF Tag: 91498
WIFI (802.11b) and access to radio modes
Hi!
I have tried to find the way to change radio modes between
infrastructure and ad-hoc. Usually this is done with application
provided by WIFI card manufacturer. Is there any public API to change
between the radio modes?
I found a lot of information about "wireless zero config" but all libs
and headers seems to be a part of WinCE5.0 Platform builder. Is that
platfrom builder needed to create a program that can change the radio
mode if needed?
Samuli Tag: programatically turning wireless ON / OFF Tag: 91494
fullscreen flash problem
Hi,
I have managed to create a (sort of) full-screen flash application, by
creating a WC_HTMLCONTAINER window, using SHFullScreen, moving the
window, then making an WC_HTML child window for it.
If I just load a normal html page with text on it, it displays
full-screen. However, if I try to embed a 240x320 flash movie in my
html page, there seems to be a display limit of about 200 x 276. I can
use scale = "noscale" and center my flash movie, but I'd like to use
the whole screen, and see all of my flash movie.
I had a look at FlashAssist, and it displays my 240x320 movie without
problems, so I guess it's not a limitation of the flash player...
Any ideas what's going on?
Here's my HTML page:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"
/>
<title>flashapp</title>
<style type="text/css">
</style>
</head>
<body bgcolor="#ffffff">
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
width="240" height="320" id="flashapp" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="flashapp.swf" />
<param name="menu" value="false" />
<param name="scale" value="noscale" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
</object>
</body>
</html>
Thanks,
Mike Tag: programatically turning wireless ON / OFF Tag: 91493
sending a message to a wireless PDA
is it possible to do something like NET SEND to a PDA if you know the IP
address? i've tried but didnt have any luck...
thanks,
Paul Tag: programatically turning wireless ON / OFF Tag: 91490
Set System time in Pocket Pc from web page
Is there a way in JScript to set the system time? I would like to write a
JScript that syncs the Pocket PC time with a time server. The script needs
to execute from the Pocket PC. Thanks Tag: programatically turning wireless ON / OFF Tag: 91485
pocket pc application convert to windows ce ?
I made an application for pocket pc and now i want to make it for indows ce
how can i do this convert without recreating the program?
because when i start a ne project i'm asked what do i want: pocket pc and
windwos ce
thanks Tag: programatically turning wireless ON / OFF Tag: 91483
Dialog Display Problem - Help !
I have an application which displays a main dialog and then uses a main loop
to launch a series of other dialog's which represent the UI of the
application. Each dialog is launches and then exits, before the main loop
calls the appropriate next dialog.
The problem I have is that if a user launches another application while mine
is running and then switches (not closing the other app) back to my
application then the display between the dialogs in my application will show
the other application.
Thus as the user goes between screens the other application is shown
inbetween as the new dialog is being prepared and drawn.
I have tried a few things to bring my dialogs to the front but it always
seems possible to get something else showing in between.
Can anyone help ?
thanks,
simon. Tag: programatically turning wireless ON / OFF Tag: 91482
Install EVC on German Windows
Hello!
Please help, i'd like to install Embedded Visual C++ 4.0 on my German
Windows sp 4, but when i try to do that - setup.exe generates access
violation and setup fails :(
Does anybody know how to fix it?
Thanks,
Raf Tag: programatically turning wireless ON / OFF Tag: 91481
SMS and Inbox (MAPI)
[my PocketPC is PPC 2003 Simplified Chinese version]
I am tring to develop a program that can send scheduled SMS automatically. I
can do it with SMS API's such as SmsOpen, SmsSendMessage etc.
With this method, the SMS sent will not be saved in the "Sent" folder. So I
read a lot in MSDN website and found articles about MAPI Messaging. There is
a sample code that create e-mail messages.
I updated this sample code for sending SMS message (I changed some
properties from "SMTP" to "SMS" ) and it does, but with problems.
the right things that my code does:
1, a SMS message is stored in Drafts folder, and it is moved to OUTBOX after
SubmitMessage API call;
2, "Message has been sent" notification displayed and the message is sent;
3, the SMS message is then placed in Sent folder.
that are what I want, but ....
(I sent the SMS message to my mobile phone, so I received it myself)
1, when I received the SMS message, in the message, the Chinese characters
could not be recognized, it is displayed as "????" while the English
characters were ok;
2, the message stored in the Sent folder is perfect, I mean the Chinese
characters are all good;
3, if I move the message from Sent folder to Outbox, the message will be
sent again automatically. when I receive it, all characters are good, include
Chinese characters! why?
in the MSDN website, I could not find a answer for it.
Could any body help me solve this problem? or tell me how to send a SMS
message and save the message into SMS Inbox store?
P.S.
After I running my program in my Dopod 696 (same as XDA II) (with Chinese
ROM), my SMS Inbox seems changed:
1, there are CC and BCC recipients fields in the SMS edit window (they
should not be there in SMS message)
2, I forward a SMS (it is sent by my program and recieved ) to myself, when
I receive it, the whole message displayed as follows:
FW: subject ------Original message---- Sender: 1390xxxx Sending Time:
05-2-13 hh:mm:ss recipient: 1390xxxx subject: a???a xxxxxxxxxxxxxxxxxxxxx Tag: programatically turning wireless ON / OFF Tag: 91479
SHFullscreen() on TIMER?
Hello,
how to place the ShFullScreen Routine in
case WM_TIMER:
break;
/*
RECT rc;
GetWindowRect(hWnd, &rc);
SHFullScreen(hWnd, SHFS_HIDETASKBAR | SHFS_HIDESTARTICON |
SHFS_HIDESIPBUTTON);
MoveWindow( hWnd,
rc.left,
rc.top,
rc.right,
rc.bottom,
TRUE);
UpdateWindow(hWnd);
*/
so that i can refresh my application for every 2 seconds or so.
any ideas or sample code will be a great help
Thanks,
Arvind Tag: programatically turning wireless ON / OFF Tag: 91477
hi there,
i would like to know how or if it is possible (through API i guess), to
programatically turn ON and OFF the wireless on my PDA?