Why 'dwCallbackInstance' is always 0 when lineCallbackFunc is call
Hi,
I passed the correct hInstance argument when calls lineInitialize(), but
when the lineCallbackFunc is called, I found (by debuger's watch) the
'dwCallbackInstance' is always set to 0. Device and emulator have the same
problem.
(Windows mobile 2003 SE, Pocket PC)
Can anybody give me a hint? Thanks! Tag: samples to bluetooth discovery/connect? Tag: 111510
ContactCollection.Find - searching via multiple properties
Hi,
Is there a way to search the ContactCollection by say FirstName,
LastName and PhoneNumber? it seems the Find method takes a
PropertyDescriptor which means you can only search via one property it
seems...unless i am missing something.
OutlookSession ol = new OutlookSession();
ContactCollection col = ol.Contacts.Items;
PropertyDescriptor prop =
TypeDescriptor.GetProperties(GetType(Contact)).Item("LastName");
int id = col.Find(prop, "Smith");
What happens if you have 5 "Smiths" in your contact? How can i specify
a more refined search here by searching by more than one property. Tag: samples to bluetooth discovery/connect? Tag: 111505
Help with my Outlook Email Setup on Windows Mobile 5.0
I need some help setting up email on my handheld devide to efficiently sync
with Outlook on my Laptop.
In Outlook on my PC I have multiple Gmail accounts setup. Emails from these
accounts come into the same Inbox folder (within the same Outlook Data File,
of course). Whenever I respond to an email, the reponse is sent from the
Gmail account that the email was originally sent to.
Is there any way to emulate this on my handheld?
I have no problem synching the Outlook Inbox on the handheld. However, to
check email while on the road, I have to setup each Gmail account separately.
The emails are downloaded into separate inboxes within their respective
account folders.
Because of this any reading/responding/deleting of emails I do on the phone
does not sync to Outlook on my PC.
This sux because I have to maintain the separate POP accounts on the
handheld as well as my Outlook Inbox.
Does anybody else have a similiar PC setup to mine that can offer any
insight or suggestions. They'd be greatly appreciated.
Even though I don't know much about them, I have a feeling that an exchange
server (or possibly Cingular Xpress Mail) may be the only solution for my
problem.
THanks in advanced for any help! Tag: samples to bluetooth discovery/connect? Tag: 111501
hp4700 display
Hi,
I recently upgraded my hp4700 from the 2003 OS to the new Windows Mobile 5.0
version. Now our Pocket PC application (NETCF 2.0 App) is displayed much
smaller on the screen. (As if it was a Smart Phone.). All the controls on
the forms are squezzed. If I load my application on a pre-loaded hp unit
with Win 5.0 OS, it looks fine.
This happens even when i deploy the application using VS2005 IDE.
What would cause it to display smaller on the screen?
Please help.
Thanks Tag: samples to bluetooth discovery/connect? Tag: 111499
Notifications
Is there any example of visual basic or c# how to inspect
all the notifications;Thanks in advance Tag: samples to bluetooth discovery/connect? Tag: 111494
Getting data from device to web
I am using visual studio 2005 c#.
Any sample code to get jpegs from a device to the web.
Any help appreciated.
SteveW Tag: samples to bluetooth discovery/connect? Tag: 111493
Notification queue
Is there any example of visual basic or c# how to inspect
all the notifications;Thanks in advance Tag: samples to bluetooth discovery/connect? Tag: 111492
SMS Reception date
Hi,
Iâ??m developing a backup/restore application for SMS. Iâ??ve it almost done
except one thing, when I restore an SMS Iâ??m not being able to restore the
original reception date, this is, I set the reception date to the one I want
but it has no effect as the SMS is inserted with the actual date of the
device. Does anyone have any idea how to solve this issue? I will be very
thankful with an answer.
Best regards,
Ernesto Silva Tag: samples to bluetooth discovery/connect? Tag: 111490
Disable soft key?
Hi,
Is it possible to disable either the left soft key button or the right (a
menu) on a Pocket PC with WM 5?
I have seen the SHEnableSoftkey function but I havn't got it to work.
Should it work?
I have used the SHFindMenuBar to get the inparam to SHEnableSoftkey.
And the inparam to SHFindMenuBar was to ANOTHER application than my own. OK? Tag: samples to bluetooth discovery/connect? Tag: 111487
Threads inside services.exe
I am working on a project that has thousands of Windows CE 4.2 devices
in production. All devices are leveraging the Microsoft SMS Client for
CE--it runs as a service (through services.exe). I am 99.9% sure that
a particular thread inside of DMTMGT.dll (again, which runs within the
process space of services.exe) is hanging and thrashing the processor.
I can see the thread in Kernel Tracker and even Entrek's ProcMan. But
what I can't do is definitively trace this particular thread to the
SMS service DLL. Is there any tool that would allow me to determine a
thread's parent service DLL (in other words, show that my particular
thread is owned by DMTMGT.dll)? Or is my only solution to delete the
SMS service and watch that service not run?
Thanks for any insight you all can provide. Tag: samples to bluetooth discovery/connect? Tag: 111484
WLAN on and off
Hi! Good Day!
I was just wondering if anyone knows how to enable and disable the
wlan on a pocket pc programmatically in C#. I would really appreciate any
help at all. I really need this coz this is the only part i need for my
thesis. Any help would be greatly appreciated. Thank you so so so much in
advance! Source Code in C# would be appreciated so much! Thanks again!
stan Tag: samples to bluetooth discovery/connect? Tag: 111477
Using PC keyboard to enter text in PPC
hi,
i know there are applications like PPC controller to connect to your PPC or
smartphone and use your keyboard to enter some text.. but i would like to
program on my own.
will appreciate if someone can let me know how it is possible. what kind of
api do i need to use? etc.
regards,
rnv Tag: samples to bluetooth discovery/connect? Tag: 111475
Htmlctrl navigate problem
I've used the htmlctrl with the CDialog class "STHtmlDialog". I can't use
DTM_NAVIGATE. It simply won't work. And that's really very important.
::SendMessage(m_hwndHtml, DTM_NAVIGATE, 0, (LPARAM)(LPCTSTR)strHref)
gives error code 87
I've tried to do something else: read the link from a file and then use
SetHtml to put it on the dialog. That won't work either.
CStdioFile file;
CFileException fileException;
CString strLine;
CString sData;
if(!file.Open(strHref, CFile::modeRead | CFile::typeText |
CFile::shareDenyWrite, &fileException))
{
CString sError = _T("");
switch(fileException.m_cause)
{
case CFileException::accessDenied: sError = _T("access denied"); break;
case CFileException::badPath: sError = _T("bad path"); break;
case CFileException::badSeek: sError = _T("bad seek"); break;
case CFileException::directoryFull: sError = _T("dir full"); break;
case CFileException::diskFull: sError = _T("disk full"); break;
case CFileException::endOfFile: sError = _T("end of file"); break;
case CFileException::fileNotFound: sError = _T("file not found"); break;
case CFileException::genericException: sError = _T("generic error"); break;
case CFileException::hardIO: sError = _T("hardware error"); break;
case CFileException::invalidFile: sError = _T("invalid file"); break;
case CFileException::lockViolation: sError = _T("lock violation"); break;
case CFileException::none: sError = _T("none"); break;
case CFileException::removeCurrentDir: sError = _T("dir remove"); break;
case CFileException::sharingViolation: sError = _T("sharing
violatio");break;
case CFileException::tooManyOpenFiles: sError = _T("too many open"); break;
}
AfxMessageBox(sError);
}
else
{
AfxMessageBox(_T("ok"));
while(file.ReadString(strLine))
{
sData += strLine;
}
file.Close();
}
"ok" pops up. But after that I get "The parameter is incorrect". Tag: samples to bluetooth discovery/connect? Tag: 111474
Problem - How can I disable WM 5.0 Flight Mode ??
I have some WM5.0 devices out with clients. Problem is from time to time the
battery goes low and flight mode kicks in. If they then recharge the device
flight mode is still disabled preventing them from syncing over GPRS back to
my server.
What I need to do is either a) disable the ability for the device to go into
Flight Mode or b) if it is in Flight Mode detect this and switch Flight Mode
off in my app. I'm developing using CF2.0 but haven't come across any managed
API's. Anyone got any ideas?? Tag: samples to bluetooth discovery/connect? Tag: 111472
debug build of EVC 4.0 application for windows mobile 5.0 platform
I want to create debug build of EVC 4.0 application for windows mobile
5.0 platform. If it is possible, then what are necessary changes
required in project workspace and project setting ? Tag: samples to bluetooth discovery/connect? Tag: 111466
please help could not add reference to project
Hi all,
Cab anybody tell me how can we add refrence to dll in my
project which i have developed in visaul c++ 2005. When i right click
and go to reference..i add path but when i click add reference no
option comes..i m not able to add reference to project..
i want to add Microsoft.WindowsMobile.PocketOutlook namespace which i
want to use.The
Microsoft.WindowsMobile.PocketOutlook is a dll..but how can i add it..
please help ..will be grateful to u all
regards
kapil kaushik Tag: samples to bluetooth discovery/connect? Tag: 111465
iPaq Camera SDK.. PLEASE!
Can anyone perhaps shed some light on the function prototypes of
hpcamapi.dll ?
I have a PPC 2003 OS on an iPaq h6315
was able to obtain the exports and generate the lib.. but I dont have the
header files and i dont have $300 to pay for the stupid ipaq SDK just to get
the function prototypes..
if anyone can help i would be forever greatfull!!
got the opencam and getcameraname to work..
I need the prototypes for:
hpCamCaptureGetBGR24
hpCamCaptureGetBayer
hpCamCaptureGetMode
hpCamCaptureGetModeInfo
hpCamCaptureSetMode
hpCamClose
hpCamGetCameraInfo
hpCamGetCameraName
hpCamGetExposureValue
hpCamGetSupport
hpCamGetVersion
hpCamGetWhiteBalance
hpCamGetWhiteBalanceSupport
hpCamGetZoom
hpCamGetZoomInfo
hpCamOpen
hpCamPreviewGetBGR16
hpCamPreviewGetBGR24
hpCamPreviewGetMode
hpCamPreviewGetModeInfo
hpCamPreviewSetMode
hpCamPreviewStart
hpCamPreviewStop
hpCamResetSettings
hpCamSetExposureValue
hpCamSetWhiteBalance
hpCamSetZoom Tag: samples to bluetooth discovery/connect? Tag: 111463
Power Management in WM5
Hi,
I have read the following articles on power management in WM5 :
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wceddk5/html/wce50lrfcedevicepowerstate.asp
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wceddk5/html/wce50grfPowerManagementReference.asp
http://blogs.msdn.com/windowsmobile/archive/2005/08/01/446240.aspx
and I'm still having some trouble with it :
I'm porting a driver from WM 2003, and when trying it, my driver receive
the query for the D0 and D4 power states.
But it never receives anything asking for D3 power states.
I configure my registry keys as following :
[HKLM\System\CurrentControlSet\Control\Power\Timeouts\]
BattSuspendTimeout=dword:60
BattResumingSuspendTimeout=dword:60
BattUserIdle=dword:60
Did I forgot something ? Tag: samples to bluetooth discovery/connect? Tag: 111461
is there shellexecute has any advantage over create process for invoking an exe from one exe
hi,
I found that sometimes Shellexecute info fails when used in WM5.0
pocket pc
for invoking a differnt exe from one exe , so i used Create process
to achieve that in WM5.0
But i fear is there any disadvantage in using create process instead
of shell execute
Please help me out if u have any idea in this regard Tag: samples to bluetooth discovery/connect? Tag: 111460
Standalone Device Emulator
Hi,
I wonder if someone have information if the function to test push mail is
disabled in the emulator! I can't get it to work and I heard that this
funtion is not enabled but you can do a registry fix to get it working!
Björn Tag: samples to bluetooth discovery/connect? Tag: 111459
Directshow for camera failed
Hi,
I try the sample code from SDK for rendering a video stream directly,
but it failed at pPropertyBag->Load.
//
// Create and initialize the video capture filter
//
CHK( m_pVideoCaptureFilter.CoCreateInstance( CLSID_VideoCapture ));
CHK( m_pVideoCaptureFilter.QueryInterface( &pPropertyBag ));
// We are loading the driver CAM1 in the video capture filter.
CHK( GetFirstCameraDriver( wzDeviceName ));
varCamName = wzDeviceName; //The wzDeviceName is "CAM1:" in my case
if( varCamName.vt != VT_BSTR )
{
ERR( E_OUTOFMEMORY );
}
CHK( PropBag.Write( L"VCapName", &varCamName ));
CHK( pPropertyBag->Load( &PropBag, NULL ));
My PPC is ETEN M600. The HRESULT is 0x80040244.
If anyone knows what's wrong with my case? Tag: samples to bluetooth discovery/connect? Tag: 111457
How can I change PDA's DisplayOrientation in VS2005 for Mobile 5.0
Use function
ChangeDisplaySettingsEx
can work on PocketPC 2003, but it can not work on Moblile 5.0.
Have another way to change PDA's Oratient on Mobile 5.0? Tag: samples to bluetooth discovery/connect? Tag: 111455
autostart iexplorer when system boots after hard reset
Hi
I'm trying to be able to autostart iexplorer. i put the shortcut in the
windows startup folder but it disappears after a hard reset is performed. Can
i get it to remain?
thanks Tag: samples to bluetooth discovery/connect? Tag: 111453
check and show newer version with every visit to page
hi
can the above be done using pocket internet explorer? example would be the
settings for the desktop internet explorer. Internet Options->under temp
internet files->settings
thanks Tag: samples to bluetooth discovery/connect? Tag: 111452
Install dll into services.exe in Windows Mobile 5.0 PPC Emulator
Hi
I want to install a dll into services.exe. I use the sample TSInst.exe
and TickSrv.dll from "Programming Microsoft Windows CE .Net" to configure
the registry under the HKEY_LOCAL_MACHINE\Services and reboot the O.S. to
install the dll into services.exe in PPC 2003 Emulator and demonstrate that.
Now I download the TSInst.exe and TickSrv.dll in \Windows folder in
Windows Mobile 5.0 PPC Emulator. To execute the TSInst.exe and reboot the
O.S., I find the registry for TickSrv.dll configured under the
HKEY_LOCAL_MACHINE\Services but the TickSrv.dll could not beInstalled dll
into services.exe.
What settings are necessary for dll in visual studio 2005 or what is
necessary to do for the example??
Any suggestions will be helpful.
Thanks,
Carl Tag: samples to bluetooth discovery/connect? Tag: 111449
Bluetooth Discovery
Hi,
I have Pocket pc from Dell AXIM X51,
When I try to connecto to my printer (using IOGEAR Bluetooth USB/Paralell
Printer Adapter)
My dell showme the Bluetooth Combo printer adapter, but When I try to
connect, ask me for password (help say, let password blank if no password is
requeried).
I let password in blank but i Can't connect to printer adapter, i get an
error, and dell AXIM Bluetooth configuration ask me again or the password.
I have iPaq (HP) rx-3115 working with no problem, but, configuration utility
from iPaq let me connect with no secure way, so never ask me for password,
Any idea? Tag: samples to bluetooth discovery/connect? Tag: 111448
Checking for ActiveSync during Setup
I'm in the final stages of building an application that will have a WinForms
component and a Pocket PC component. In the Setup file I want to check for
the presence of ActiveSync on the Desktop and if not present, install a copy.
What's the correct thing to check for to make this decision?
A second question I have is that I'm strongly considering installing
ActiveSync 3.8 as a basic version that will work on a variety of machines.
If anyone thinks this is a bad idea then I'd like to know why.
--
Robert W.
Vancouver, BC
www.mwtech.com Tag: samples to bluetooth discovery/connect? Tag: 111447
HP Mobile Printting SDK
Can I send to me HP Mobile Printting SDK?
My email ramica@inicia.es
Thanks Tag: samples to bluetooth discovery/connect? Tag: 111446
Hardware keypress preceded by Windows key press
Is this simply my device...
i have noticed that hardware key presses are often preceded by a
windows (vk 91) key press.
Anyone else notice this? this makes it a bit diffficult to handle
these hardware keys, as i am not sure how to handle these key presses
without making the start menu pop up (which happens when a WM_KEYDOWN
is sent with vk code 91). This is because if i press a hardware key
such as the calendar key, 91 is sent first, then 195. i can cancel the
195 if needed, but by that time 91 has been processed. i need a way to
disable them both it seems... Tag: samples to bluetooth discovery/connect? Tag: 111445
IRDA - Passing POOM Items over IRDA
Hi All
I am using Windows mobile 5.0 for developing a pocket pc application ,Here i
am facing a problem for sending POOM items over IRDA. By using eVB and eVC ,
it was possible, but it is not possible in VS2005 .net compact framework
using VB.net.. So Do u have any idea for solving this........
Thanks in advance
sathish@enventureonline.com Tag: samples to bluetooth discovery/connect? Tag: 111439
label property BackColor
In the constructor, VS defines the foreground and background for my label as...
this.label5.BackColor = System.Drawing.SystemColors.ControlText;
this.label5.ForeColor = System.Drawing.SystemColors.GrayText;
but I need the background to be transparent. So I changed the BackColor to...
this.label5.BackColor = System.Drawing.Color.Transparent;
This doesn't work! I tried...
this.label5.BackColor = System.Drawing.Color.Tomato;
just to see if I could use Color.xxxx and it worked that way, just not with
the transparent property. In the property window in VS, it won't even let me
choose the Transparent property but I have read threads of people using it.
My application is for a mobile device, is this feature not available? Tag: samples to bluetooth discovery/connect? Tag: 111433
Today plugin
A couple of days ago, I came across an article on MSDN that had some
sample code for a today plugin. Can I find it again? No, Sir! Can
anyone point me at the article again please? IIRC it was (to my
surprise) managed code - I'd prefer native code (generally use win32 on
mobile devices) but I'm really not that bothered either way. :-)
TIA
Mark Tag: samples to bluetooth discovery/connect? Tag: 111432
How to get text of the SMS delivery receipt on WM2003
http://groups.google.com/group/microsoft.public.pocketpc.developer/browse_thread/thread/5fcc813bf4a56c96/b9136561f0a1ed83?lnk=st&q=REPORT.IPM.Note.DR&rnum=8&hl=zh-CN#b9136561f0a1ed83
I found this thread. But it doesn't tell a way of getting the text. Tag: samples to bluetooth discovery/connect? Tag: 111430
bluetooth monitor / tx rx test app ?
Scenerio: writing a bluetooth app on the desktop to
connect to a bluetooth device, since i dont have the
actual device.... is there any sort of Pocket PC bluetooth
testing app out there ....basically having the Pocket PC
act a bluetooth server and have the desktop / laptop connect
to it ...see raw data received by the PPC and send raw
data back. ..thanks Tag: samples to bluetooth discovery/connect? Tag: 111428
Pocket PC 2002 development with VB.NET 2003
I have VS.NET 2003 and a Pocket 2002 PC. I would like to get into
developing for this device. Does any one have any recommendations
on tutorials, books and/or other training material?
Also, I heard that VS 2005 can't be used for Pocket 2002 development,
is this correct?
Thank you, your help is much appreciated.
Saga Tag: samples to bluetooth discovery/connect? Tag: 111427
Error 87 when CeSeekDatabaseEx with CEDB_SEEK_CEOID
Hi All,
a few days ago I asked why I was getting the ERROR 87 when writing a EDB
record with a empty FILETIME field and get back that was 'ommited from the
docs'.
Now I´m having a similar problem with the CeSeekDatabaseEx funcion,
especially when used with the CEDB_SEEK_CEOID flag, in the documentation,
MSDN says that isn´t necessary to open the database with a sort order when
seeking with this flag, but if I do this, get the ERROR 87
(INVALID_PARAMETER).
The function only works (find a record sucessfully) when I open the database
specifing with sort order.
Did you have known that the documentation maybe wrong?
In the documentation is:
---
The ERROR_INVALID_PARAMETER may be returned in the following situations:
x. The database was opened without a specified sort order, and dwSeekType is
a value other than the following:
CEDB_SEEK_CEOID
CEDB_SEEK_BEGINNING
CEDB_SEEK_CURRENT
CEDB_SEEK_END.
All other seek types require the use of a sort order.
---
link:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wcedata5/html/wce50lrfCeSeekDatabaseExEDB.asp
Thanx in advance,
Thiago Tag: samples to bluetooth discovery/connect? Tag: 111424
Another data related question.
Right, having had all sorts of problems with VS 2003 (VB) and Windows Mobile
2003se we've decided to purchase VS2005.
Part of the problem leading to this descition has been the ADOCE component
from In The Hand, they are not planning to develop a version for CF2.
So, we're upgrading to VS 2005 to get around some of the deployment issues
but we're still going to be in more or less the same place, we won't have
any database access.
I really don't want to go down the route of Mobile SQL yet, from searching
the web it looks as though we need to go with EDB. I can't find any useful
information about EDB or programming practices, can anyone suggest a good
source of information?
I will need to send data from the Host (Access Database) to the portable,
getting data back isn't so much of a problem as I'll be using a text file
for this. Will I need to send a text file from the host and import on the
portable, or can I send an Access database and have it converted? Is this
functionality within Active Sync 4?
Any help with EDB would be very welcome.
Cheers,
Tull. Tag: samples to bluetooth discovery/connect? Tag: 111423
Resources for the newer technologies..
(it was suggested I reposted this here)
Howdy...
Our school is looking at getting in using mobile devices and developing
applications for them. We've chosen platforms that are pretty new and I can't
seem to find any good resources for them but this could partitially be
because I don't know what I'm looking for. We currently have a development
team who is versed in VS 2003, sql 2000, and .net 1.0.
For this mobile environent ...
We are going all Windows Mobile 5 devices.
We are using Windows SQL 2005 Mobile
We are using Windows SQL 2005
We are using Visual Studio 2005
We are using 2.0 .net framework
Basically the goal is to have the top technologies allow us to write
applications, put them on mobile devices which will then have the ability to
use sql 2005 data as seen fit for the app.
Any training and / or books that are usful for the above technologies that
any would have insight on would be great.
Also integration issues with what we are doing now and what we want to do
with the mobile stuff isn't really in the scope of this question. I just
wanted to show that there is expertise here, just not in the new stuff.
Thanks for any help you can provide.
~mikey~ Tag: samples to bluetooth discovery/connect? Tag: 111420
Password Control
Is there a password control available for WM5?
I want a text box that hides the password entered and stops copying.
Many Thanks. Tag: samples to bluetooth discovery/connect? Tag: 111417
Best way for 2 Diffgram in same dataset.
Using Pocket PC with VS2003 SP1 / .Net CF 1.0 SP3
I have a serie of files with represent a schema and xml data file for all my
tables on PPC.
On PPC, I plan to have forms to update some of the tables and save it back
as a diffgram to push to Host SQL Server later.
The problem arise when i need to have a datarelation for 2 tables (which are
diifgram).
How can i read 2 different pair of schema and data in the same dataset so i
can add data relations to the dataset?
Right now, since i cannot add a table that belongs to a different dataset to
another one, i "copy" the data table into a new dataset. This is my code:
//Read 1st table in ds2.
xtrData = new XmlTextReader(xsdPath);
ds1.ReadXmlSchema(xtrData);
ds1.ReadXml(xmlPath);
xtrData.Close();
//Read 2nd table in ds2.
xtrData = new XmlTextReader(xsdPath);
ds2.ReadXmlSchema(xtrData);
ds2.ReadXml(xmlPath);
xtrData.Close();
//Copy ds1 and ds2 table in new dataset.
DataSet dsNew = new DataSet();
DataTable dtCopy1 = ds1.Tables[0].Clone();
DataTable dtCopy2 = ds2.Tables[1].Clone();
foreach(DataRow r in ds1.Tables[0].Rows)
{
DataRow rowCopy = dtCopy1.NewRow();
rowCopy.ItemArray = r.ItemArray;
dtCopy1.Rows.Add(rowCopy);
}
dsNew.Tables.Add(dtCopy1);
foreach(DataRow r in ds2.Tables[0].Rows)
{
DataRow rowCopy = dtCopy2.NewRow();
rowCopy.ItemArray = r.ItemArray;
dtCopy2.Rows.Add(rowCopy);
}
dsNew.Tables.Add(dtCopy2);
//Now I have 2 tables each based on a diffgram. But original rowstate is
change!
Please Help!
Yvan Tag: samples to bluetooth discovery/connect? Tag: 111416
New to Mobile SQL
Hi again!
I have a feeling that how ever I write this application I'm no longer going
to be able to rely on ADOCE, so I'll have to make the steps to the next
generation, which I presume is Mobile SQL Server.
I know very litle about this so I hope someone can help me out with a few
queries.
1. Is it a licenced bit of software, do I need a license for each terminal?
(Windows Mobile 2003se)
2. What are the host requirements?
3. How would I achieve sending data from an Access database to the mobile
server?
Cheers,
Tull. Tag: samples to bluetooth discovery/connect? Tag: 111412
Platform questions.
Hi all. I'm having a mare of a time trying to get this portable application
off the ground!
According to some MS documentation you cannot write code for a Windows
Mobile 2003 device using VB Net 2003. Some documentation says you can with
the right SDK's installed. I've installed everything I can find to do with
Windows Mobile 2003 and I still don't get any project options for the
device.
So here are a couple of questions I hope someone can help with.
1. Can I write applications for Windows Mobile 2003 SE using VB Net 2003?
2. If yes, what do I need?
3. If not, what do I need?
Cheers,
Tull. Tag: samples to bluetooth discovery/connect? Tag: 111411
How to use IDccMan & IDccManSink Component interfaces with RAPI.dl
Iâ??m developing a small application for data transfer between PDA & Desktop
PC. Here first Iâ??m using IDccMan & IdccManSink Component interfaces to handle
Connection Notification of Pocket PC and could establish a communication &
send the data. After that I want to restart ActiveSync application for my
application requirement. So what Iâ??m doing is first Iâ??m uninitializing RAPI
(CeRapiUninit), Restarting ActiveSync related process ie., wcescomm.exe,
WCESMgr.exe, rapimgr.exe and trying to ReInitialize the RAPI(CeRapiInitEx),
but couldnâ??t establish a connection. CeRapiInitEx() returning error called â??
The RPC server is unavailableâ??. i'm developing in VC++.2005 in Win XP. Could
you help me to resolve this problem Tag: samples to bluetooth discovery/connect? Tag: 111405
Use Resource only DLL
Hi,
I developed an MFC application which is exe file(MyApp.exe).For the
localization issue,i created an WIN32 DLL which only contains resource
without any source file such as .cpp,.h .Now i have MyApp.exe and
MyAppENU.dll.
I tried to load the MyAppENU.dll ,but it still can't show localized
string.No matter i use LoadLibrary() as follow
HINSTANCE m_hInstResDLL = LoadLibrary("MyAppENU.dll");
or use LoadLibraryEx() as follow
HINSTANCE m_hInstResDLL =
LoadLibrary("MyAppENU.dll",NULL,LOAD_LIBRARY_AS_DATAFILE);
I load library in the InitInstance(),by the way,should i use
AfxSetResourceHandle()
Anyone has suggestion?
Thanks.
Cherry Tag: samples to bluetooth discovery/connect? Tag: 111404
The old IM driver suspend issue
Hi all,
(Sorry for the repost. I'd used the wrong email alias originally. Wanted
this flagged to MSFT as part of their managed newsgroups too).
It seems to be a well known fact that there's a problem if you have an IM
driver and the device its running on goes into a suspend mode.
The problem is in the Power PNP area and there is a well documented fix for
this (return NDIS_STATUS_NOT_SUPPORTED for the NetEventSetPower OID). Maxim
Shatskih kindly supplied a detailed explanation of the problem in the
.device.drivers newsgroup.
Now I have tried all the fixes available in all the CE newsgroups and have
tried all sorts of things with regards Maxims posting ... but I still have
the problem. With my IM driver installed I hang in the
NdisIMDeInitializeDeviceInstance function (Halt is never called)
I started this a few years ago on PPC2002 by porting the old IMSAMP sample.
I have since ported this to PPC2003 and WM5 and still cannot get over the
suspend issue. It sounds like other people have ported IM drivers (normally
PASSTHRU) and do not have this issue once the mod's have been made.
Does anyone have any idea what could be going wrong with my driver? Any
idea's what avenue's I should explore to fix this?
Any help would be greatly appreciated.
Andy Tag: samples to bluetooth discovery/connect? Tag: 111403
No Transport Provider
Hi,
It seems things have got corrupted on my machine.
I am using VS 2005 with Windows Mobile 5.0 SDK for PPC and SP.
When I try to connect via any "Remote Tool", like File Viewer, Registry
Viewer, Zoom In... I don't see any transports available.
However, the transports are very much available when I see from within
VS.
But at the same time I am unable to connect to any emulator or any
device.
Device Emulator Manager also does not list any emulators...
I've also tried reinstalling the SDKs.
--
Happy Hacking,
Gaurav Vaish
http://www.mastergaurav.org
http://www.edujini.in
------------------- Tag: samples to bluetooth discovery/connect? Tag: 111399
Received Mails
Hi All,
Could you please tell me how to received email from windows mobile 5? I
have searched in OutlookSession and EmailMessage but these classes do not
provide receive method.
Thank for your help,
John Tag: samples to bluetooth discovery/connect? Tag: 111397
Where's the bluetooth class lib?
I stumbled across a video about creating a bluetooth app at:
http://msdn.microsoft.com/mobility/windowsmobile/howto/ehowtos/default.aspx
that made it look easy but I can't seem to find the bluetooth class core lib
he was talking about.
I did download something called the bluetooth class lib but it doesn't
appear to be the same thing.
He said it would be on msdn on May 10 but didn't mention which year.
Thanks,
Jim Tag: samples to bluetooth discovery/connect? Tag: 111396
ending a pocket pc 2003 c# program
Hello
Sorry if this is a stupid question, but I am doing some newby type
programming in C# and doing some mock-up progs to see what they look like
and how they work.
On my ipaq i have wizbar and a few other utilities that actually close apps
when i click on the 'X'.
How can I make a button (say 'btnClose') in my pocket PC app actually close
the application?
Thanks
Doug Tag: samples to bluetooth discovery/connect? Tag: 111390
Where I can find samples to VBNet CF.net.200 to discovery and connect to
bluetooth adapters?