Windows XP SP2 Pocket PC 2000 Emulator
Hi,
We're running eVC 3.0 and using the PocketPC 2000 emulator. Since we've
upgraded our Windows XP to SP2 we get access violations when a thread
execution finishes.
We've also found some other people that are running in the same problem that
we've just reported:
http://groups.google.ca/groups?hl=en&lr=&selm=OtvHgFXgEHA.3476%40tk2msftngp13.phx.gbl
For this prog:
DWORD TestFunc(LPVOID lpParameter)
{
return 0;
}
int WINAPI WinMain(
HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPTSTR lpCmdLine,
int nCmdShow)
{
HANDLE hThread = ::CreateThread(NULL, 0, TestFunc, NULL, 0, NULL);
WaitForSingleObject(hThread, INFINITE);
return 0;
}
We get this error while debugging:
User breakpoint called from code at 0x7c901230
This is shown in the debug windows of eVC:
HEAP[TestThread.exe]: Invalid Address specified to RtlFreeHeap( 00080000,
003965A0 )
First-chance exception in TestThread.exe (COREDLL.DLL): 0xC0000005:
Access Violation.
Is there any way to resolve this problem because we would really want to
continue using the PocketPC 2000 emulator and also upgrade our OS to Windows
XP SP2?
Thanks Tag: Active Viewer Tag: 95018
Bluetooth Security Questions
In the case that you have two bluetooth devices paired but without a password
are the devices linked but insecurely, can pair with a device that prompts
for a password if you give the incorrect password? Also if they are paired
with a password what exactly does the security look like in that case, is it
encrypted etc...? Can you tell at runtime if a given Bluetooth pairing is in
a secure mode?
--
Jeremy Truelove
Software Engineer Tag: Active Viewer Tag: 95013
Accessing virtual serial port (COM8) of a bluetooth connected GPS
I try to open a virual com port to read the datastream of a GPS
receiver (TomTom Navigator) which is connected via bluetooth to my
iPAQ 5550 Pocket PC
I am using using Microsoft eMbedded Visual C++ 4. My Bluetooth-
Settings say Inbound COM port is 5, outbound COM port is 8.
The following code always returns an invalid handle and error code
55:
HANDLE hSerialPort = CreateFile(TEXT("COM8:"),
GENERIC_READ,
0,
NULL,
OPEN_EXISTING,
FILE_ATTRIBUTE_NORMAL, NULL);
if (hSerialPort == INVALID_HANDLE_VALUE)
{
CString ErrorMsg = _T("");
ReturnValue = GetLastError();
ErrorMsg.Format(_T("Cannot open com port! Error: %d"), ReturnValue);
m_SOEdit.SetWindowText((LPCTSTR)ErrorMsg);
return TRUE;
}
if(GetCommState(hSerialPort, &commDCB))
{
CString Props = _T("");
Props.Format(_T("DCBLength: %d\r\nBaudRate: %d\r\nBinary: %d\r\n")
_T("Parity: %d\r\n"),
commDCB.DCBlength, commDCB.BaudRate,
commDCB.fBinary, commDCB.fParity);
m_SOEdit.SetWindowText((LPCTSTR)Props);
}
if (hSerialPort)
CloseHandle(hSerialPort);
The receiver is connected and the connection is valid. Does anybody
have an idea whats wrong?
Many thanks for your help!
Tom
*-------------------------------------------------*
* *
* Smart Solutions AG *
* Baarerstrasse 98, Postfach 2642 *
* 6302 Zug / Switzerland *
* *
* Your partner in enterprise and mobile computing *
* *
* http://www.smart-solutions.ch *
* *
*-------------------------------------------------* Tag: Active Viewer Tag: 95011
cab
I have make a setup cab file with cabWizard, it works correctly but when i
run the setup the file.cab delete itself!!! I'd like to have i file cab that
doesn't delete automatically!
Thanks... Tag: Active Viewer Tag: 95010
How to interface hardware devices?
Is there any documentation on how to develop hardware devices for the PocketPC?
I would like to connect various sensors, etc. What are the options?
Bluetooth, The smartcard connector, The sync cable connector?
It looks like some GPS devices connect via the smart card connector. How do
I write low level drivers for such devices? Any hints at all? Tag: Active Viewer Tag: 95007
ico
How can i change the ico associate with the exe file in evc4? I have tried
changing the IDR_MAINFRAME without any result!
thanks... Tag: Active Viewer Tag: 95005
Interprocess Communication
Hi,
Is there anyway to perform interprocess communication in windows ce
Thanks in advance,
-Jimmy Tag: Active Viewer Tag: 95003
how to stop a running process
I am a newbie. I am developing an application that uses threads to gather
data from a socket. I am finding that my code somehow does not let the main
UI thread do its job. so the screen (just for my application) does not
respond. I find that then I have to reset the ipaq to stop my application.
Is there another way to just kill my application? i read on this newsgroup
about sending the app a "kill message" if i have the applications "handle".
i am hoping for something more like "taskmanager" or a way to list running
processes on the PPC. select the process and kill it.
--
Maria Cruz
MTC Technologies.com Tag: Active Viewer Tag: 95001
CeGetDBInformationByHandle
I am calling CeGetDBInformationByHandle with a handle for an object store
database.
Shouldn't the guidVol field in the BY_HANDLE_DB_INFORMATION struct contain
the system GUID in this case?
It does not contain the system GUID!
The oidDbase is correct and also the name field in infDatabase. Tag: Active Viewer Tag: 94997
HOw to detect different wireless connections
Hi all,
Could you please tell me how can I detect different wireless connections
available using NDIS in a room in which I have my PDA.
Thanks,
Arsalan Tag: Active Viewer Tag: 94992
HTTP (and socket) connection fails after 73 connections...
Hi,
I have problems writing a http&socket client for PocketPC.
I'm using Jeode JVM and it seems that every client I develop
stops to make connections after 73 connections. This has to be
caused by the fact that somehow the PocketPC can not reuse
the local ports they are all used and I have not found a way
to free these ports. Normal socket disconnect/close does not
seem to help...
Any ideas how to solve this problem?
Best regards,
Ville Tag: Active Viewer Tag: 94991
ZIP library needed !!!
I need a zip library running on PPC, more clearly a packer which I can call
from within my application to compress already existent files.
I'm using embedded Microsoft eMbedded Visual C++ as development platform,
not a .net environment.
Anybody got a recommendation?
Kerstin Tag: Active Viewer Tag: 94989
*.lnk file format
Hello,
i need to start my app after a soft reset takes place. In order to archive
this I put a *.lnk file into auto start directory. The app is started but
the "sim pin app" is also started and hides my app. I need to know whether
my app was started by shell after soft reset or manually through user to
implement a workaround for the hiding of my app.
On a desktop machine I would pass some parameter to the app call but on ppc
device I don't know how to create a *.lnk file with parameters in it.
this is the content of my *.lnk file 27#"\hidden
applicationname.exe"
For every help I will thank in advance.
regards Sylvester Tag: Active Viewer Tag: 94987
How to write device Drivers
Dear friends
I have developed applications for PocketPC using Evc++ 4.0 . Now i want to
know how can i write a device driver using this ..?
To be very frank i want to know how to do embedded programing using EVC++
..can anybudy guide me ..or can suggest any book which will help me out to
learn this things. Tag: Active Viewer Tag: 94986
pocket ie \n newline in a textarea
Hi All
I have been searching this newsgroup for a workaround for the newline
character \n in pie (pocket internet explorer) textarea elements.
It is not supported on my XDA II (not sure what version of windows mobile
this runs?)
Anyway this works,
<textarea name=i1 rows=10 cols=50></textarea>
<script>
i1.value = 'start'+String.fromCharCode(13, 10)+'end'
</script>
this has been frustrating me for a while.
Stephen Tag: Active Viewer Tag: 94977
launching applications
I would like to know if anyone has some sample code, preferably in C#, that
demonstrates application A launching application B.
TIA. Tag: Active Viewer Tag: 94970
MSDN for Windows Mobile?
Greetings,
I am the director of sales and marketing for Mark/Space, Inc. We make a
piece of software called The Missing Sync for Pocket PC that allows a user
to sync their handheld apps with a Mac OS X computer. We currently have tens
of thousands of users.
We're getting close to releasing a major upgrade, The Missing Sync for
Windows Mobile, which will add support for POOM and Windows Mobile
Smartphone devices, and will introduce a plugin architecture that will allow
for third-party sync plugins for apps like FileMaker Mobile and Pocket
Quicken.
I am seeking information on developer programs that will help us evaluate
compatibility with future Windows Mobile OS releases and better plan our
roadmap. If anyone here would be willing to offer suggestions, I'd greatly
appreciate it.
Thanks in advance.
Eric
--
Eric Ullman
Director of Sales and Marketing
Mark/Space, Inc.
eullman@markspace.com
http://www.markspace.com Tag: Active Viewer Tag: 94969
eMbedded Visual C++ to launch Pocket Internet Explorer
I am looking for some sample code to launch Pocket Internet Explorer passing
the URL. I also would like to have the ability to launch Pocket Outlook.
Thanks in advance. Tag: Active Viewer Tag: 94968
Connecting to Linux using Jornada 568
Anyone ever have any success connecting their Jornada to a Linux os?
----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! 120,000+ Newsgroups
----= East and West-Coast Server Farms - Total Privacy via Encryption =---- Tag: Active Viewer Tag: 94964
Urgent please: error C2440!
Hi, this is my c++ code:
LPCWSTR *g_Phone[];
EXTERN_C void MyFunction(LPCWSTR aPhone[], int aLength, bool aDelete)
{
g_Phone = &aPhone;
[...cut code...]
}
this is the compile error:
Compiling...
mylibrary.cpp
k:\pocketpc\mylibrary\mylibrary.cpp(994) : error C2440: '=' : cannot convert
from 'const unsigned short ** []' to 'const unsigned short **[] '
There are no conversions to array types, although there are
conversions to references or pointers to arrays
Any clue??
Thanx in advance ;)) Tag: Active Viewer Tag: 94963
Command Line parameters to launch MMS Editor with Prepopulated fields
Hi Folks,
I am looking for tmail.exe (a.ka. Inboc application) Command Line parameters
to launch MMS editor with prepopulated fields(i.e. To, Subject and Picture
filed).
I tried providing mmsto uri scheme (e.g.
"mmsto:support@customercare.com?subject=Feedback" similar to
"mailto:support@companyname.com?subject=Feedback&body=Nice job") to
lpParameters data field of SHELLEXECUTEINFO structure and than calling
ShellExecuteInfoEx fn. to launch tmail.exe on Smartphone.
The the tmail.exe (aka Inbox application) launches but i do not see the MMS
editor screen prepopulated with the Subject and To fields populated. I would
also like to prepopulate the Picture/Video field.
Is there a command line to do the above. If not is there something in MAPI
that i can use.
thanks,
-Larry Tag: Active Viewer Tag: 94959
Using heRapiInit parameter in vb.net: how to use the delegate
Hi,
I am taking vb6 rapi code and converting it to vb.net. I found out I
can't user the addressof operator. I created a delegate type and and
assigned it the address of my function:
Public Delegate Sub ConnectorFunc()
Dim ConnectorDelegate As ConnectorFunc
ConnectorDelegate = AddressOf ConnectedRapi
I then set up rapi and call for a connection:
Try
With pRapiInit
.cbSize = Len(pRapiInit)
.heRapiInit = ConnectorDelegate
.hrRapiInit = 0
End With
hr = CeRapiInitEx(pRapiInit)
'RapiConnect = RapiGetCEOSVersionString() <> ""
RapiConnect = True
Exit Function
Catch ex As Exception
MsgBox("error in rapi is " & ex.Message)
End Try
I seem to get a good return from CeRapiInitEx (the return code is not
less than zero). But when I try to read a file I get a bad return
code:
lngRetVal = DEVICETODESKTOP("c:\AllData.xml", "", False, True,
"\AllData.xml")
The return code is large but I'll include it here for completeness;
maybe it means something to someone:
9222812404764049413
I'm wondering if I have to convert the delegate back to long since
heRapiInit is supposed to be of type long. And if I do, I'm not sure
how (I tried ctype but it didn't work). Any help would be appreciated.
Neil Tag: Active Viewer Tag: 94956
CUSTOM DRAW ToolBar
Hi everyone,
I have a problem and I hope you'll help me.
I want o create a ToolBar with two buttons, which are owner - drawn. I found
that I can set the TBSTYLE_CUSTOMERASE style of the ToolBar, and then handle
the NM_CUSTOMDRAW message. i set the style, and I get only the border line of
buttons, but I do not receive the NM_CUSTOMDRAWN message.
Can You tell me what I'm doing wrong? May be I took the wrong way to achive
my goal.
Thanks in ahead,
MuchaM Tag: Active Viewer Tag: 94952
SMS line feed...?
Hi,
I am trying to add a line feed to a message sent using SmsSendMessage
(p/invoked) in a c# mobile app. I have set the smsdeDataEncoding to GSM so \r
should translate into a line feed but this doesn't happen - it is repleaced
by a blank space when the message is received by another device.
Can anyone help? I have tried as many escape sequences as I can to try and
get this working. Any help is greatly appreciated! Tag: Active Viewer Tag: 94951
Problem with FTP
Hi,
I have a C# FTP class for Pocket PC 2003 which makes some ftp transfert but
I can't connect on specific FTP server, especially "IIS 5.0" and
"TypeSoftFtpServer".
I have no problem with IIS 6.0.
Does someone have an idea of that problem ?
Thanks in advance. Tag: Active Viewer Tag: 94949
Automatic File synchronization
Hi
I want to transfer some of the files which are in the different folders of
pocket pc ,to my desktop PC and vice versa,whenever i connect pocket PC to
DeskTop PC.
How can i define source and destination path in Active Sync to do so.
I have seen Active sync option for the same to define source and destination
but path for the same are not configurable ..i mean path are fixed in
MyDocument.\..
Thanks in advance for replying Tag: Active Viewer Tag: 94947
Development tool for Casio E-125
hi all,
I have a Casio E-125 for years now and I used to develop apps using eVC 3.0.
Now, can I use eVC 4.0 or better, Visual Studio 2003 with the correct SDK ?
Thanks,
Thierry Tag: Active Viewer Tag: 94940
Multiple Installations from the Same PC
This is a multi-part message in MIME format.
------=_NextPart_000_0018_01C5498A.B857BF40
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
Hello All,
I was hoping that someone out there could help me with my problem.
I have written an application that will be getting installed on multiple =
Pocket PC devices. However all of these device will want to be =
installed from the same Desktop PC.
I have created a MSI installation package to make the installation =
process a simple point and click activity however my problem lies in =
installing the application on multiple PocketPC's (Check out =
http://www.codeproject.com/netcf/packaginganddeployingPPC.asp)
Once you have installed the application once you get an entry in the =
'Add/Remove Programs' on the Desktop PC and you are forced by the =
installer to uninstall the application from the Desktop PC before a =
further install of the software can take place on another Pocket PC =
device.
I would like to know how to install the application on multiple Pocket =
PC devices without a reference being made to the installation on the =
Desktop PC.
Any Help is appreciated.
Bill
------=_NextPart_000_0018_01C5498A.B857BF40
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.2604" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY>
<DIV><FONT face=3DTahoma size=3D2>Hello All,</FONT></DIV>
<DIV><FONT face=3DTahoma size=3D2></FONT> </DIV>
<DIV><FONT face=3DTahoma size=3D2>I was hoping that someone out there =
could help me=20
with my problem.</FONT></DIV>
<DIV><FONT face=3DTahoma size=3D2></FONT> </DIV>
<DIV><FONT face=3DTahoma size=3D2>I have written an application that =
will be getting=20
installed on multiple Pocket PC devices. However all of these =
device will=20
want to be installed from the same Desktop PC.</FONT></DIV>
<DIV><FONT face=3DTahoma size=3D2></FONT> </DIV>
<DIV><FONT face=3DTahoma size=3D2>I have created a MSI installation =
package to make=20
the installation process a simple point and click activity however my =
problem=20
lies in installing the application on multiple PocketPC's (Check =
out <A=20
href=3D"http://www.codeproject.com/netcf/packaginganddeployingPPC.asp">ht=
tp://www.codeproject.com/netcf/packaginganddeployingPPC.asp</A>)</FONT></=
DIV>
<DIV><FONT face=3DTahoma size=3D2></FONT> </DIV>
<DIV><FONT face=3DTahoma size=3D2>Once you have installed the =
application once=20
you get an entry in the <STRONG>'Add/Remove Programs'</STRONG> on the =
Desktop PC=20
and you are forced by the installer to uninstall the application from =
the=20
Desktop PC before a further install of the software can take place on =
another=20
Pocket PC device.</FONT></DIV>
<DIV><FONT face=3DTahoma size=3D2></FONT> </DIV>
<DIV><FONT face=3DTahoma size=3D2>I would like to know how to install =
the=20
application on multiple Pocket PC devices without a reference being made =
to the=20
installation on the Desktop PC.</FONT></DIV>
<DIV><FONT face=3DTahoma size=3D2></FONT> </DIV>
<DIV><FONT face=3DTahoma size=3D2>Any Help is appreciated.</FONT></DIV>
<DIV><FONT face=3DTahoma size=3D2></FONT> </DIV>
<DIV><FONT face=3DTahoma size=3D2>Bill</FONT></DIV></BODY></HTML>
------=_NextPart_000_0018_01C5498A.B857BF40-- Tag: Active Viewer Tag: 94939
Menu check mark magically disappears
Hi,
I hope somebody can help me with the following problem.
I simply use CheckMenuItem on a item in the regular main menu
previously created with SHCreateMenuBar. So far so good, that all works
like it is supposed to.
Through another menu item I open a settings dialog. As soon as I leave
this settings dialog, the previously set check mark in the main menu is
gone. Further attempts of calling CheckMenuItem seem to be alright when
I debug them, but the check mark doesn't appear again til I restart the
application.
Any thoughts on that issue ?
Somebody ran into the same problem ?
Regards,
Stefan Tag: Active Viewer Tag: 94937
Tool bar HWND from Command bar HWND
Hello all,
how do i get a HWND of the tool bar, displaying in my command bar, if i have
the HWND of the command bar.
Thanks
Raf Tag: Active Viewer Tag: 94936
problem about power
How to impletement Power function in control panel?
On battery power:
¿ÚTure off device if not used for X mininutes
On external power:
¿ÚTure off device if not used for X minitues
I want to disable ture off device when I application was running.
I changed registry entry
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Power value£¬
power of control panel display that setting changed,but for a moment,
device was turned off. Setting didn't take effect.
How to do???
Thanks in advance.
Plume-Tsee
2005-4-25 Tag: Active Viewer Tag: 94934
Adding bluetooth in based on PPC2003 SE
Hi.
My platform is PDA device based on PPC2003 SE & Xscale.
I wanna add bluetooth function in PPC2003 SE such as iPAQ device(3700).
I have known that PPC2003 SE has bluetooth function already.
but how am I add bluetooth function in PPC Image.
there is no environment variable. My cesysgen.bat has Only fallowing sentence
about bluetooth.
"set SHELLW_BLUETOOTH_MODULES="
if I know someting, I seem to add bluetooth function easily.
Let't me know how to add bluetooth function in PPC2003 SE.
Thanks for reading!
best regards... Tag: Active Viewer Tag: 94930
shortcut to point Netfront to a specific location?
I want to make a shortcut to point Netfront to a specific URL without
requiring the user to change his default browser to Netfront (if he did
that, of course a .url InternetShortcut would work).
I've tried the obvious:
255#"\Program Files\Netfront3\Netfront3.exe"
"file:///Program%20Files/My%20Program/html/index.html"
And Netfront starts all right but ignores the URL and just displays
whatever page was last cached. Tag: Active Viewer Tag: 94927
Problems sending HTTP posts to network using USB.
Hi,
Does anybody know what could be causing the following problems:
I'm sending HTTP POST requests to network from PocketPC that
is connected to USB cradle. This works fine for about 30 minutes
but after that I get exceptions for my sending code. Is this something
that could be caused by ActiveSync or other 3rd party component?
After I disconnect USB connections between PC and PPC software is
working well again.
I'm hoping that if I move to using direct Ethernet connection without
USB I should get rid of this problem anyway? Any suggestions what CF
ethernet card to use?
Regards,
Ville Tag: Active Viewer Tag: 94926
InternetAutodial
I'm getting an unresolved external link during compilation in eVC++ 4.0 when
I use InternetAutodial and InternetAutodialHangup. I'm compiling for Pocket
PC 2003. I've included wininet.h and linked to wininet.lib but still no luck.
Does anyone have any ideas on this one?
mike... Tag: Active Viewer Tag: 94924
VS 2003 requirements - Windows Mobile 2003 2nd Edition
Hi!
I have the following:
Windows XP with SP2
VS .Net 2003
PPC HP iPAQ hx4700 with Mobile 2003 Second Edition v. 4.21.1088
ActiveSync 3.7.1
What is needed to get this working. I'd like to be able to use the VS
environment to develop the application and also to deploy to the PPC device.
I've tried to do this with my current setup but I have only the following
options when trying to deploy from VS 2003:
Pocket PC Device
Windows CE .Net Device
No Windows Mobile 2003 Device! What do I have to do in order to have this
working?
Thanks!!!
/Peter Tag: Active Viewer Tag: 94921
New App Framework
We've just released a prototype of a new application framework that
runs directly from a USB flash drive on PCs, and will soon run on
handhelds. We'd very much appreciate developer feedback...
airWRX is an app framework that turns its host and other nearby PCs
into a multi-screen, web-like work environment. airWRX makes your flash
drive or handheld into a mobile application server, and any available
PCs into your personal workspace.
The framework is lightweight, extensible, and includes full source
code. Our goal is to enable developers to create sophisticated mobile
and collaborative applications that unify PCs and data like no tools
before have.
http://networkimprov.net/airwrx/ Tag: Active Viewer Tag: 94920
CF Type II Microdrive turn on/off
Hi,
Does anyone know how to control the power consumption of a CF Type II
microdrive? (Device is Asus MyPal A716)
Right now, it uses a lot of power when device is on although I'm no using it
constantly
I don't want to take it out because I know I will lose it
thx Tag: Active Viewer Tag: 94919
Use Pocket PC to control PowerPoint presentation, Windows Media Player, Winamp and iTunes
¡§PPC Tablet Remote Control Suite 2.0¡¨ software uses a Pocket PC screen to
emulate one or more "virtual" input devices, such as keyboard, keypad, macro
keys, touchpad and tablet, in order to remotely control a desktop or laptop
PC, or to complement the PC's existing input hardware. Download the free
trial from Handango or PocketGear:
Handango: http://www.handango.com/PlatformProductDetail.jsp?productId=144254
PocketGear: http://www.pocketgear.com/software_detail.asp?id=15882
The Client, deployed on the Pocket PC device, sends pre-defined input
signals to the Server on a host PC through an ActiveSync connection or any
TCP/IP network, wired or wireless. Saved in special layout profiles, the
input signals can include key strokes, key combinations, key sequences, and
mouse behaviors. The Designer can be used to create a new layout profile, or
modify or delete existing profiles. PPC Tablet is designed with the
following user needs in mind:
* Remotely controlling media playback on a PC.
* Remotely controlling a slideshow in a presentation room.
* Using the Pocket PC screen to create and send handwritten signatures or
annotations to a PC application.
* Speeding up repetitive data entry with special user-defined macro keys.
* Speeding up computer operation with customizable application-specific
macro keys or shortcut keys.
* Using a Pocket PC to complement existing input hardware with virtual input
devices, such as a virtual numeric keypad.
PPC Tablet 2.0 is also designed with network security in mind. Upon initial
connection from a Pocket PC device, the Server will prompt the PC user to
accept or reject the connection. Optionally, the Server can authenticate the
Windows user name and password supplied by the Client. If the authentication
is successful, the Server will accept the connection silently. To further
enhance security over TCP/IP networks, all communication between the Server
and Client is encrypted with 512-bit RSA cryptography after a connection is
established. This provides reasonable protection strength for the
communication, while maintaining good application performance.
The software comes with five pre-defined profiles: Default Devices, Tablet
Only, Personal Data, PowerPoint Presentation and Windows Media Player. The
Default Devices profile includes a touchpad, a tablet and a numeric keypad.
The Tablet Only profile includes a single tablet. The Personal Data provides
a set of buttons which users can customize with their own personal
information to speed up repetitive data entry in electronic forms. The
PowerPoint Presentation profile includes a set of pre-defined buttons to
start, stop and navigate through a slide show, as well as a touchpad that
can navigate the pointer or draw on a PowerPoint presentation. The Windows
Media Player profile provides a set of buttons to control media playback and
sound volume in Windows Media Player. All these profiles can be further
extended by the users based on their individual needs.
Addtional profiles, including those for Internet Explorer, Firefox, Winamp,
iTunes and WinTV, can be downloaded from our website:
http://www.aacompserv.com/AACompWeb/PPCTablet/Profiles.aspx
In addition to using pre-defined profiles, users can create their own
profiles with the Designer. The Designer supports the creation, modification
and deletion of software-emulated input components, such as key buttons,
mouse buttons, and navigation areas that can emulate a touchpad or tablet.
The size, location, label and corresponding action of each input component
are all customizable and saved into a specified profile.
PPC Tablet is compatible with all Pocket PC 2003 and Pocket PC 2003 SE
devices (including VGA-capable units), as well as Pocket PC 2002 devices
with .NET Compact Framework installed. For more information on the system
requirements, installation procedure and user instructions, please visit the
following web addresses.
Product Homepage: http://www.amorphous-media.com/ppctablet/whatisit.asp
Installation Guide:
http://www.amorphous-media.com/ppctablet/installationguide.asp
User Manual: http://www.amorphous-media.com/ppctablet/usermanual.asp Tag: Active Viewer Tag: 94918
changing postion of form on pocket pc
i am working on a smart device application which has the need for a
small form to open on the generation of a particular event. the form
should open in the centre of the screen. i have tried changing the
location and size property of the form but it doesn't work. the same
worked for a normal windows application. i am using c#.. any help ??? Tag: Active Viewer Tag: 94910
Bluetooth Serial comm
My program will send and receive serial data over SIR from a Dell X30
pocketpc. When I tried the same program with the comport switched over to
Bluetooth the pocketpc receives the same amount and correct characters sent
from my PC. When it sends characters from the pocket pc (comm.output ) the PC
only receives the first 2 chars of 4 chars sent then comm stops. The port
needs to be closed and reopened, it then repeats with just 2 chars sent. The
same problem occures with a bluetooth to serial adapter connected a DAQ board.
The program is written in a VB like language NSbasic using mscomm control.
Thanks for any help. Tag: Active Viewer Tag: 94908
Compact Framework SP3 + Visual Studio 2003
Hello,
how can I use die features from SP3 (Button.Backcolor...) with my Visual
Studio 2003???
Karsten Baumann Tag: Active Viewer Tag: 94900
Error in Compile
Hi, this is my c++ code:
LPCWSTR *g_Phone[];
EXTERN_C void MyFunction(LPCWSTR aPhone[], int aLength, bool aDelete)
{
g_Phone = &aPhone;
[...cut code...]
}
this is the compile error:
Compiling...
mylibrary.cpp
k:\pocketpc\mylibrary\mylibrary.cpp(994) : error C2440: '=' : cannot convert
from 'const unsigned short ** []' to 'const unsigned short **[] '
There are no conversions to array types, although there are
conversions to references or pointers to arrays
Any clue??
Thanx in advance Tag: Active Viewer Tag: 94893
Constant registry keys or similar to copy protect an application
Hi there,
I would like to write a copy protection linking the application to a similar
pocket pc. How can I read unique data such as serial number of the installed
Windows CE / Windows mobile or - if available - MAC-Nr?
I appreciate your help.
Klaus Tag: Active Viewer Tag: 94890
to choose a connection(GPRS or Wifi) I want
Hi,
So it is really possible to chose one connection ?
Chang'question was:
#1. Is it possible for me to choose a Connection I want? A typical use
case is: the device can dial up GPRS successfully, but once the device
roams into a Wifi hotspot, ConnectionManager will shutdown the GPRS
connection and use the Wifi connection, which happened not properly
configured. In this case, can I revert back to GPRS connection (since
it is actually usable)?
My thought is , it is similar to Win XP it is NOT possible to use dial-up
when LAN connected.
regards Tag: Active Viewer Tag: 94889
Automatic install
The object of discussion is the hardware reset of the pocket!!! It is known
that when do this all the program are deleted from memory.... I'd like to
automatic install my program like word, excel and the others application
that the system restore in automatic mode! Thanks...
Christian Tag: Active Viewer Tag: 94888
Reading SQL Serverdata from Pocket PC..
Hi, I want to read SQL Server data From My Pocket PC on wireless connection
Using VB.Net
Please Guide me for the same. and what all are the settings to be configure
in my Server and PocketPC.
--
Nasrul Saiyed
gre8work@yahoo.com Tag: Active Viewer Tag: 94886
How i can obtain the data of the active viewer via C#.