registry issue
How to get the name of default dialer exe from pockect pc 2003 phone edition
deivce registry??
Best Regards,
Nishant. Tag: OpenGL on Pocket PC devices Tag: 84258
Tab order in dialog?
If I create controls in the OnInitDialog how can I control the tab order of
those controls?
/Magnus Tag: OpenGL on Pocket PC devices Tag: 84256
Backlight on PPC
I have been looking for a way to control the backlight on the PPC. My
application has a long process and the backlght goes off right in the middle
of it. I need to keep the backlight on for the process to complete. I have
identified two solutions:
1) The ideal solution would be to keep the backlight on with a function
call. Is there a DLL that will do this?
2) An alternate method would be to change the setting of the PPC to keep the
backlight always on. Under battery settings there is an otpion that will
always keep the backlight on. I would assume that this is stored in the
registry somewhere. Any ideas on how I can find what registry key it is? I am
thinking of setting the option to keep the backlight on when my application
starts and then resetting it to the previous value when my application
closes. The only draw back is that someone may change the setting while my
app is running - this is why this is the second choice.
Has anyone encountered this problem? Any advice? Thanks for the help. Tag: OpenGL on Pocket PC devices Tag: 84248
How to resize all the controls during runtime
I am using Visual C++ 6.0 and eMmbedded Vvisual C++ 4.0 to develop Windows
and PPC applications.
I knew WS_THICKFRAME can be used to resize the window during the runtime.
Did anybody know how to resize all the controls (like the text and pictures
in a dialog) as well the window during runtime? For example, if the user
drag the border of a window and double its size, I hope all the texts and
pictures at that window are doubled as well to fit the window.
Thanks.
John Tag: OpenGL on Pocket PC devices Tag: 84247
add WEP and renew IP address
hi forum,
I am participated in a project, part of this project will search the Wi-Fi
network and try to connect one of them. I found I am almost at the end of
the project, except this problem: after adding WEP, the PPC can not have
correct IP address (only 169.254.xx.xx).
When I disable WEP, everything is fine. When using WEP, it seems the
connection is fine, except the IP address. I searched the forum, seems it
has something to do with OID_802_3_MULTICAST_LIST. But how to set it? use
DeviceIoControl as I set SSID, or other function? Anybody has similar
experience?
thanks,
Eric Tag: OpenGL on Pocket PC devices Tag: 84235
How to imporve Terminal Services Client screen resolution
How can I improve the Terminal Services Client's screen resolution from
640x480 to 800x600?
There is a study service in my schoool that I can reach with TSC, but it
says, "your resolution 640*480, minimum resolution: 800x600"
Any registry settings or 3th party client that shows a scrollable 800*600
screen? Tag: OpenGL on Pocket PC devices Tag: 84231
How to prohibit specific programs from running?
In PocketPC 2003, how can I prevent users from running a specific program
(e.g., the games)? I heard that there might be a registry setting where you
can specify prohibited programs. If so, I would like to know the pertinent
details.
Thanks,
Rich Tag: OpenGL on Pocket PC devices Tag: 84230
Help: BT audiogate way and analog audio at the same time
I have been using the waveOut/waveIn APIs to send and received audio
from the audio gateway contained in the WIDCOMM BT stack that came with
my iPAQ 5555, this only works when I pair with a head set and open up a
BT COM connection to the device that has the headset. My question is
how do I have both the iPAQ analog audio headphone/headset port enabled
(3.5mm jack) at the same time as the BT audio connection. When ever I
call waveOutGetNumDevs and waveInGetNumDevs they return informing me
there is only one device ID.
Any help would be great! Tag: OpenGL on Pocket PC devices Tag: 84221
Acitvesync
Hi,
This may have been anwered before. I am doing a
presentation on Pocket PC medical software. I want to
use the emulator to show what the software programs look
like from the screen of my laptop. I am unable to get
the emulator to communicate with the Activesync. I have
a lap top compter with no serial ports, so I can not use
the directions listed with the emulator and the null
cable. Is there a way to do this, and if so how. I
apologize but i am a bit of a novice so the more basic
the directions the better. Thanks to anyone that can
help.
scott Tag: OpenGL on Pocket PC devices Tag: 84218
SetForegroundWindow causes Pocket IE to close?
Hello,
I am working on a project where as a result of a user clicking a link on a
webpage served from a mini Java HTTP server we've written, a new window is
opened (an Eclipse SWT java widget). However, when the window is opened,
pocket IE stops completely. The Today screen is behind the java widget.
PIE is no longer on the active task list, and if I run RAPI debug I can see
PIE being unloaded.
The point in the java code where simultaneously PIE dies is a call to an SWT
method which, among other things, does a SetForegroundWindow, which is
apparently a Win32 API.
I am not a Win32 programmer and so cannot directly test this theory, but is
it likely that SetForegroundWindow would kill PIE?
I am running Pocket PC 2003 on a TMobile Pocket PC Phone Edition device.
The JVM is J9, and the SWT version is 2.106 and 3.101. The java code which
seems to cause the PIE task to die is:
------------
public void open () {
checkWidget ();
bringToTop ();
/*
* Feature on WinCE PPC. A new application becomes
* the foreground application only if it has at least
* one visible window before the event loop is started.
* The workaround is to explicitely force the shell to
* be the foreground window.
*/
if (OS.IsWinCE) OS.SetForegroundWindow (handle);
OS.SendMessage (handle, OS.WM_CHANGEUISTATE, OS.UIS_INITIALIZE, 0);
setVisible (true);
/*
* Bug in Windows XP. Despite the fact that an icon has been
* set for a window, the task bar displays the wrong icon the
* first time the window is made visible with ShowWindow() after
* a call to BringToTop(), when a long time elapses between the
* ShowWindow() and the time the event queue is read. The icon
* in the window trimming is correct but the one in the task
* bar does not get updated. The fix is to call PeekMessage()
* with the flag PM_NOREMOVE and PM_QS_SENDMESSAGE to respond
* to a cross thread WM_GETICON.
*
* NOTE: This allows other cross thread messages to be delivered,
* most notably WM_ACTIVATE.
*/
MSG msg = new MSG ();
int flags = OS.PM_NOREMOVE | OS.PM_NOYIELD | OS.PM_QS_SENDMESSAGE;
OS.PeekMessage (msg, 0, 0, 0, flags);
if (!restoreFocus ()) traverseGroup (true);
}
------------
Any ideas, help, pointers or otherwise is appreciated
Thanks,
Joe Tag: OpenGL on Pocket PC devices Tag: 84217
evb garbage collector
garbage collector seems doesn't work properly ... when i close my program, often pda
go very slow ...
i tried set to "nothing" all the xml objects created and emty all the
listctrl but with no result.
there is some tips/tricks/workaround ??
thanks Tag: OpenGL on Pocket PC devices Tag: 84216
EVC TabStop
Hi,
I have designed a Dialog with Edits and combos, and I want to change
TabOrder of my controls.
How can I Do ???
Thanks for help.
CM Tag: OpenGL on Pocket PC devices Tag: 84212
alternative to LockWindowUpdate
Hello,
The filling of a CListCtrlView is long and unsightly, so I would like to
desactivate its drawing before the filling, and reactivate it after. Under
win32, LockWindowUpdate / UnlockWindowUpdate functions are very useful,
unfortunately they haven't been ported to win ce.
Do you know any alternative?
Thank you very much!
--
Thibaud
http://joebarthib.free.fr
http://parseval.free.fr Tag: OpenGL on Pocket PC devices Tag: 84210
Fmod VS gsplayer ?
Hi,
I would like to write a mp3 player and put it on our commerical PDA
(.NET 4.2).
By searching some articles in the newsgroup, I found fmod api and
gsplayer are very good.
Is gsplayer free if I re-write the UI and put it into your product?
How do I contact the relative organization or person if it is not
free?
Why do I buy fmod api if gsplayer is free?
dotNet 4.2 already contains mp3 codec.
Do I still need to pay mp3 license fee if I use gsplayer in .Net 4.2?
Can anyone give me some comments or suggestion ?
Many thanks.
Yu. Tag: OpenGL on Pocket PC devices Tag: 84209
Emulator for PPC 2003 phone edition??
Anyone knows if emulators for PPC 2003 phone edition devices are available??
Best Regards,
Nishant. Tag: OpenGL on Pocket PC devices Tag: 84206
how can I maximice a form permanently
Hi,
how can I maximice a form permanently ?
I use th shfullscreen function but when SO make a message or SD bluetooth
reconnect it appears the start button up from the form.
Thanks in advance Tag: OpenGL on Pocket PC devices Tag: 84204
pictureBox dosn't work ??
Hi,
i want to try to sho a picture in the pictureBox with this code:
pictureBox1.Image = System.Drawing.Image.FromFile("myPic.gif");
But i got a error that "System.Drawing.Image dos not contain a definition for
"FromFile".
Please, how ca i resolve that problem??
Bye
Rainer Borchmann Tag: OpenGL on Pocket PC devices Tag: 84203
Mail box in pocket pc
Hi,
Can any one tell how to access to mail box in pocket pc programatically,
backup and restore. Tag: OpenGL on Pocket PC devices Tag: 84189
copy file to PPC2002/2003 Emulator
Hi...
My App. use files in the storage card and the Program files folder of the
PDA. I would like to test my App in the PPC2002 Emulator.
When I use ppc emulator, there was a emulation folder in my desktop. But I
can't find out that folder in the PPC2002 Emulation folder.
How can I copy my files to emulator?
(I can't find the folder sharing menu on the emulator...) Tag: OpenGL on Pocket PC devices Tag: 84183
MAPI giving wrong delivery time using PR_MESSAGE_DELIVERY_TIME
I'm trying to get the message delivery time using MAPI. I get the FILETIME
using IMAPIMessage::GetProps and the deliver time is always 7 hours ahead?
Seems to me something is messed up with the time zone. Any ideas?
Thanks in advance. Tag: OpenGL on Pocket PC devices Tag: 84181
How to show a Tab Control at the top of the Z order
I am using Visual C++ 6.0 and eMbedded Visual C++ 4.0.
The question seems easy at the first look:
I want to show a Tab Control at the top of a big Bitmap control. However,
after the program runs, only the Bitmap is shown, and the Tab Control cannot
be shown until it is clicked. I tried SetWindowPos() function to set the Tab
Control to the topmost, and ShowWindow() as well, but still no success. I
also modified the Tab Control style to WS_EX_TOPMOST in resource file, but
still no luck (see the following).
Could anybody help me to solve the problem?
John
In resource file, from CONTROL
"Tab1",IDC_TAB_FWS,"SysTabControl32", 0x0,47,71,185,192
to CONTROL
"Tab1",IDC_TAB_FWS,"SysTabControl32", WS_EX_TOPMOST,47,71,185,192
//and
RECT * lpRect = new RECT();
GetDlgItem (IDC_TAB_FWS)->GetWindowRect (lpRect);
GetDlgItem (IDC_TAB_FWS)->SetWindowPos ( &wndTopMost, lpRect->left,
lpRect->top,
lpRect->right - lpRect->left ,
lpRect->bottom - lpRect->top , SWP_SHOWWINDOW );
//or
GetDlgItem (IDC_TAB_FWS)->BringWindowToTop();
//or
GetDlgItem (IDC_TAB_FWS)->ShowWindow ( SW_SHOW); Tag: OpenGL on Pocket PC devices Tag: 84178
ANN: Reminder Smart Device Programming chat tomorrow
Just a note that we'll be hosting an online chat tomorrow concerning Smart
Device Programming with Visual Studio .NET 2003! Members of the development
team will be on hand ready to answer your questions, so bring 'em on!
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Title: Smart Device Programming with Visual Studio .NET 2003
September 9, 2004
10:00 - 11:00 A.M. Pacific time
1:00 - 2:00 P.M. Eastern time
17:00 - 18:00 GMT
Please join the members of the .NET Compact Framework and Visual Studio
product groups in this live chat regarding the .NET Compact Framework and
the Smart Device Programming features of VS.NET. The .NET Compact Framework
brings the world of managed code and XML Web services to smart devices, and
it enables the execution of secure, downloadable applications on devices
such as personal digital assistants (PDAs), mobile phones, and set-top
boxes. Please come prepared to ask the tough questions!
To join this chat, please log on via the main MSDN chat page at:
http://msdn.microsoft.com/chats
--
Thanks!
Michael Fosmire
Community PM/MVP Lead, Windows Embedded
This posting is provided AS IS with no warranties, and confers no rights. Tag: OpenGL on Pocket PC devices Tag: 84177
Deployment from Visual Studio.Net Evaluation Version
Is there some sort of "blocking" feature which does not allow deploying to a
Pocket PC from an Evaluation Version of VS.Net 2003? I've got a test app
that works on the emulator and can't get it to work on the actual device.
I'm going to be mad if that is the case because that is what is holding me
back from buying it! Tag: OpenGL on Pocket PC devices Tag: 84173
rasapi & eVB?
hei
how can connect or disconnect to internet (with gprs) on embedded visual
basic...?
can you send me en example about ras api in eVB.?
thank you
hakan(at)anlamadim.com
--
KhæN
______________________
http://www.anlamadim.com
bilginin paylasildigi adress.... Tag: OpenGL on Pocket PC devices Tag: 84172
Shrinking Icons
I was wondering if anyone had any techniques on how to shrink a 32x32 icon
to a 16x16 icon programmatically.
The problem I'm facing is that I'm displaying an icon from another program
in a sort of file explorer type view and that program only has a 32x32 icon
and my environment calls for a 16x16.
I've tried drawing the icon to an HDC and then doing a stretchblit to
shrink it but the result looks rather horrible.
If anyone has any suggestions I'd appreciate the help.
Thanks! Tag: OpenGL on Pocket PC devices Tag: 84168
Consuming a Web Service in a Pocket PC Emulator
This is a strange error that I came across while calling a webservice from a
Pocket PC. Plz help me out.
The web service is a plain and direct Hello World with return type as String.
The client application - Smart Device Application (VS.NET 2003) uses a
web-reference to reference the web service and uses a proxy to call the same.
The proxy.method() is got in a text box.
While running this on Emulator it says " A manged exception has occurerd"
.. "The Remote Server cannot be located" ...
What's getting wrong now..why is the IIS running on my machine not detected
by Emulator..coz the same example with almost the same line of code works
well for a Windows or Web application, which even handles more complex web
services.
Do any administrative settings need to be changed..plz help me out !!
What is the way I should adopt to consume my Web Service using the Pocket PC
Emulator?? Tag: OpenGL on Pocket PC devices Tag: 84167
EVC reading string in file
Hi,
I want to read strings that are stored in a TextFile..
How can I do ?
I try CArchive.ReadString but I obtain an error ...(the file exist and is
opened correctly.???...)
Does anyone got an Idea ???
Thanks !
Christophe Tag: OpenGL on Pocket PC devices Tag: 84149
Ethernet ActiveSync for 2003 device
I used to know how to connect a Pocket PC device to ActiveSync using
ethernet. They have changed the old method and it no longer works with
my new Pocket PC 2003 device. After establishing a RS232/USB connection
my PC was listed in ActiveSync. With the older versions of ActiveSync,
I would just pick "THE_NAME_OF_MY_PC" instead of "USB", "115200 BAUD",
etc.. and then click sync and it worked. The newer ActiveSync does not
list my computer as a method to connect to. What has changed? I know
the ethernet connection is good as I can use FTP to put files on the
handheld while it is in the cradle. ActiveSync is setup to listen on
USB & Remote/Ethernet ports. What do I need to do to make ethernet
ActiveSync work with a Pocket PC 2003 device? Tag: OpenGL on Pocket PC devices Tag: 84147
Ignoring WM_CLOSE to avoid being shutdown by the system
The goal: an application that keeps running until the user ends it.
It isn't a typical PPC GUI application - it's a HTTP server providing
Pocket Internet Explorer with dynamic pages. The server is running in
the background, and PocketIE is the "active" application.
The system likes sending WM_CLOSE to applications in order to save
resources (although 50M RAM are available and the limitation of 32
processes is far away).
Thus, it is not unexpected that your application window (a dialog that
is most of the time invisible) also receives the WM_CLOSE message.
However, we do not want to close the dialog unless the user intiated the
message.
The dialog code looks like this:
void MyDialog::OnClose()
{
if(userWantsToExit) CDialog::OnClose();
else log("Received MW_CLOSE not intiated by user. Ignoring it.");
}
Unfortunately, I could not verify if this approach is 100% correct
because documentation seems to lack (correct me if I am wrong - I would
be more than happy).
Experiments were successful, but I would sleep better when someone could
confirm that this approach guarantees the application to keep running.
Development platform is PPC2003 and old-school C++.
Thanks,
Markus Tag: OpenGL on Pocket PC devices Tag: 84143
Creating a Progress Bar
I have a dialog based app and I am trying to create a progress bar.
The only problem is that even after just creating it I end up with an
ERROR_ACCESS_DENIED error.
I have tried several different approaches. Making it with a set
resource control for the dialog, making it without one. I have tried
creating it where I create the dialog box, and creating it in the case
statment for a message processing window. Nothing works. I am going
mad. Here is my sample code please tell me what I am doing wrong.
Also if you could please email me the response as well as post it (so
I don't have to wait for the posting) that would be great. The email
address is pelevolcana@hotmail.com
//creates progress bar
g_hWndProgress = CreateWindowEx(0,PROGRESS_CLASS, NULL, WS_CHILD |
WS_BORDER, 5, 100, 50, 20, g_hDlgActive,
(HMENU)IDC_PROGRESS1, g_hInst, NULL);
error=GetLastError();
//sets range of progress bar
SendMessage(g_hWndProgress, PBM_SETRANGE32, (LPARAM)0, (WPARAM)20);
error=GetLastError();
//sets step size for progress bar
result= SendMessage(g_hWndProgress, PBM_SETSTEP, 10, 0L);
error=GetLastError();
//sets position of progress bar
result= SendMessage(g_hWndProgress, PBM_SETPOS, (WPARAM)5 ,0L);
error=GetLastError(); Tag: OpenGL on Pocket PC devices Tag: 84141
connecting form Desktop to Pocket PC, ping fails
hello:)
I'm connected with the cradle.
I use "vxUtil" to resolve ppc's IP. I managed to do that. Than I want
to ping my Desktop machine, but without any success. I also try to
ping my ppc form desktop, also without any success( with IP->time out,
with name->name not found).
Is there anyone who knows how could I manage to do tha following:
1) ping PC->ppc, ppc->PC
2) execute on my desktop such an url:
"xxx.xxx.xxx.xxx:portNR/foo.html" where "xxx.xxx.xxx.xxx" is IP of a
PPC
"portNr" is a port on which MY SERVER runs
"foo.html" local file on the PPC
Anything that will make this IP/ping mystery resolved is more than
welcome
best regards
Simon:) Tag: OpenGL on Pocket PC devices Tag: 84139
lost network, time etc.. settings after cold boot..?
Hi
i lost to all network,gprs, time etc. settings everytime after cold boot..
how can I re register them again aoutomatical?
thank you Tag: OpenGL on Pocket PC devices Tag: 84138
EVC Cstring vs Cfile
Hi,
I Try to write a CString object into a CFile but it don't works good (I want
to put String into a simple Text File)
here is my code
CString Test=("CSTRING");
CFile OutFile;
...
OutFile.Write(Test, Test.GetLength());
With this code I Obtain in my File 'C'#0'S'#0'T'#0'R'
In fact, I obtain half of my caract with car 0 within each caracter..
Any Idea?
Witch method of CFile must I use or Is there any object witch can easely
write CString into a file ??
Thanks For Help :) Tag: OpenGL on Pocket PC devices Tag: 84133
J# and PocketPC
Dear all,
I am quite new to .NET and I have a basic question: Is it possible to write
a J# application for a PocketPC device with .NET Compact Framework?
When I try to create a new J# Project (using Visual Studio .NET) I can't see
the Smart Device Application template as for a C# Project. Do I need
something additional with respect to the SDK for Smart Device?
Thanks in advance for your help and bye
Giovanni Tag: OpenGL on Pocket PC devices Tag: 84131
Ipaq with built in wifi : is there a library for the wifi (scan environment with signal strength)?
hi all,
I am trying to do an application that scan the wifi environment and gave the
list of all wifi network (infrastructure and adHoc) with the signal
strength.
I do that with the NDIS 5.1 specifications and it works fine on a dell x3i
but not on a dell x30. I want to try it on a ipaq but maybe hp already
profides classes (in C# ?) that can do that easilly.
do you know anything about that or do you know wich pda is NDIS 5.1
compatible. Tag: OpenGL on Pocket PC devices Tag: 84120
Whats the right Development tool?
I have not much to go on in terms of documentation for my new project.
All I know is that the previous dev. recommends using MFC for Windows CE.
However the project files have extensions suxh as *.vcp, *.vcw etc . Does
this indicate that embedded visual c++ was used?
The target platform to build for is Jornada Handheld PC 2000 having a
StrongARM processor
--
Thanks,
nec_query Tag: OpenGL on Pocket PC devices Tag: 84117
Access PPC web server from desktop?
Our product is basically a web server running on PPC. In order to do
some stress testing, we would like to use tools available on Win32.
Thus, we need to talk IP to the PPC from the desktop PC.
How do we that?
Thanks,
Markus Tag: OpenGL on Pocket PC devices Tag: 84116
How do I integrate with PIE (Pocket Internet Explorer)
Hi,
I have seen some applications that add certain options to PIE - do they
actually integrate with it, or do they embed it inside themselves and
mascarade as PIE in the start menu? Anyone has any idea?
I would like to add the "copy shortcut" context menu item to the links.
s Tag: OpenGL on Pocket PC devices Tag: 84113
How to control the camera in Pocket PC 2003?
Hi,
I need to write an application which is need to control the built in
camera of the PDA. The PDA is running Pocket PC 2003. Do anyone know
what SDK I need to control the camera? What function should I use? Can
anyone help me?
Thanks!! Tag: OpenGL on Pocket PC devices Tag: 84112
How to copy files to the Emulator, maybe Ginny can help
hi,
I am working with Visual Studio7 and Windows Mobile 2003SE
I have installed the WM-SDK and a Emulator for WM2003SE.
My app works very simple; Throu a textBox i can input a path
for a picture. This picture i will show in a picturebox.
So far so good, this programm will work fine.
But how can i copy some pictures in a specified Folder
on the emulator ?
thank you, and sorry for my poor english.
Rainer Borchmann
www.Devgroup-Ruhrpott.Net Tag: OpenGL on Pocket PC devices Tag: 84111
evc3 dialog init
Hello
I am newbie in evc3 developement;
I succeed to create application and CDialog classes; but I didn't succeed to
initialise UI (ie to set default text into EditBox ) on CDialog Create.
I try to implement OnCreate or WM_SHOWWINDOW
Does anyone have an idea or a sample to give me ??
Thanks for Help Tag: OpenGL on Pocket PC devices Tag: 84110
Suppressing popup events like "Low Battery"
I've got little problem here.
I'm in Fullscreen mode with no "x"-button. There is only way to exit the
application is tap the screen and
then tap certain menu item (which is just a picture - no hWnd associated).
Effectively application has got just ONE fullscreen winow.
Problem is system messages like "Low battery", "Active Sync" and others...
They getting me out of Focus. Effectively it means I'm still seeing my
Full-screen window, but it is not accepting any WM_LBUTTON nor others
messages of the same category.
Much worse that there is no way to close "the bugger" because it's hidden by
my "dead" window at the moment.
Any suggestions ?
Thanks in advance!
Gnum Tag: OpenGL on Pocket PC devices Tag: 84091
RTTI and dynamic_cast on PPC 2003 SDK
I am using eVC++ 4.0 and "Pocket PC 2003" SDK
I am having some trouble with some of the std:: calls using exception
and RTTI causing problems such as these:
error LNK2001: unresolved external symbol "public: __cdecl
std::exception::exception(class exception <snip>
error LNK2001: unresolved external symbol "const
type_info::`vftable'" (??_7type_info@@6B@)
Ok that's fair enough. However I also have several places with
dynamic_cast it does not complain. I am wondering why that is? I did
not wrote those code nor I am familiar with dynamic_cast. But is it
because those particular usage of dynamic_cast did not invoke the use
of RTTI?
For example here is one of the line of code that involves dynamic_cast
TInKeyImp* keyImp = dynamic_cast<TInKeyImp*>(key);
Thanks in advance. Tag: OpenGL on Pocket PC devices Tag: 84084
How to close a ppc app from desktop via RAPI?
Hello - I have a desktop sync app that I'm writing to provide db sync
services for a companion ppc app. The sync portion of the app (Jet/PDBs)
works fine. I am trying to piece together the RAPI calls to make from the
desktop app to determine if the ppc app is running at the time the user
requests a sync, and closes the ppc app if it is running. I need to do this
to flush and close the PDBs before attempting a sync.
I'm guessing I need to query the PDA to get a process handle (if it's
running) and teminate the process via the handle. I've poured over the ce
docs, but just can't seem to find what I need.
Can anyone offer the functions and declares to do this. Source is VB6.
Thanks in advance,
Steve Tag: OpenGL on Pocket PC devices Tag: 84078
Sync with desktop app
Hi
We have an app with access db backend which is used to enter daily orders.
Is it possible to upload these orders daily to a windows mobile 2003 device
(we are using xda http://www.my-xda.com/), to allow each client to sign
their order on delivery on the wm2003 device and then download all accepted
orders back to the desktop app? What I am not sure is how to upload/download
data from desktop (or server) to the wm2003 device and how to detect and
record client signature.
The xda's connect to individual PCs through usb and also connect to the
windows 2003 server uisng gprs.
Thanks
Regards Tag: OpenGL on Pocket PC devices Tag: 84073
Invoking a desktop application from Pocket PC
Hello All
I have found information on invoking a pocket PC application from the
desktop(RAPI).
However, I would like to invoke a desktop application from my connected
pocket PC device.
Any help would be appreciated.
-Jon
Raytheon Systems Company Tag: OpenGL on Pocket PC devices Tag: 84070
handwriting recognition
Anybody did some prototyping using the MS handwriting libraries? I'm looking
for simple C++ examples using the available APIs.
Ivo Tag: OpenGL on Pocket PC devices Tag: 84069
ANN: Reminder: Whidbey Native Code Development for Devices Chat tomorrow
September 8, 2004
12:00 - 1:00 P.M. Pacific time
3:00 - 4:00 P.M. Eastern time
19:00 - 20:00 GMT
Whidbey Native Code Development for Devices!
The next version of Visual Studio, codenamed Whidbey, will expose Native
Code Development for Devices from the Visual Studio design environment.
There are some key benefits to native device developers migrating from
eMbedded Visual C++ to Visual Studio Whidbey. Come and chat with the Visual
Studio for Devices native team to find out more.
Hope to see you there:
http://msdn.microsoft.com/chats
--
Thanks!
Michael Fosmire
MVP Lead, Windows Embedded/.NET Compact Framework
This posting is provided AS IS with no warranties, and confers no rights. Tag: OpenGL on Pocket PC devices Tag: 84068
What's the state of play then?. Are there any Pocket PCs available with
OpenGL libraries?.
"Dave Moore" <dave.m.moore@baesystems.com> wrote in message
news:41417574_1@baen1673807.greenlnk.net...
> What's the state of play then?. Are there any Pocket PCs available with
> OpenGL libraries?.
>
> Thanks Dave
>
>
>