Why my GSM modem is not recognized by TAPI as a voice device?
Hi,
I am a beginner of TAPI.
Platform: PocketPC 2003 Phone_Edition; Modem: GSM radio; We are using
RIL in this OS;
My problem is: To make the voice call, I guess the
LINEDEVCAPS.dwBearerModes has to be LINEBEARERMODE_VOICE, and
LINEDEVCAPS.dwMediaModes has to be
LINEMEDIAMODE_INTERACTIVEVOICE;
But these two parameters on my terminal are: dwBearerModes:
0x48(LINEBEARERMODE_PASSTHROUGH + LINEBEARERMODE_PASSTHROUGH);
dwMediaModes: 0x10 (LINEMEDIAMODE_DATAMODEM)
Are they controlled by the registry settings, or something else? My
reg setting for this modem is:
[HKEY_LOCAL_MACHINE\Drivers\BuiltIn\Serial2]
"DeviceArrayIndex"=dword:00000008
"IoBase"=dword:bfac0020
"Irq"=dword:00000000
"Prefix"="COM"
"Index"=dword:00000002
"Flags"=dword:00000008
"Dll"="Serialdrv.Dll"
"Order"=dword:00000001
"Tsp"="Unimodem.dll"
"IoLen"=dword:00000024
"Priority256"=dword:00000067
"DeviceType"=dword:00000000
"FriendlyName"="GPRS Modem - Control Port as COM2:"
"DevConfig"=hex:\
10,00,00,00,05,00,00,00,10,01,00,00,00,4b,00,00,00,00,08,00,00,00,00,00,00
"IClass"="{f8a6ba98-087a-43ac-a9d8-b7f13c5bae31}"
Where to tell Unimodem.dll or sth else that I am using RIL?
Can somebody help me? Thanks a lot!
Chi Tag: how to get system idle time count Tag: 67285
what is Drop-in CPU database?
I get this error message when I want to start EVT 3.0 and EVC 4.0.
Failed to connect to the Drop-in CPU database.
what is it mean? what should I do? Tag: how to get system idle time count Tag: 67284
No ActiveSync programming support
Hi:
I've been posting some questions regarding activesync
programming and found no answers. Seems that Microsoft is
not giving any support nor interested in promoting this
valuable tool to develop serious apps.
Does anyone know how to obtain info or a helping hand?
Marcelo Asorey Tag: how to get system idle time count Tag: 67282
PPC 2003 DesktopToDevice Fails
Hello
Does anyone know why with PPC 2003 DesktopToDevice Fails to overwrite the
database tables. I get -2147024864 Error. I find if I delete the database
it will work sometimes.
Thanks Eric Tag: how to get system idle time count Tag: 67281
pocketpc ear training (music) app development
Looking for some pointers to get me started:
I want to develop an ear training app for the pocketpc. Features will
revolve around playing a note (a pitch) , or a sequence of notes, and
the user will identify the note by name, or the interval (distance
between) the notes. The sounds should resemble piano.
Problem is, I don't know thing one about programming multimedia or
sound, on any platform. But I am an experienced programmer, and I
have a MSDN universal license so I have access to all the SDKs. What
are the basic technologies and SDK(s) I should look at? For example,
will I record my pitches on an electronic keyboard for playback on the
pocketpc? Using MIDI format? I guess that's really my basic
question: how do I create and playback the pitches?
I'm looking forward to your suggestions.
- leo tohill Tag: how to get system idle time count Tag: 67277
Personal Certificate Help...
Hello,
I'm a bit confused and hope someone has an answer for me. I am trying to
connect my IPAQ 1945 to a wireless network. I have a SanDisk 802.11b Connect
SDIO network card and have been issued a personal certificate in order to
identify myself on the network. My problem is that I need to figure out how
to get the certificate loaded. The file is a .p12 file and has a private key
thus I can not simply export the file from my laptop since it then becomes a
root certificate and I loose my private key. I've also seen a post where
there was a hack for the registry but that didn't seem to work. SO, if
anyone knows how to load a .p12 file please let me know what I need to do!!!
Thanks,
triton@nc.rr.com Tag: how to get system idle time count Tag: 67276
Show a dialog box in InitInstance
Hello,
I created an application with MFC's Doc/View structure on Pocket PC 2002. In
InitInstance of CWinApp derived Class, I putted code to show a Modal dialog
box before other initailization. If the user click OK, the program will
continue to run. Otherwise the InitInstance will returns FALSE to stop the
program.
The problem is that after the dialog box returns IDOK, the program is still
running, but the main window is hidden in background. Do I implement this in
wrong way? I can move this code to OnNewDocument of CMyDocument or somewhere
else. I am wondering why the main window will be hidden after a dialog box
displayed.
Thanks,
Shangwu Tag: how to get system idle time count Tag: 67275
ADOCE in WinCE 2.12 (forever)
I would like to know as I can use a database Access (CDB)
in eVC++. If somebody will have some example of code will
go to help.
I am trying to use the following code:
BOOL CEXADOCEDlg::OnInitDialog()
{
CDialog::OnInitDialog();
// Set the icon for this dialog. The framework
does this automatically
// when the application's main window is not a
dialog
SetIcon(m_hIcon, TRUE); // Set big
icon
SetIcon(m_hIcon, FALSE); // Set
small icon
//Make the Window Wider so the title bar is
viewable
if (!SetWindowPos(this,0,0,480,200,SWP_NOZORDER |
SWP_NOMOVE)) {
AfxMessageBox(_T("Error Resizing Current
Window."));
}
CenterWindow(GetDesktopWindow()); // center
to the hpc screen
//Create the ADOModule
m_pADOMod = new ADOModule();
//Initialize the ADOModule
if (FAILED(m_pADOMod->Initialize())) {
AfxMessageBox(_T("Database support cannot
be initialized\r\n")
_T("Please make sure that you have
the proper database on\r\n")
_T("your device, and that your
device supports ADOCE."));
}
return TRUE; // return TRUE unless you set the
focus to a control
}
/////////////////////////////////////////////////////////
HRESULT ADOModule::Initialize()
{
TCHAR szFilter[] = _T("MS-Access Files
(*.cdb)|*.cdb|");
//You are required to pick the database file to be
working with
CFileDialog cfd(TRUE,_T
("cdb"),NULL,OFN_FILEMUSTEXIST,
(LPCTSTR)szFilter,NULL);
if (cfd.DoModal() == IDOK) {
//Store the path of the database file for
later use
m_strFilePath = cfd.GetPathName();
//Initialize the COM system:
//Note that the Multithreaded flag is the
only
//one supported in Windows CE at this time.
if (FAILED(CoInitializeEx(NULL,
COINIT_MULTITHREADED))) {
AfxMessageBox(_T("Error
initializing COM"));
return E_FAIL;
}
//Get the Recordset interface
if (FAILED(CoCreateInstance
(CLSID_ADOCERecordset, NULL,
CLSCTX_INPROC_SERVER, IID_IADOCERecordset,
(void**)&m_pIRecordSet))) {
AfxMessageBox(_T("Could not load
ADOCE"));
return E_FAIL;
}
//Change class state to initialized state
m_bInit = TRUE;
//Make sure that we're dealing with a
database that this
//sample application can work with.
if (!VerifyCompatible(TRUE)) {
return E_FAIL;
}
return S_OK;
}
return E_FAIL;
}
///////////////////////////////////////////////////////////
BOOL ADOModule::VerifyCompatible(BOOL bShow)
{
long size = 0;
HRESULT hr;
COleVariant source;
COleVariant connStr;
CursorTypeEnum cte = adOpenKeyset;
LockTypeEnum lte = adLockReadOnly;
//Check to make sure that the 'ToyTable' table
exists
source.SetString(_T("ToyTable"),VT_BSTR);
connStr.SetString((LPCTSTR)m_strFilePath,VT_BSTR);
//Open the table
hr = getRecordSet()->Open
(source,connStr,cte,lte,adCmdTable);
if (FAILED(hr)) {
return FALSE;
}
//And get the record Count
hr = getRecordSet()->get_RecordCount(&size);
if (FAILED(hr)) {
return FALSE;
}
CString strMsg;
strMsg.Format(_T("'ToyTable' table opened properly
with %ld records.\r\n"),size);
//Close the 'ToyTable' recordSet
hr = getRecordSet()->Close();
if (FAILED(hr)) {
return FALSE;
}
if (bShow) {
AfxMessageBox(strMsg);
}
return TRUE;
}
However he is not functioning. I need a urgent aid. The
2,12 version of windows ce that I am using is and the
processor i486. Tag: how to get system idle time count Tag: 67274
IrDa adapter: Serial or USB?
I'm about to start a development of an application pair (ppc-winXP) that
will use IR communication.
Are there substantial differences in programming IrDa communication for USB
and Serial IrDa adapter for desktop windows (winxp pro)?
which one would you choose, and why?
thanks,
Vedran. Tag: how to get system idle time count Tag: 67273
Having problem with ppc emulator
I meet a problem during deploying pocket pc app. In my P4
1.5ghz, with windows 2000 pro, when i run the pocket pc
app in debug mode, it will load the app, install the
compact framework and straight away run the app...
but in my p4 2.4C with win xp, i need to go to
the "programs files" folder, find the copied application
and run it.. why will this happen??
Louis.. Tag: how to get system idle time count Tag: 67268
Help Please
Hey,
Can someone point me to an example of how to get data
from Sql Server Ce using a SELECT query with OLE DB? I
can get CREATE TABLE and INSERT to work, but I can't
figure out how do get data out of a command execute. All
the examples I have seen just use IOpenRecordset, but I
want to use a query and I can't find any examples. I have
gotten to the point of passing the query with:
hr = pICmdText->SetCommandText(DBGUID_SQL, pwszQuery);
But now what?
Thanks for any help.
(I am using EVC 4.0) Tag: how to get system idle time count Tag: 67264
RAPI for .NET
Is there a managed version of RAPI for .NET
I've had a little play with RAPI in VB6 (thanks to the RemoteCETypeLibrary)
but am struggling to do the same in VB.NET. It will take some time to
convert all the types and declare the functions correctly so wanted to check
that it's not been done before or whether a better alternative exists before
it get stuck in. Tag: how to get system idle time count Tag: 67261
Today Background
Hi,
I need to write a simple program that will automatically build new (.tsk)
files and use them as Today background.
Does anybody know if there is a way to change the Today background
programmatically...
I know how to create the (.tsk) file, but I don't know how to change put in
on the today on the fly.
thanks in advance,
Joe Tag: how to get system idle time count Tag: 67258
Programs not automatically launched on emulator
Hi,
I have the following problem with my Pocket PC 2002 emulator: When
trying to test the code, the VB or C++ file is not automatically
executed but rather only copied to the '\Windows\Start Menu'. This way
I have to start the program manually from the Start Menu. I believe
this is not the way it is supposed to work, since when connecting to
my Pocket PC device the programs are launched instantly.
Does anybody have an idea how to resolve this problem as well?
Thanks,
Christian Tag: how to get system idle time count Tag: 67256
How to draw table like IE table for use GDI??
Hi, all..
Im develop html viewer only using gdi...(Not use htmlview.dll)
How to draw table like IE table for use GDI??
I wanna know IE table's color , IE table number of line..
Thanks.. Tag: how to get system idle time count Tag: 67255
post to page with evb
Is it possible to make http post to asp page with code with evb and if it is
possible could someone post code
Thanx Tag: how to get system idle time count Tag: 67253
iPAQ 2210 - Nokia 6310i
I have a PocketPC application which sends and receives SMS successfully from
an iPAQ 2210 via a Nokia 6310i using the Widcomm Bluetooth stack.
The application opens COM8 to do this.
When COM8 is opened, the 'Bluetooth Console' appears and asks me to select a
device and a service.
Is there any way I can avoid this step and have the application directly
select the device and service without any user intervention.
Best regards
Lonny Tag: how to get system idle time count Tag: 67251
sqlReplication.Synchronize help me
during the SqlCeReplication.Synchronize
I have this error
"A request to send data to the computer running IIS has
failed. For more information, see HRESULT. [,,,,,]"
what can generate this error ?
thank's Tag: how to get system idle time count Tag: 67250
(Pocket PC Emulator Reboot Problem related) - Cannot access Microsoft Windows CE .NET 4.2 Device Emulator
I was wondering if anyone else can tell me if they can start the download
from the following page (for MWCE .Net 4.2 D.E.)
http://www.microsoft.com/downloads/details.aspx?FamilyId=B670079A-3000-4F3C-A74F-0235A20563CF&displaylang=en
Since I'm among those who have a problem starting the Pocket PC Emulator
under eMbedded Tools, I need this download.
Can anyone tell me if there's a another place from which I could access it
?
Nick Tag: how to get system idle time count Tag: 67249
Reading Storage Card from Desktop
How do I access a PPC's Storage Card(s) programmatically from an application
on an Win2k/XP desktop?
I know it must be possible as the Explore button in ActiveSync and the
Mobile Device Link in XP/Win2k exposes the folders on the PPC but I cannot
find how to do this in code.
Any pointers or code snippets would be really useful Tag: how to get system idle time count Tag: 67247
Why i cannot add COM component to the toolbox?
Now i use Visual Studio 2003. I want to develop a C# for smart device
project, when i want to add a new COM component to the toolbox, it
become grey. Why?
And what solution can solve this problem? Tag: how to get system idle time count Tag: 67245
Need inputs on ACM driver for pocket pc 2002
Hi,
I am currently working on writing some ACM wrappers for a an audio
multi bitrate codec(GSM AMR)for PocketPC 2002( WinCE 3.0 )
I am not able to select the different bitrates from the device.
I am displaying the list of bitrates supported, but when I choose the
bitrate it doesnt get selected??
Any inputs on this??
I am using the "Start->Settings->Input->Options->voice recording
format" drop down menu to select the different bit rates supported by
the system.
Please do reply to me....
I am stuck and would appreciate some inputs to help me progress on
this
-Rgds,
SA
PS: MVPs please do give inputs! Tag: how to get system idle time count Tag: 67244
borland c++ and evc++
I'm very new to c++ programming, please forgive my
stupibity.
I have to write a program for Windows to generate a
database file for my pocket pc application (written in
evc).
If I write it in borland C++, can the evc program read
the database file properly? Actually the program would
construct a tree and store it to the database file.
Or visual c++ would be a better choice?
Please help, thanks alot! Tag: how to get system idle time count Tag: 67230
copying .cdb files
Anyone out there know how to copy a native .cdb file from
one CE device to another so that it can be mounted/opened
successfully? I have an app that saves its .cdb files to
a flash card, but they are not really helpful if they
can't be loaded onto another device. Why is this such a
problem, anyway? I am using eVC 3.0 and the devices are
both PPC 2002 and PPC 2003.
Thanks,
Steve Tag: how to get system idle time count Tag: 67224
Linux or Pocket PC ?
Well,
I am all set to develop an image processing applications for handhelds. I
have not decided on the operating system to use. linux os and pocket pc are
my two options. Well i know that java can run well on linux but i am not
sure of what development tools etc are offered. I need help from people who
can express their views or point towards documents that can help decide
which platform and programming language to use. I also need to know which is
the most powerful handheld till now and would fit the budget. Most palm os
pda's have lesser memory then their counterparts pocket pc enabled ones. I
am curious to know on a pocket pc enabled 64 MB ram and a palm os enabled 64
mb ram which one would provide me more computing power? an early response
would be appreciated. thanks
Abhishek Gattani
ECSE Dept, RPI, NY, USA
gattani@rpi.edu Tag: how to get system idle time count Tag: 67222
Save files in the Flash ROM side
It'is possible to put file in the flash rom side like the OS files.
i would like create a folder in the rom and copy file inside to save files
after a hard reset or lost bateries.
some backup soft work like that.
Thanks Tag: how to get system idle time count Tag: 67217
my applications won't run
hi all, i need your help, am a begginer :-<
when i run my smart device applications they won't run,
the emulator loads and everything, and the Visual Studio
status bar say: Launching Application, but nothing
happens.
what could be the problem??????
Mohammad Tag: how to get system idle time count Tag: 67216
IrDA on pocket pc
Hi,
I'm trying to make an IrDA connection via pocket Pc and
Extech mobile printer. Both devices have built in IrDA. I
just open port "COM3"(Number 3 I get from
registry..."index")by CreateFile, then I have to call
function EscapeCommFunction(hPort, SETIR). But this
function always return false, althought I'm very sure that
I have good handle to the port. I have a feeling, that on
the pocket PC (model 3970) is missing ircomm.dll (I didn't
see it in "\\Windows" directory). Can you help me
somebody? Where can I get ircomm.dll? Or, is this the real
problem?
Thanks, Slavka
Slovakia Tag: how to get system idle time count Tag: 67213
XScale
Hi All,
I have written a function (See the code below) that uses the
KernelIoControl(IOCTL_HAL_GET_DEVICEID) for the pocketpc. The function works
fine with ARM Processor.
When I run the application on XScale Processor, it the function returns an
Empty String. Any help is much appreciated.
Thanks,
Ghazi
CString CLogicController::GetSerialNumber()
{
// if(true) return _T("ghazi");
const int nBuffSize = 256;
byte pid[nBuffSize];
DWORD dwOutBytes;
BOOL bRes = ::KernelIoControl(IOCTL_HAL_GET_DEVICEID,
NULL, 0, pid, nBuffSize, &dwOutBytes);
if(bRes) {
PDEVICE_ID id = (DEVICE_ID*)pid;
CString strDeviceInfo;
for (unsigned int i = id->dwPresetIDOffset; i< (id->dwPresetIDOffset +
id->dwPresetIDBytes); i++) {
CString strNextChar;
strNextChar.Format(TEXT("%02X"), pid[i]);
strDeviceInfo += strNextChar;
}
strDeviceInfo +=_T("-");
for (unsigned int j = id->dwPlatformIDOffset; j< (id->dwPlatformIDOffset +
id->dwPlatformIDBytes); j++) {
CString strNextChar;
strNextChar.Format(TEXT("%02X"), pid[j]);
strDeviceInfo += strNextChar;
}
if(strDeviceInfo.GetLength() > 40) {
strDeviceInfo = strDeviceInfo.Left(40);
}
return strDeviceInfo;
}
// not successful!
return _T("");
} Tag: how to get system idle time count Tag: 67210
Sql Server
Hi,
Can I develop an Sql Serve ce app with evc4.0? It seems
that all the examples and docs that I can find allways
refer to evc3. Should I being using something else with
evc4? Does Windows CE 4 (.net) support sql server ce?
Thanks. Tag: how to get system idle time count Tag: 67209
Start IE from C#
This is a multi-part message in MIME format.
------=_NextPart_000_000C_01C39BAB.AA4705C0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
How would I start IE from C# program on Pocket PC?
--=20
Thanks
-------------------
czupet@wsinc.com
------=_NextPart_000_000C_01C39BAB.AA4705C0
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.2800.1264" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT face=3D"Courier New" size=3D2>How would I start IE from C# =
program on=20
Pocket PC?</FONT></DIV>
<DIV><FONT face=3D"Courier New" size=3D2><BR>--=20
<BR>Thanks<BR>-------------------<BR><A=20
href=3D"mailto:czupet@wsinc.com">czupet@wsinc.com</A></FONT></DIV></BODY>=
</HTML>
------=_NextPart_000_000C_01C39BAB.AA4705C0-- Tag: how to get system idle time count Tag: 67207
can .Net 2003 and eVC4 coexist on my PC?
I have .Net 2003 installed for work-related development. I've cranked out some
PC2002 apps with it but would like to try eVC4 to be independent of the CF.
Can the coexist on my PC? Can eVC4 be installed AFTER my .Net installation?
tnx,
/steveA
Steve Alpert
my email Fgrir_Nycreg@vqk.pbz is encrypted with ROT13 (www.rot13.org)
-------------------------------------------
NOTICE OF CONFIDENTIALITY
-------------------------------------------
The information in this email, including attachments, may be confidential
and/or privileged and may contain confidential health information. This
email is intended to be reviewed only by the individual or organization
named as addressee. If you have received this email in error please
notify IDX immediately--by return message to the sender or to
security@idx.com--and destroy all copies of this message and any
attachments. Please note that any views or opinions presented in this
email are solely those of the author and do not necessarily represent
those of IDX. Confidential health information is protected by state and
federal law, including, but not limited to, the Health Insurance
Portability and Accountability Act of 1996 and related regulations. Tag: how to get system idle time count Tag: 67205
How do you tell which com port a pcmcia card is on?
I want to use a gprs card but cannot get a modem response. Card is ok and works.
Tried using different port numbers but no response using this code I found in groups
Private Sub For_Load ()
Dim Instring As String
MSComm1.CommPort = 2
MSComm1.Settings = "9600,N,8,1"
' read entire buffer when input is used.
MSComm1.InputLen = 0
'Open the port.
MSComm1.PortOpen = True
' Send the attention command to the modem.
MSComm1.Ouput = "AT" & Chr$(13)
'Wait for data to come back to the serial port.
timer1.enabled=true ' break out of loop after ? seconds - tried 10
Do
Loop Until MSComm1.InBufferCount >= 2
'Read the "OK" response data in the serial port.
Instring = MSComm1.Input
'Close the serial port.
MSComm1.PortOpen = False
EndSud
also tried
open com 2 for output as #1
print #1,"at" & chr$(13)
'put some delay here
INPUT$(#1, strBuff)
msgbox strBuff Tag: how to get system idle time count Tag: 67201
Driver debug messages. How to view?
Is it possible on PocketPC to view
driver debug messages "DEBUGMSG(zone,text)" ?
Please give me a hint how to do it most simple.
TIA Tag: how to get system idle time count Tag: 67200
Program Lockout
This is a multi-part message in MIME format.
------=_NextPart_000_0030_01C39B54.EDC16AE0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
Is there any way - through setup or programming to lock out or prevent =
or at least make hard for users to switch to a different Application =
when they are in IE.
We have a web application and when users run IE they can get lost by =
accidentally tapping on the wrong item, we would like to prevent them =
from exiting IE or loading other programs.
--=20
Thanks
-------------------
czupet@wsinc.com
------=_NextPart_000_0030_01C39B54.EDC16AE0
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.2800.1264" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT face=3D"Courier New" size=3D2>Is there any way - through =
setup or=20
programming to lock out or prevent or at least make hard for users to =
switch to=20
a different Application when they are in IE.</FONT></DIV>
<DIV><FONT face=3D"Courier New" size=3D2></FONT> </DIV>
<DIV><FONT face=3D"Courier New" size=3D2>We have a web application and =
when users=20
run IE they can get lost by accidentally tapping on the wrong item, we =
would=20
like to prevent them from exiting IE or loading other =
programs.</FONT></DIV>
<DIV><FONT face=3D"Courier New" size=3D2><BR>--=20
<BR>Thanks<BR>-------------------<BR><A=20
href=3D"mailto:czupet@wsinc.com">czupet@wsinc.com</A></FONT></DIV></BODY>=
</HTML>
------=_NextPart_000_0030_01C39B54.EDC16AE0-- Tag: how to get system idle time count Tag: 67194
Image Processing Library?
Hi all,
For my thesis I am developing a face recognition application to run on
handhelds. Does any one know of some imaging library available or which can
be compiled for a handheld and would provide some basic operations such as
loading images, edge detection, filters, etc.? an early response would be
deeply appreciated. thanks. you can email at gattani@gmx.net as well
Abhishek Gattani
Graduate, ECSE Dept, RPI, NY, USA Tag: how to get system idle time count Tag: 67193
SDK for PPC 2002
I would like to try my hand at developing a few small programs for my
PPC2002. Where do I start? Which file should be downloaded from Microsoft?
Any info would be appreciated.
Thanks in advance,
Scott Tag: how to get system idle time count Tag: 67192
image library
Hi,
I am interested in developing an image processing app in the Pocket PC using
C# & VS.Net. Is there a library in the .Net Compact Framework or the
original .Net framework where I can read, write, and display image files? I
wish to find information/examples/tutorials on any image displaying.
Thanks,
stephen Tag: how to get system idle time count Tag: 67190
Someone please confirm?
Hi,
It seems that MSDE is available for Windows 98 and up.
However, if I want a SQL Server CE database to be able
to, in anyway, get data to a desktop pc(RDA,
replication), the desktop must be windows 2000 or xp,
must be using NTFS and must be running IIS. I cannot move
data from the handled to the desktop in any other way?
Other than having to export everything to a text file
fist anyways.
All my problems would be solved if someone could tell me
how to get activesync and DEVICETODESKTOP to transfer a
lousy 60 record CEDB database faster. It currently takes
10 minutes, I have to think this was done on purpose by
Microsoft to push people away from Pocket Access, because
I can't think of any other reason it could possibly be
that slow. And I have tried it on more than one machine. Tag: how to get system idle time count Tag: 67186
Installing eMbedded Tools on Windows 98
I recently downloaded the eMbedded Visual Tools version
3.0 (2002 version), and attempted to install it in Windows
98. I first installed the VC++ and VB themselves (not
realizing that you also were required to install one of
the SDKs) and then tried installing the SDKs. However,
when I tried installing the SDKs, I recieved the warning
that only Windows 2000 and related operating systems were
supported.
I realize that I'm going to be unable to emulate the
PocketPC on my Windows 98 Second Edition machine, but
getting a copy of Windows 2000 or XP isn't really an
option at the moment.
I've seen various webpages that came up from Google
searches listing various orders for installing
applications, but it seemed that many of those pages were
out of date.
Any help resolving this, or at least a link to a page
would be very useful. Thanks! Tag: how to get system idle time count Tag: 67184
CeSetUserNotification
I have a program which must know when the power button of the PDA is
pressed. So I use
CeSetUserNotification
to capture the power event.
However, during testing, I did not release one of the notifications and now,
everytime my PDA starts up, it will complain about not being able to find
the EXE file.
Anyone has any ideas how I can get rid of the notification?
Junbin
email me or post your reply here please. Tag: how to get system idle time count Tag: 67181
How to set up internet passthrough for iPAQ cradle?
I have a iPAQ 2210 and can't seem to set up my cradle/ActiveSync to allow
internet to pass through.
My home wireless network is a Linksys network using WRT54G and WPC54G (54G
router and PC card). Internet is broadband in case that is relevant.
According to what I can garner, when the iPAQ is in its cradle and connect
to my computer via ActiveSync, I should be able to access the internet on
the iPAQ. However, this is not true.. all websites cannot be accessed via
pocket IE and my email cannot download. I can, however, sync data that is
locally stored on my computer. In fact, everything works (software
installation, exploring iPAQ folders, etc.) EXCEPT the internet connection.
Can anyone help me solve this problem?
Junbin
Please reply to :
yoderlehiho@yahoo.com
yoderlehiho@yahoo.com Tag: how to get system idle time count Tag: 67175
Pocket PC development CF .NET newbie.
Hi,
How do I tell VS 2003 that I have Pocket PC 2003 installed ?
Please help, this is a root problem of a much, much bigger problem space.
It's driving me mad... Tag: how to get system idle time count Tag: 67168
Xp crashes when starting emulator (embVisual2002)
All servicepacks installed - XP always crashes and reboots when starting the
emulator. Any idea? I tried it just with the sample-code that came with the
sdk. Tag: how to get system idle time count Tag: 67161
Intercept Windows API function
Hi,
I want to write a security (replacement).
This should wait for a specified time with the screen that was *before*
switching off the PDA and waits that a specified combination of
hardware buttons is pressed. If so (in the specified time), you're in.
If
- The time is up
- A wrong combination/button is pressed
- The invisible 0x0 pixel window looses focus
the PDA should be locked with the default security dialog.
I've written a new Password.cpl that does this. But it seems to me
that I'm unable to call PromptForPasswd() from cplmain.cpl when
the default security routine is redirected. If it's not, it works!
Another problem is that my PromptForPasswd() does not work.
It's simply not called! If it's called, then a white screen appears
(but I want the screen to be exactly it was before switching off).
Now I thought, the best would be, to hook the original PromptForPasswd()
from cplmain.cpl to my own function. Then make the things with
the buttons. If the buttons are not correct, the function gives control
back to original PromptForPasswd().
But the problem is that I'm even unable to copy maincpl.cpl to my
desktop PC in order to look what the file exports.
Has anybody got an idea how to incept the PromptForPasswd()
in maincpl.cpl?
If not, has anybody another idea? I do not want to have my own
security screen, the default screen would be the best for me and
my method with the buttons should only be an additional feature
of the default password routine to have a very quick but also very
secure method of securying the device.
Thanks in advance for your help!
Peter
PS: Please do not write that this is not possible because Windows
controls the password. I know that, and in the configuration utility
I'll ask the user for the password and store it for myself (encrypted)
in the registry. Tag: how to get system idle time count Tag: 67160
Install embedded Visual Tools 3.0
Hi,
I'm trying to install the tool downloaded from Microsoft site
(evt2002web_min.exe 210 Mb) but it starts installing the Microsoft SQL
SE and then it finish without installing the tool.
I have Win XP, Visual Studio 6 SP5, SQL Server 2000
Could anyone help me?
Thanks
Guido Tag: how to get system idle time count Tag: 67159
Any good developers resources?
Hi,
Does anyone know of good resources for pocket pc developers (source code,
examples, article etc. ). I know www.codeproject.com and www.codeguru.com .
TIA,
Drago Tag: how to get system idle time count Tag: 67151
How to get system idle time count(from time when no tap screen or
key) like GetTickCount()?