WinInet FTP Issue
Hello,
I was wondering if anyone has experienced an issue with
using the WinInet FTP functions to copy a file from an FTP
server to a PPC 2002 device? I'm using a Symbol 8146 with
an 802.11 radio so the transfer is occurring over RF.
According to KB article Q312039 the FtpGetFile() function
always returns an error, which I had independantly
encountered. The KB article instructs you to instead issue
InternetOpen, InternetConnect, FtpOpenFile and
InternetReadFile calls to retrieve the file, which I have
implemented. However, randomly but consistently I don't
receive the first one or two bytes of the file, which in
my case happens to be a .cab file. Attempting to then
unpack the .cab file fails because the missing bytes
happen to be part of the "MSCF" signature.
My application can optionally use HttpOpenRequest instead
of InternetConnect/FtpOpenFile and the remainder of the
transfer logic is the same. Using http has never failed
and has been implemented at a customer site for over a
year.
Since there is an aknowledged bug in FtpGetFile() I'm
wondering if there are other problems in the WinInet FTP
logic that are causing the bytes to be dropped. Has anyone
else experienced this problem, and does anyone know if it
is fixed in PPC 2003?
Sincerely,
Don Neeper
Senior Software Engineer
SofTechnics, Inc. Tag: FTP´s Client Tag: 66323
Enumerate network neighbourhood from Pocket PC
How can I enumerate a network neighbourhood in windows ce
(pocket pc)? Exactly, how can I enumerate all network
containers under the root? Under Win98/NT/2K, if you pass
a value of NULL for the 'lpNetResource' parameter to
WNetOpenEnum, it assumes the root directory and enumerates
all resource containers on the network. The same things
under CE causes an invalid argument error. At the same
time, there are programs who manage this problem (Resco
Explorer, for example).
How is it possible to enumerate all network neighbourhood
under Windows CE?
Thanks in advance. Tag: FTP´s Client Tag: 66322
Open Serial communication on a Virtual Port
Hello,
I'm trying to write a small app that read data from a virtual port
sending GPS data. The device is attached to the PPC serial port (COM1,
used as a GPRS modem) and a driver create the virtual port for the
NMEA streaming.
I'm using standard code examples found on the net, and they work with
"real devices" not with the virtual port (no error.. just no data!)
I have to open the virtual port in "share mode" and here it is what I
wrote:
CreateFile (lpszPortName, // Pointer to the name of the port (COM6:)
GENERIC_READ, // Access read mode: CORRECT?
1, // Share mode FILE_SHARE_READ:
CORRECT?
NULL, // Pointer to the security
attribute
OPEN_EXISTING,// How to open the serial port
0, // Port attributes
NULL); // Handle to port with attribute
// to copy
Then I set the DCB settings:
PortDCB.DCBlength = sizeof (DCB);
// Get the default port setting information.
GetCommState (hPort, &PortDCB);
// Change the DCB structure settings.
PortDCB.BaudRate = 9600; // Current baud
PortDCB.fBinary = TRUE; // Binary mode; no EOF check
PortDCB.fParity = TRUE; // Enable parity checking:
CORRECT?
PortDCB.fOutxCtsFlow = FALSE; // No CTS output flow control
PortDCB.fOutxDsrFlow = FALSE; // No DSR output flow control
PortDCB.fDtrControl = DTR_CONTROL_ENABLE; // DTR flow control type
PortDCB.fDsrSensitivity = FALSE; // DSR sensitivity
PortDCB.fTXContinueOnXoff = TRUE; // XOFF continues Tx
PortDCB.fOutX = FALSE; // No XON/XOFF out flow
control
PortDCB.fInX = FALSE; // No XON/XOFF in flow control
PortDCB.fErrorChar = FALSE; // Disable error replacement
PortDCB.fNull = FALSE; // Disable null stripping
PortDCB.fRtsControl = RTS_CONTROL_ENABLE; // RTS flow control
PortDCB.fAbortOnError = FALSE; // Do not abort reads/writes
on error
PortDCB.ByteSize = 8; // Number of bits/byte, 4-8
PortDCB.Parity = NOPARITY; // 0-4=no,odd,even,mark,space
PortDCB.StopBits = ONESTOPBIT; // 0,1,2 = 1, 1.5, 2
//Apply new settings
SetCommState (hPort, &PortDCB)
Then COMMTIMEOUTS
GetCommTimeouts (hPort, &CommTimeouts);
CommTimeouts.ReadIntervalTimeout = MAXDWORD;
CommTimeouts.ReadTotalTimeoutMultiplier = 0;
CommTimeouts.ReadTotalTimeoutConstant = 0;
CommTimeouts.WriteTotalTimeoutMultiplier = 10;
CommTimeouts.WriteTotalTimeoutConstant = 1000;
SetCommTimeouts (hPort, &CommTimeouts)
Finally (I don't know what this means...):
EscapeCommFunction (hPort, SETDTR);
EscapeCommFunction (hPort, SETRTS);
To read data:
// Specify a set of events to be monitored for the port.
SetCommMask (hPort, EV_RXCHAR | EV_CTS | EV_DSR | EV_RLSD |
EV_RING);
while (hPort != INVALID_HANDLE_VALUE)
{
// Wait for an event to occur for the port.
WaitCommEvent (hPort, &dwCommModemStatus, 0);
// Re-specify the set of events to be monitored for the port.
SetCommMask (hPort, EV_RXCHAR | EV_CTS | EV_DSR | EV_RING);
if (dwCommModemStatus & EV_RXCHAR)
{
// Loop for waiting for the data.
do
{
// Read the data from the serial port.
ReadFile (hPort, &Byte, 1, &dwBytesTransferred, 0);
Thanks for any hint!
Stefano Tag: FTP´s Client Tag: 66321
.Net CF Serial Communication
Hi,
I want to estabish a serial communication between my pc
and the pocket pc .
I have tried the CreateFile and WriteFile and ReadFile
function of the Coredll .When i run the application from
the emulator it opens the port and writes the byte on it
and then i call the CloseHandle mathod of coredll.
Now when i call the opens the port again by calling
CreateFile method in this way
CreateFile(PortName, CEAPI.GENERIC_READ, 0, 0,
CEAPI.OPEN_EXISTING, 0, 0);
and call the ReadFile method in this way
ReadFile(hPort, buffer, 1, ref read, 0)
It works properly but does not read the value.
means 'read' parameter contains 0 in it.
Please Help me.
Thanks in advance
Neeraj Tag: FTP´s Client Tag: 66311
JScript on Pocket PC 2002
How can I enable JScript support on a Compaq Ipaq running
Pocket PC 2002 so that HTML pages containing javascript
will run properly ? Tag: FTP´s Client Tag: 66310
problems with long URL's and rich-ink links
It appears that
TCHAR *str;
...
SendMessage (rich_ink_control, EM_INSERTLINKS, (WPARAM)lstrlen(str),
(LPARAM)str);
causes a data-misaligned exception when the length of the string str is >=
294 characters (i.e. 2*294 bytes).
This is a real problem in same cases where we want to attach a long URL link
to a reach-ink text anchor (the URL contains parameters for a CGI-BIN script
that expand to more than 294 characters).
str looks like L"<file:iexplore
http://blablabla...................................{text_for_link}>"
i.e. tapping on the active link "text_for_link" causes PIE to start and open
the (long) URL.
This works fine, but impossible to use long URLs!!!!
Is this a known issue ? Tag: FTP´s Client Tag: 66309
xml support on pocketpc 2003
Hi All,
I am trying to load the following xml document ...
http://www.ananova.com/tv_listings/_xmltv.php in to a System.XmlDocument on
the compact dot net framework and I get the following error "System does not
support encoding iso-8859-1", or
something to that effect.
Any ideas would be greatly appreciated
Thanks
Dan Higham (remove NOSPAM) Tag: FTP´s Client Tag: 66308
Calling .NET-dll from an Active-X Dll
Hello,
(for the actual question scroll down to the bottom)
BACKGROUND
==========
Im using an application, in which i can write my own addins(onsite
view). The addin will be detected by the application and run by the
application. This is an activex dll, developped with Microsoft Embedded
Visual Tools 3.0 and we have created an addin(dll) with quite some
functionality. (for interfacing we use embedded basic)
Now we want to add .NET code to the project by defining an interface, so
we can use .NET and later migrate everything to .NET (to much effort
right now)
The question is: how can i call the .NET dll(C#) from my C++ dll?
STEPS I TOOK:
=============
The followng steps have been taken by me:
1) Created an project for C# PocketPC, and set the property "Register
for COM Interop" to true
2) Created a dummy class (string helloworld() function), added lines
like:
[Guid("1E8818CF-B89D-4411-B00C-F216EFD5C18F"),ClassInterface(ClassInterfaceType.None)]
Problem 1) "ClassInterface" is not usable for PocketPC?
I used the workaround: [Guid("1E8818CF-B89D-4411-B00C-F216EFD5C18F")]
4) I tested the dll with an .NET application on pocketpc, was working
correct
5) I tested the dll with an VB application (altrough code completion
didnt work) it worked correct (on pc)
6) Now i want to use the .NET dll inside the ActiceX-dll, but the only
code i get is:
class IInspectieModule : public COleDispatchDriver
{
public:
IInspectieModule() {} // Calls COleDispatchDriver default constructor
IInspectieModule(LPDISPATCH pDispatch) : COleDispatchDriver(pDispatch) {}
IInspectieModule(const IInspectieModule& dispatchSrc) :
COleDispatchDriver(dispatchSrc) {}
// Operations
public:
};
Notice: without the hello world method!
MY THOUGHTS:
============
I think it has to contain an function like:
CString _IInspectieModule::helloworld(BSTR* str)
{
CString result;
static BYTE parms[] =
VTS_PBSTR;
InvokeHelper(0x60030000, DISPATCH_METHOD, VT_BSTR, (void*)&result, parms,
str);
return result;
}
But i dont know how to resolve the value: '0x60030000'
THE QUESTION:
=============
How do i get the .NET dll running from the ActiveX-ddl? (pointers /
samples also welcome)
hoi,
--
Eduard Tag: FTP´s Client Tag: 66305
Jornada 928 supporting 2 phone lines
Hi there,
I am currently on the Orange phone network and have 2 phone lines on
one sim card. I placed my sim card into a Jornada 928 to see if it
would work. I then called both my numbers, and the Jornada was able
to receive both calls, however I could not get to switch between the 2
lines. Normally on a Nokia phone if i hold down the ?#' key it will
swap my lines, therefore enabling me to make calls on both lines,
however it seemed that the Jornada did not have this option. Does
anyone know if it is possible or if the software will be upgraded
anytime soon?
Also, are there any other PDA's, other than the XDA, that have the
function of a phone, or possibly being released in the next few
months?
Thanks
Mani Tag: FTP´s Client Tag: 66303
iPAQ5550 & "Compaq DISK" & cache
Hi!
I'm working with an iPAQ h5550 with an expansion pack. The expansion pack
has a flash on it. This flash is shown as "Compaq DISK"-folder in the root
directory of the iPAQ.
I open a file on this folder:
m_hFile = CreateFile(L"\\Compaq Disk\\IHVRegistry.ihv", GENERIC_READ |
GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, NULL);
Than I read the file with ReadFile, make some changes and write the file
back:
SetFilePointer(m_hFile, 0, NULL, FILE_BEGIN); //seek to begin of file
bWrite = WriteFile(m_hFile, pFileBuffer, dwFileSize, &dwWritten , NULL);
FlushFileBuffers(m_hFile);
After that the program should perform a reset to let the changes take
affekt. If I make the reset after writing the file, the file has the OLD
DATA after the reset. If I show the file on the iPAQ after writing, the file
seems to be ok, but after the reset it has the old data again.
If I wait 10 seconds before making a reset, the file has the right data
after the reset.
Seems as the iPAQ caches my data, but I thought FlushFileBuffers should
force the system to write the data to disk (to flash in this case).
Any ideas how to make sure that the data is written before performing a
reset????
Now I have a Sleep(10000) in my application, but I do not think that this is
a good work around. Maybe sometimes the 10sec are still not enough...
any ideas appreciated
thanks in advance
astrid Tag: FTP´s Client Tag: 66302
IDSSAPI in Pocket PC 2003
Hi,
I've have been using IDSSAPI on Pocket PC 2002, but have to run my app
on Pocket PC 2003 now. Do you know if IDSSAPI supports this platform?
Regards,
Hendri Verveda Tag: FTP´s Client Tag: 66300
Where to find resources on testing PocketPC
Hi all,
Does anyone has a clue where to find resources on writing Test Suite/ Test
program on Pocket PC.
I am working Microsoft embedded VC's Tux.
However, I would like learning more about test automation.
What scripting language can I use within PPC?
Any help would be appreciated.
Nancy Tag: FTP´s Client Tag: 66299
Resource Only DLL EVC
Hi,
I want to create a Resource Only DLL with Images, that will be readed by
a program made in Embedded Visual Basic, someone can helpme???
Code snippets are highly appreciated.
Please reply to the group.
Thanks in advance.
Ricardo Mtz. Tag: FTP´s Client Tag: 66298
Creating a service for Pocket PC
Does anybody know how to create something like a Windows service for
PocketPC? I need a piece of code to be running whenever power is turned on,
or after system is reset. Also, this code should not have a visible window
associated with it. That is, I don't want a window to popup whenever I turn
the power on. The code runs in background with no visible window.
Thanks in advance Tag: FTP´s Client Tag: 66297
Close a WinCE app from code
Hi
How can I close a WinCE application using code.
I'm coding in VB. Looks like the normal VB close
functions does not exist when coding for WinCE.
Thanks
Hein Tag: FTP´s Client Tag: 66296
Is there any DLL viewer?
I mean a PC or PocketPC utility which one can use
to view entry points, resources ... of the DLL built for PocketPC.
TIA. Tag: FTP´s Client Tag: 66294
H E L P Needed! (hiks)
Hi All,
I am developing dialer (RAS dialer) which also interacts with Pocket
Internet Explorer (PIE).
The interactions with PIE includes proxy settings and default PIE
connections
However, after my dialer successfully dialed and made internet connection,
When i started PIE,It seems that PIE didnt recognize the connection and
returning popup windows about suggestion to fix the connection settings.
Is there anyone to help me 'what i have done wrong with this'?
Any suggestion/advice's welcome and appreciated.
Thanks for everything.
b'regards
PA Tag: FTP´s Client Tag: 66293
ATL control compile problem
Hi
I am using Windows CE 3.0 and pocket pc 2002 SDK.
I want to create a ATL control.
So the class looks like this,
class ATL_NO_VTABLE CClient :
public CComObjectRootEx<CComSingleThreadModel>,
public CComCoClass<CLonClient, &CLSID_LonClient>,
public CComControl<CLonClient>,
public CStockPropImpl<CLonClient, ILonClient, &IID_ILonClient,
&LIBID_ClientLib>,
public IProvideClassInfo2Impl<&CLSID_LonClient, NULL, &LIBID_ClientLib>,
public IPersistStreamInitImpl<CLonClient>,
public IPersistStorageImpl<CLonClient>,
public IQuickActivateImpl<CLonClient>,
public IOleControlImpl<CLonClient>,
public IOleObjectImpl<CLonClient>,
public IPersistPropertyBagImpl<CLonClient>,
public IOleInPlaceActiveObjectImpl<CLonClient>,
public IViewObjectExImpl<CLonClient>,
public IOleInPlaceObjectWindowlessImpl<CLonClient>,
public IDataObjectImpl<CLonClient>,
public CProxy_ILonClientEvents< CLonClient >,
public ISupportErrorInfo,
public IConnectionPointContainerImpl<CLonClient>
I included #include <atlctl.h>.Then I get following compiler errors.
E:\Program Files\WINCETOOLS\wce300\Pocket PC 2002\atl\include\atlctl.h
error C2504: 'IBindStatusCallback' : base class undefined
see reference to class template instantiation
'ATL::CBindStatusCallback<T>' being compiled
error C2061: syntax error : identifier 'IBinding'
see reference to class template instantiation
'ATL::CBindStatusCallback<T>' being compiled
error C2061: syntax error : identifier 'BINDINFO'
see reference to class template instantiation
'ATL::CBindStatusCallback<T>' being compiled
error C2065: 'IBinding' : undeclared identifier
see reference to class template instantiation
'ATL::CBindStatusCallback<T>' being compiled
If I remove atlctl.h file add something like this, the errors are gone.
class ATL_NO_VTABLE CClient :
public CComObjectRoot,
public CComCoClass<CLonClient, &CLSID_LonClient>
What shall I do to remove the errors?Please help.
Rgds,
Venkatesh Tag: FTP´s Client Tag: 66291
How to use listview
Dear Sir,
I create a listview control by C# VS.net 2003 and i set
ListView1.CheckBoxs = True. But I don't know how to used it. For windows
Application I can use this property ListView1.CheckedItems.Count but
PocketPC Application can't use. Please let's me know how to used that
Best Regards,
Mod -X Tag: FTP´s Client Tag: 66290
Uploading a file into the PcoketPC emulator
Hello.
I am writing and order input application for a restaurant.
Everything is fine so far. I have an HP Jornada Pocket PC (plain PPC, not
2003) that I used to test the UI. Within a few days, the wireless network
cards and hub are expected to arrive. But "a few days" is too much time.
I will use Winsock to transfer the orders to the base PC. Did some tests
with Winsock between the emulator in a PC and the "server program" in
another PC.
I should like to test the whole app. I can do it in the emulator, but I use
a fairly large database (Pocket Access) and I must upload it into the
emulator in order to perform the full tests.
Is there a way to upload a file into the Pocket PC?
Thanks!
Leonardo Tag: FTP´s Client Tag: 66285
Encryption
Hi,
Is there any encryption librarys for EVC 4.0?
I noticed EVC 3.0 comes with certain funciton
like,CryptEncrypt, CryptGenKey, CryptHashData.
I don't see anything available for encryption in EVC 4.0.
Is there anything available? Why would it be removed? Tag: FTP´s Client Tag: 66282
pocket access using 2003 emulator
I have visual studio.net 2003 and the 2003 ppc emulator up
and running. Now I want to develop applications using
pocket access.
Is pocket pc a downloadable piece of software? Is there a
way to make it show up under progams in the 2003 emulator?
Is there a way to use the desktop version of access to
create tables that are then downloaded to the emulator and
then also to a real pocket pc?
Any help would be appreciated.
Keith Stallings Tag: FTP´s Client Tag: 66276
any API to retrieve device owner's information on 2003 ?
is there any new API to retrieve the device owner's information (e.g. email)
on PPC 2003 and Smartphone 2003 ?
apparently there was no API for that in 2002, see this article:
http://www.pocketpcdn.com/articles/ownerinformation.html Tag: FTP´s Client Tag: 66271
pocket outlook
Hello all,
Is there any books and/or web tutorials that will give me info. on making
programs
utilizing pocket outlook?? is it possible in eVB??? is there any pitfalls
in WM2003??
Thanks in advance,
ramon.
--
Get The CrashCart!!
http://www.rncrashcart.com Tag: FTP´s Client Tag: 66270
wchar -> float ?
Hi,
I need to convert a WCHAR to a float.
When dealing with ASCII chars, I can use atof.
But there seems to be no such function for wchars.
So my question is:
1) how can I convert WCHAR string to Float?
2) alternatively, how can I convert WCHAR to char so I can use atof() ?
(I know there was some function needing a mapping mode, as ascii is only a
small subset of wchar characters, but I forgot how).
Thanks Tag: FTP´s Client Tag: 66266
How to export file from pocket pc to desktop pc programmacally?
Hi,
I was told to post my message here....
So my question is, does anyone know to export file from pocket pc to desktop
pc programmacally? I am not talking about active sync.
I would be appreciated if you able to provide me some sample codes or refer
to me to a website.
Thanks
Thi Tag: FTP´s Client Tag: 66265
Serial and Pocket PC Cradle
I have a GPS device that outputs character strings over a
serial cable connection. Is there a way to connect a
serial cable to the cradle connection and have VC see it
as a comm port?
I can not figure how to make the cradle port a comm port
and I can not find any documentation on the pins for the
cradle, but I have found cradle to usb cables.
My toshiba 310 has a ir port and a cradle connection and
that is it. Tag: FTP´s Client Tag: 66262
Animation on VB.net form
I'm using VB.NET 2003 and I'd like to display a Flash or AVI animation on
one of my forms on the PPC 2003. Is this possible?
Mike Wasson
Pharmaconomics, Inc. Tag: FTP´s Client Tag: 66255
Uninstall PocketPC applications
Hi!!!
I just created some PocketPC example programs and
installed them in my PocketPC, but now I don't know how
can I remove them from the device. Does anybody know how
to uninstall a PocketPC application??
Thanks in advance Tag: FTP´s Client Tag: 66254
Two requirement: mail & print
Hi all,
I have two requirements:
- there is somebody with a sample to explain
how to implement in vb.net HP printing feature
- i need in my app to post some mail in outlook
outbox. Is it possible ? how ? ( in vb.net )
Tanks a lot for your assistance
Regards,
Jean-luc Tag: FTP´s Client Tag: 66253
CSpinButtonControl
Hi all,
I have some Problems with creating a CSpinButtonControl
for a dynamically created CEdit Field.
m_Edit->Create(WS_VISIBLE | WS_CHILD | WS_BORDER, CRect
(0,0,150,25), this, 1111);
CWnd *pEdit = GetDlgItem( 1111 );
pEdit->SetWindowPos(&wndBottom, 0, 0, 0, 0,
SWP_SHOWWINDOW|SWP_NOMOVE|SWP_NOSIZE);
CRect rect=CRect(0,10,10,50);
DWORD styles = WS_VISIBLE | UDS_ARROWKEYS |
UDS_ALIGNRIGHT | UDS_WRAP;
m_Spin = new CSpinButtonCtrl;
m_Spin->Create( styles, rect, this, 1002);
m_Spin->SetBuddy(pEdit);
CWnd *pStatic = GetDlgItem(1111);
pStatic->SetWindowPos(&wndBottom, 0, 0, 0, 0, SWP_NOMOVE
| SWP_NOSIZE);
The code works without any Problems with VC++ 6.0 but with
eVC 3.0 the Spin Control doesn't attach to the EditField.
many Thanks for your help
Holger Tag: FTP´s Client Tag: 66251
SIM Manager apis
Hi All,
Does anyone used SIM Manager Apis for writing and reading Phone Book
entries in Pocket pc Phone edition using VS .NET 2003 (C#). I was trying to
implement the same and testing using the emulator (Pocket Pc Phone edition)
but which is resulting in giving me an error while reading as well as
writing.
If anyone has tried it successfully, could please send me a sample
of the same ASAP.
Thanks in advance,
Sattex Tag: FTP´s Client Tag: 66243
Writing to Flash Memory
Can someone help me on how to write something to Flash
(ROM). Actually some of the apps we want to use frequently
gets destroyed when we do Hard-Reset. So if we put it on
ROM, will solve our purpose.
I remember someone few weeks back posted something like:
Use SaveFileDialog, then under 'Location' combo call 'its'
Main Memory/Flash Memory (which displays the name of the
PDA) and then select File.CreateText etc etc.
- The prob here is there is no such thing as 'Location'
here under SaveFileDialog class.
Is there some alternative way to write to Flash. I really
need to do it.
btw:-) I'm using PPC 2003, env: VS .NET
many thanks,
Randy Tag: FTP´s Client Tag: 66240
Windows above my own
How could I traverse all windows above my own?
I have looked at GetWindow but can't really understand if
it's possible to get ALL windows above my own. Tag: FTP´s Client Tag: 66239
IMAPITable->Restrict() >>> E_INVALIDARG
Any idea what I am doing wrong in the following code snippet?
(error checking omitted for clarity)
--------------------------------------------
IMAPIFolder *pMsgFolder = NULL;
IMAPITable *pMsgObjects= NULL;
...
pMsgFolder->GetContentsTable(NULL,&pMsgObjects);
SRestriction r1 = { 0 };
r1.rt = RES_EXIST;
r1.res.resExist.ulPropTag = PR_MESSAGE_DELIVERY_TIME;
/// the following returns E_INVALIDARG (0x80070057)
pMsgObjects->Restrict(&r1,NULL);
--------------------------------------------
Thanks in advance for whatever insight you may provide!
--
Alessandro Angeli
MVP::DigitalMedia
a dot angeli at biosys dot net Tag: FTP´s Client Tag: 66238
Ipaq Wont Boot
My IPAQ 3760 has suddenly stopped working.. it starts to boot and displays
the red IPAQ boot screen but switches itself off before CE starts. It
happens whether or not it is cradled.
Anyone have any suggestions as to why this is happening/remedies to fix it?
Marts
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.512 / Virus Database: 309 - Release Date: 19/08/2003 Tag: FTP´s Client Tag: 66237
POOM & PocketPC2003
Hi there!
We've got an application developed in eVB3.0 and Pocket PC 2002. Now, we
want to test the application on a Pocket PC 2003. After installing the
runtime and making some changes on databases everything seems to work fine
... except one thing: the access to contacts and tasks through POOM.
We are thinking on some compatibility problems between 2002 and 2003.
Anybody has got any ideas?
Thanks in advance for your help.
Marcos. Tag: FTP´s Client Tag: 66235
Limiting Functionality in PocketPC
Situation: Our company is currently using the PocketPC's built-in Internet
Explorer as the application client. Our business requires the PDA to be
public to the customers who use our service. Therefore we want to give
access control to all the software inside the PocketPC, including the file
explorer and system settings, etc.
Question: How to provide access control within a PocketPC that:
1. the customer using our software can only use the IE's browsing function,
while leaving the other function unavailable to user
2. administrator can still have all the rights to control the PDA to do the
software update and system maintenance
Any Method/API will be welcome, thank you very much. Tag: FTP´s Client Tag: 66228
Voice technology
I wanna develop application for pocket pc which involves voice technology
such as TTS or voice recognintion.
Does any one know how to do that?
thanks,
PA Tag: FTP´s Client Tag: 66227
Multithreaded Programming in VB.Net
Hi,
I am a novice programmer and am trying to create a
multithreaded application on PocketPC 2002.
I would like to know whether it is possible to create a
multithreaded application on a PocketPC 2002.
If yes, can anyone help me out with the source code ?
I am trying to create two counters which will run
simultaneously and will show the results simultaneously
in a text box i..e some counter/timer running from 1 to
10 simultaneously in both the text boxes.
Hoping to get some help.
Thanks,
Niks. Tag: FTP´s Client Tag: 66226