WIFi connection and availability
I have a HP iPAQ h6365 with Bluetooth, WiFi and GPRS all
built in.
I am developing an application that demands a WiFi
connection established to my WiFi enabled laptop.... can i
use the eVC 4.0 connection manager for programming that.
If yes, how? ..Also how should i go about searching from
a list of active WiFi connections available at that
particular instant. Tag: BlueTooth Service Tag: 95081
How to open the physical block device in CE?
We can use the CreateFile(\\\\.\\G:) to open a physical block device in
Windows, is there a way in CE to open the physical device like that in
Windows?
Thank you very much!
Regards,
ZhangZQ Tag: BlueTooth Service Tag: 95077
Lineinitialize problem in Vb.net, some one can help? How to Initialize TAPI in VB.net?
When i call LineInitialize() in Vb.net in my program,the
NotSupported_Exception always occurs, don't know why.
The callback function is realized through "Delegate"
Declare Function lineInitialize Lib "coredll.dll" ( _
ByVal lphPhoneApp As Int32, _
ByVal hInstance As IntPtr, _
ByVal lpfnCallback As lineCallBack, _
ByVal lpszFriendlyAppName As String, _
ByVal lpdwNumDevs As Int32) As Int32
lineCallBack is a delegate function correctly defined and associated with
its implementation
if i replace the declaration of the line "ByVal lpfnCallback As
lineCallBack," to "ByVal lpfnCallback As intptr" and a intptr.zero is passed
to it as "NULL" for this param, the Function does work but returns a Result
of "Invalid_Pointer"
can someone help? Tag: BlueTooth Service Tag: 95073
CreateProcess, WaitForSingleObjec
Hi,
I am using CreateProcess to launch internet explorer, when the user closes
the internet explore he should again be directed to it again. When I am doing
this and click the x button in the top of internet explore when it is
launched the first time, the application comes to a deadlock and I have to
shut the whole program down. Where am I going wrong.
This is my code snippet
if(CreateProcess(TEXT("\\Windows\\iexplore.exe"),NULL, NULL, NULL, FALSE, 0,
NULL, NULL, &si,&pi))
{
WaitForSingleObject(pi.hProcess, INFINITE);
CloseHandle(pi.hProcess);
CloseHandle(pi.hThread);
CreateProcess(TEXT("\\Windows\\iexplore.exe"),
TEXT("http://www.google.com"), NULL, NULL, FALSE, 0, NULL, NULL, &si1,&pi1);
}
else
{
MessageBox(L"Unexpected Error Cannot Launch Application", TEXT("Error"), 0);
}
Thank you
Khris Tag: BlueTooth Service Tag: 95071
CreateMapFile e LPCWSTR
Hi,
i create call CreateFileMapping and set a pointer to my structure by
MapViewOfFile.
This is my structure:
typedef struct {
int g_Length;
LPCWSTR* g_Array;
} SETTING_BUFFER;
typedef SETTING_BUFFER *PSETTING_BUFFER;
from the same pointer i can read the values stored.
From another function, lauched in a second moment, i call CreateFileMapping
and set another pointer to my structure by MapViewOfFile,
but g_Length is read correctly while g_Array crashs my dll or it's empty.
this is the code which set the structure
g_hCFMObj = CreateFileMapping((HANDLE)-1, NULL, PAGE_READWRITE, 0, 1024,
TEXT("SettingBuffer"));
g_pClientSettingBuffer = (PSETTING_BUFFER)MapViewOfFile(g_hCFMObj,
FILE_MAP_WRITE, 0, 0, 0);
g_pClientSettingBuffer->g_Length = aLength;
g_pClientSettingBuffer->g_Array = (LPCWSTR*)
malloc(aLength*sizeof(LPCWSTR));
for (int n=0; n < g_pClientSettingBuffer->g_Length; n++)
{
g_pClientSettingBuffer->g_Array[n] = aArray[n];
//aArray is declare like: LPCWSTR aArray[]
}
from the other function:
g_hSCFMObj = CreateFileMapping((HANDLE)-1, NULL, PAGE_READWRITE, 0, 1024,
TEXT("SettingBuffer"));
g_pSettingBuffer = (PSETTING_BUFFER)MapViewOfFile(g_hSCFMObj,
FILE_MAP_WRITE, 0, 0, 0);
for(n=0; n < g_pSettingBuffer->g_Length; n++)
{
MessageBox(0, g_pSettingBuffer->g_Array[n], L"Array values",0);
//here crashes or shows empty string!??!
}
i've tried to change my structure like this:
typedef struct {
int g_Length;
WCHAR g_Array[255];
} SETTING_BUFFER;
typedef SETTING_BUFFER *PSETTING_BUFFER;
and i set the values:
lstrcpy(g_pClientSettingBuffer->g_Array, (WCHAR*)aArray[0]);
this works propertly but i can set only a value while i've an array of
strings to store :(
Thanx in advance and sorry but array in c++ aren't my power :(( Tag: BlueTooth Service Tag: 95055
Push and Pull methods
Hi all.
This is a layout of my situation. I want to D/L to my PDA info from the MSDE
server on my desktop. I then would like to take my PDA out in the field, work
on the data, and come back. When back, I want to upload the Data back into
MSDE, delete it from the PDA, and download new, fresh data.
As it is now, I have a host prgm on my PC that fires a pull command on the
PDA. That works hunky-dorey.
I can then work with the data. No problem again.
I then connect back the PDA, and fire the following code:
(Host fires RAPI, the code below is on the PDA)
Dim remoteconnectstring As String = _
"provider=SQLOLEDB;data source=" & mach & ";initial
catalogue=AuxP; " _
& "user id=sa;password=Admin;Integrated Security=SSPI;"
rda.LocalConnectionString = "Data Source = \my
documents\dbvb.sdf;password=apress;"
rda.InternetUrl = "http://" & mach & "/Aux/sscesa20.dll"
rda.InternetLogin = "MANHYDRO\" & usr
rda.InternetPassword = pwd
rda.Push("sfmdauxp", remoteconnectstring,
RdaBatchOption.BatchingOn)
When this last line fires, I get:
"No columns were found.
Either the table name is
missing or the permissions are not valid. [,,,,,,]"
(on the PDA)
Any suggestions? Tag: BlueTooth Service Tag: 95053
Cross platform dev. and WxWidgets
Hello everyone,
WxWidgets is "An open source C++ GUI framework to make cross-platform
programming child's play" (http://www.wxwidgets.org/). It now supports WinCE
(PPC) as well as a wide range of other platforms.
This is the best cross platform framework that I have found which supports
PPC and other embedded devices (like the palm).
Has anyone found any other cross platform frameworks or had any problems
using wxWidgets. It seems a perfectly good solution as far as I can see but
I'm a newbie to all this so any advice will be happily accepted.
Thankyou all,
Jon Tag: BlueTooth Service Tag: 95050
Recommendations for installer program?
Hi,
I wonder if some of you would be good enough to give some recommendations
for a way of having a 'nice' installer. Users of my Pocket PC software are
forever complaining that the installation routine is too complex, so I'd
like to address it on the basis that a bad first impression is not good for
business...
Basically, it needs to do the following for the first installation:
1. Install the basic program components to the PPC (supporting the three
different processor types), and register the controls etc. It's written in
eVB, and a future version will be written in eVC.
2. Connect to a service on our web site, pass some information from the PPC
to the site, then accept another file back (generated on the fly at the
site) and install it on the PPC.
That's about it for the initial installation. As the data file changes I
guess I can write some kind of ActiveSync add-on to periodically check the
web site for changes and download them if required. However the installer is
the main thing I have problems with.
I looked at Wise Installer very briefly. A search on their site for 'pocket
pc' seems to indicate that it's nothing more than a fancy way of creating
the CAB file. I want to customise more than that - not least because the
service on the web site is one that we will write from scratch, not a
standard server.
I have a small VB program, thanks to the guys at devbuzz, which is capable
of copying the file from the users PC, via ActiveSync, onto the Pocket PC.
Would the best way be a more comprehensive version of that program which
also copies the various CAB files and runs them? I couldn't see anything
obvious in the MSDN RAPI documentation that dealt with this part of the
installation cycle, though I can see how to get the file over to the PDA of
course as I already do this.
As I write this, it sounds like the way forward is with VB and the RAPI, but
any comments would be most appreciated.
Mike. Tag: BlueTooth Service Tag: 95049
Hooking\Hacking question for Pocket PC Guru
Hello,
We are interested in adding menu item to all context menus of any
application.
We want to implement this by hooking calls of API functions or messages.
In this connection we have couple questions
1. We have DLL which is loaded into all processes of PocketPC. How we could
set hooks on API functions during loading of my DL, i.e. when DLLMain with
the argument "DLL_PROCESS_ATTACH" is called? Particularly we need a way of
hooking calls of functions from coredll.dll.
2. Is it feasible to get table of imported functions of the current process
on Pocket PC 2003? If so, is it possible to modify it? Also how to get
offset to required function?
Thanks All Tag: BlueTooth Service Tag: 95046
Arabic support in pocketPC applications
Friends,
Would like to know if there are any suggestions to support Arabic on
PocketPC applictions. Any experience/ pointers would be greatly helpful.
regards
Suresh Tag: BlueTooth Service Tag: 95032
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: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service Tag: 95005
Interprocess Communication
Hi,
Is there anyway to perform interprocess communication in windows ce
Thanks in advance,
-Jimmy Tag: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service 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: BlueTooth Service Tag: 94920
I create a ActiveSync via BlueTooth on my PPC, and connect is OK. How can I
start(or trigger) the service in my PPC application(I want to send data via
ActiveSync)?