Find Code get application path
Dear all
i find code get application path on pocket pc for vb.net (like app.path
in vb 6.0 )
Brg ,
TingNong Tag: Synchronize the POP3 account Tag: 81985
Newbie: error when running emulator
I get the following error when trying to run the sample hello world program
on the emulator (Microsoft Embedded C++ 4.0):
C:\Program Files\Microsoft eMbedded C++
4.0\Common\EVC\MyProjects\test2\newres.h(32) : fatal error RC1015: cannot
open include file 'winver.h'.
Any help is greatly appreciated.
Luc Tag: Synchronize the POP3 account Tag: 81983
Sql Ce Data Reader error
Not Enough Storage to complete this operation .This is the
error due to the SQL SERVER CE DataReader as it goes out
of memeory please Give a fix for it Tag: Synchronize the POP3 account Tag: 81982
Any body help me?
Andbody can help me to download the following page for me.
http://www.pocketpcdn.com/articles/dialogbar.html
I don't know the reason why I can't visit this website,while I can visit
other website well,such as google,yahoo and so on. The owner of the website
is not professional!Thanks.
David Su Tag: Synchronize the POP3 account Tag: 81979
Is it possible to connect to an mdb backend for the pocket pc?
Is it possible to connect to an mdb backend for the pocket pc?
Just as I do with the desktop version of Visual Studios VB.net.
Just a few directions please.
Thanks, Monty Tag: Synchronize the POP3 account Tag: 81977
Barcode readers
To all:
I would like some input from anyone who has developed applications
interfacing to barcode readers.
I plan to develop for Pocket PC 2002, using C++.
I am currently looking at several CF barcode readers/SDK's.
If anyone has a recommendation for a product they had good luck with, I
would greatly appreciate hearing from you.
-Jon Tag: Synchronize the POP3 account Tag: 81968
How to launch PEGHELP properly...
Hi,
If I create a shortcut that contains:
38#\windows\peghelp.exe \WINDOWS\CALC.htm
It *does* bring up the calculator help, but it does not seperate the topics
properly. Is there an option that needs to be sent to peghelp to make it do
this? What am I doing wrong? If I call for help from the calculator app
file, it does list only one topic at a time (no horizontal bar).
Thanks,
SA Dev Tag: Synchronize the POP3 account Tag: 81963
User controls for .net on pocket pc.
I'm sorry this is a newby question.
I need to be able to sense a user tapping a label or it's parent panel on a
pocketpc form.
I noticed there was no event handler available to do this for either panel
or label (sniff, I thought dot net would be more feature rich than old vc++
v3.0 but it's proving not to be)
How do I capture this event please. Tag: Synchronize the POP3 account Tag: 81953
Text to Speech For PDA - Ideally Pocket IE
Hello There,
I have a requirement where I want to have textfiles to be read out on my
PDA. These text pages will often actually be in HTML format so really the
software needs to be able to be integrated with Pocket Internet Explorer
(like a plug in or something).
I am still interested in hearing about general text to speech software for
the Pocket PC platform in any case.
Kind regards
Dave Tag: Synchronize the POP3 account Tag: 81952
Wincore 1034 when doubleclick on a listbox, when vk_return no error
Hi,
When I doubleclick or VK_RETURN on in a listbox I do some
calculations and close the dialog containing the listbox.
Because some devices don't have a touchscreen the VK_RETURN is also
captured and when done in the listbox the OnDblClickThisListbox is
called and return I true in pretranslate message.
The strange thing is: a real ondoubleclick gives a wincore 1034 and a
vk_return (which calls the same function) doesn't.
This is on PPC2002 and PPC2003 and .NET 4.x the same.
What can cause this strange thing.
Can somebody give me a pointer.
Regards
Laery Tag: Synchronize the POP3 account Tag: 81947
Pocket Pc 2002, javascript forms
Hi everybody!
I have following problem:
OnChange of one html-selectbox I need to fill a second selectbox with
new options depending on the selection I made in the first box.
This is how I solved this for the normal IE (does not work on
PocketIE):
function deleteOptions(num,offset)
{
while (document.forms[0].elements[((num*9)+(offset+1))].length > 1)
{
document.forms[0].elements[((num*9)+(offset+1))].options[document.forms[0].elements[((num*9)+(offset+1))].length-1]
= null;
}
}
function addOptions(text,num,offset)
{
Neu = new Option(text);
document.forms[0].elements[((num*9)+(offset+1))].options[document.forms[0].elements[((num*9)+(offset+1))].length]
= Neu;
}
This is how I tried to solve it for PocketIE, by writing a new select
Tag into a surounding span tag:
function Aktualisieren(selectedText, slaveName, slaveSpan, arrMaster,
arrSlave)
{
var newSelectSlaveTag = '<select name='+ slaveName +'>';
for (i = 0; i < arrMaster.length; i++)
{
if (selectedText == arrMaster[i][0])
{
neuesSelectSlaveTag += \"<option value='\" + arrSlave[i][1] +
\"'>\" + arrSlave[i][0];
}
}
neuesSelectSlaveTag += '</select>';
slaveSpan.innerHTML = neuesSelectSlaveTag;
}
This works up until the point where I try to sent the form: the
PocketIE deletes the select-Object from its elements-array of the form
an when I send the form the values are lost. Of course this works on
IE.
This is driving me nuts, can anybody help me please?
Thanks,
Britta Tag: Synchronize the POP3 account Tag: 81941
winscard.dll and winscard.lib
Hello NG,
i am building an application for pocket pc, which is smart-card aware.
That means this application uses some of the SCard*() functions. The MSDN
documentation says, that this API is available under Windows CE 3.0 and
higher and one should link against winscard.lib. Indeed there is a
winscard.h header file - but there is no lib and no dll.
Perhaps someone or someone from Microsoft can point me to the right
direction.
Where can i find winscard.dll and winscard.lib for Windows ce devices.
Many thanks in advance
Reinhold Schalk
Germany Tag: Synchronize the POP3 account Tag: 81940
missing elements in XML when loading into dataset with schema
Hi,
The following works with NETCF 1.1 & SP1, but not in SP2:
I'm creating a dataset with a schema and then loading an
XML document (which matches the schema) into it. With
NETCF 1.1 SP2, the dataset is always missing certain
elements. I've narrowed it down to a minimal schema and
XML but always the same element is missing.
here are the relevant pieces of code:
DataSet dsTaskData = new DataSet();
dsTaskData.ReadXmlSchema(@"\Schema.xml");
StringReader sr = new StringReader(txtInput.Text);
XmlReader rdr = new XmlTextReader(sr);
dsTaskData.ReadXml(rdr);
-----------
The Schema:
-----------
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:complexType name="TTask">
<xsd:all>
<xsd:element name="taskId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="taskStatus"
type="xsd:int" minOccurs="0"/>
</xsd:all>
</xsd:complexType>
<xsd:element name="NewDataSet"
msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="TTask"
type="TTask" />
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
--------------
The input XML:
--------------
<TTask>
<taskId>1</taskId>
<taskStatus>1</taskStatus>
</TTask>
---------------------
The Dataset.GetXml():
---------------------
<NewDataSet>
<TTask>
<taskId>1</taskId>
</TTask>
</NewDataSet>
As you can see, the missing element is of type int. I've
also tried changing it to string but get the same result.
Any ideas, anyone?
Etai. Tag: Synchronize the POP3 account Tag: 81937
How to detect a RS232 connection
Hi,
I am a beginner that is writing a Mobile Device Application with
Visual Studio 2003. When my device is being 'docked' i want to recieve
a message so i can start my synchronisation.
I've already used CeRunAppAtEvent and CeEventHasOccurred but this does
nothing when my application is already running.
I have made a new class from MessageWindow where i have made an
override of the WndProc function. But all i get is a message 26 and
1022 and i do not now what it means. I suspect that 26 has something
to do with my wireless connection.
Can someone help
Stefan Tag: Synchronize the POP3 account Tag: 81936
.NET Based Smart Client Application
Hello,
Im developing a application for PPC 2002 and 2003
in which i want to connect to the webserver from the pocket pc thru
Desktop
PC and download selected files to the pocketpc Device (2002/2003) and
store
it in a particular folder which is assigned to it
example..
when user clicks download cooking file
http://www.xyz.com/cooking.wmv file will be downloaded to the pocket pc
and
will be stored in
\windows\cooking\cooking.wmv
is there any method for performing this?
ive seen couple of tech articles but that doesnt specifically address
this
do i need to use evc++ or .NET IDE?
any input will be a great help
--
"eRiva Systems" - Where Technology Meets Life, Every Minute.
arvindr@erivasystems.com
www.erivasystems.com Tag: Synchronize the POP3 account Tag: 81933
Installing SP1
Hi,
I have a bunch of Symbol MC9000w Pocket PC devices
that I have written an application for.
I want to take advantage of the changes in Service Pack 1,
and am trying to get the SP to install by using a facilty of the MC9000w
that can copy the cab files to the startup folder. (It uses .cpy files that
specify Path\Filename > DestPath\DestFilename )
When SP1 cab file runs (netcf.core.ppc3.ARM) I get the message
"This program is not compatible with the current operating system and,
therefore may not run on the device"
The device is running:
Microsoft Pocket PC
Version 4.20.1081 (Build 13100)
The processor is : Intel(R) PXA255
Are there any settings I can use to stop this message from appearing,
plus the one to overwrite existing files ?
I found some information on installing cabs without user intervention,
but it was unclear if these would have to be run somehow from the
command line (would create a batch file that is run from the startup folder
?),
and if so is there an argument for the cab file.
----------------------------------------------------------------------------
------
When you install a CAB, CeAppMgr.exe is invoked. Here's the command-line
options you can use with CeAppMgr:
/report
/askdest
/noaskdest
/SilentInstall
----------------------------------------------------------------------------
------
The Wceload.exe app used to install cab files on the device has a couple of
parameters which can help
/noui
Turns off default ui
/noaskdest
Doesn't prompt for storage location
Note that on Smartphone it is not possible to do a completely invisible
install.
----------------------------------------------------------------------------
---------
Thanks
Robert Tag: Synchronize the POP3 account Tag: 81930
embedded visual basic runtime
I've completed the download, but do not know where to find
the CD key for the installation. Any Suggestions???? Tag: Synchronize the POP3 account Tag: 81923
embedded visual basic runtime installation
I found the download for this program for the pocket pc,
but it asks for a cd key, which I cannot locate.
any suggestions? Tag: Synchronize the POP3 account Tag: 81921
com1
Hi
I am using embedded visual c++ with a pocket pc 2003 emulator. I have
mapped the serial port to com1. My problem is I keep getting the
message 'there was an arror trying to open the following port on your
host machine: com1: please verify that a device is attached to this
port etc'. I am using the serial port to input data. Cant at all see
what is different to what i was doing yesterday when it was working
fine and my code was reading the seriual port!!
Help
Russ Tag: Synchronize the POP3 account Tag: 81918
Global Instance
Hi again, I have been trying to make the application Instance truly global
(ie declaring it in my applications main header file for use in seperate C++
files). It works fine the way tha app is initially set up with it being made
global only to the C++ file that is initially created but when i try to make
it truly global I get the compilation error :
StdAfx.obj : error LNK2005: "struct HINSTANCE__ * g_hInst"
(?g_hInst@@3PAUHINSTANCE__@@A) already defined in mclient.obj
stdafx.h is included from both dlgprocs.cpp and mclient.cpp, the two C++
files I wish to use it from at present, and stdafx.h includes the file
mclient.h (the header file containing the global definition of g_hInst). I
believe this may be a problem regarding the way C++ handles includes
differently to C ? I haven't done much C++ before and my application is
basically written in C as this is what I am used to and I am not at all
familiar with the C++ standard, if anyone could point out how this could be
solved or point me in the right direction of any help it would be greatly
appreciated!
Thanks in advance.
Matt Tag: Synchronize the POP3 account Tag: 81912
Request for help, possible pda software development
Hi
We sell DVD and CD media online mail order in the UK. (www.ukdvdr.co.uk)
We are very busy but are suffering badly from incorrectly picked/packed
orders.
I have invested in some symbol ppt2800 terminals (wireless with integrated
barcode readers) and am hoping to integrate them into our system here.
I was hoping to buy some off-the-shelf software to fulfull my requirements,
but I have only found some highly expensive software.
I will outline my requirements below.
Each invoice will have a barcode identifying the order number
Order picker will scan the barcode and the PDA will then have a list of
products and quantities ordered. (I could have upto date orders info
regularly supplied to the pda in the form of a text file or csv file, I
could do the file supply part myself by making an addon to our software used
on our main PC which I wrote in visual basic)
Order picker will then walk round the warehouse selecting items for order by
reading the invoice (I may go paperless in the future but just want to get
something up and running for now)
As picker selects each product he would scan the barcode on the product, (if
multiple items of the same product, picker could enter the number picked
manually either before or after the barcode scan)
If product and quantity picked is correct, picker will proceed to next item.
When the entire order is picked, the pda checks if all is correct. If all is
OK, the picker moves onto the next order. If an item or quantity is wrong,
the pda must inform the picker of the incorrect item or quantity.
Would anyone be able to suggest some software that could do this, or would
you be able to give me a quote to write some software please?
If all else fails, I can simply have the pickers data transferred to a main
pc. I could then write a program myself using visual basic which would
compare the qty/products picked against the actual order. Any errors would
be detected at this stage, but this would not be in real time, so the picker
would then have to go and find the previously picked order to correct it.
Hope I have been clear enough. If you need any more info, please let me
know.
Thanks in advance
--
Best Regards
Terry
UKDVDr
email sales@ukdvdr.co.uk
www.ukdvdr.co.uk Tag: Synchronize the POP3 account Tag: 81911
delphi .net and compact framework
Hi,
Do you know it is possible to develop a ppc software with delphi for .net?
- if yes, how, as by default I don't think it's possible? Maybe there are
some tips to make it possibe?
- if no, do you know if Borland plans to do this in the near future?
Thank you
--
Thibaud
http://joebarthib.free.fr
http://parseval.free.fr Tag: Synchronize the POP3 account Tag: 81904
Hooking or subclassing a window
Hello,
Can someone help me in away to do global subclassing in Pocket PC? I'm
trying to intercept all WM_SETTEXT and WM_GETTEXT messages for all the edit
controls in the system. My application requires that when an application
tries to access the data from its (edit or richink) control to change the
pass a modified text. This is used to translate from one language to
another.
This is could be done using Hooks in Windows but it is not supported Pocket
PC. How do you accomplish the same thing in Pocket PC. Remember, I'm
trying to do global subclassing for all the richink and Edit control in the
system. SO when application creates an editbox, i want to be able to
intercept all it TEXT messages.
Thanks for your help Tag: Synchronize the POP3 account Tag: 81897
determining system font used for window caption ?
does anyone know how to get a handle to the system font used to draw the
window captions (in non-fullscreen windows that have WS_CAPTION) ?
my first idea was to capture WM_NCPAINT and look in the hDC of the
non-client area of the window, but WM_NCPAINT (0x85) is not defined in any
of the Pocket PC SDK (although it's referenced), and dialog window
procedures don't get called with WM_NCPAINT!!!
note: i don't think using a hard-coded font would be a good idea, since the
font is probably different in various localizations, so i would like a
programatic way to get this font. Tag: Synchronize the POP3 account Tag: 81895
RAPI File Copy with VB 6
I am trying to copy a file from the PPC to the PC using RAPI. I have found two examples of how to do this but I am having trouble. The first example is form MSDN http://support.microsoft.com/default.aspx?scid=kb;en-us;307256 It works only for files that don't have a space in the file name. For example, it will copy the file \Data.txt but not \Program Files\Test PPC\Data.txt I really liked this example because it shows how much of the file has been copied. This is important because the files I am copying are a few megabytes.
The second example I found is at http://www.unsupportedsoftware.com/ce/dev/vbrapi.htm This problem with this files is that it does not work for files over 4096 bytes. For files larger than 4096, it will skip some of the data between the peices that it copies. It copies data in peices of 4096 bytes so there are some bytes missing after byte 4096.
Can anyone suggest a way to fix either of these examples or an alternative method? Thanks for the help. Tag: Synchronize the POP3 account Tag: 81894
Updating Pocket Outlook from Desktop
I have an Access database that I have to keep all of the contacts. I don't
have the
option to use Microsoft Outlook and I also have to use C#.
Here is what I have to accomplish:
1. Changes to the database get synched on the device
2. Changes on the device get synched with the database
Here is what I have:
1. I can detect when the device gets docked (I am using OpenNetCF)
2. I can move file to and from the device programatically
3. I can keep an app running on the device that tracks changes to the POOM
and
one running on the desktop that keeps track of the database. On dock,
I can bring
the file from the device to the desk and process it and send a new file
upto the device
to get updated.
I am wondering, if it is possible to keep the database in synch with Pocket
PC 2003 without
having an app running on the device all the time? I appreciate all the help
or direction that you
may provide.
Thanks,
Ashar Zaman Tag: Synchronize the POP3 account Tag: 81883
newbie wanting to program
i have an ipaq and would love to learn how to program the darn thing.
i have a little basic behind me old stuff and user rpl for hp 48gx.
where should i start and what do i need free would be best i just
downloaded a ms 202mg sdk from ms site not sure what it is yet though.
any help would be great and appriciated, thanks in advance travis Tag: Synchronize the POP3 account Tag: 81877
Visual Basic .NET 2003 version
Hi,
Which version (standard of professional) do I need (ms website is not clear
to me) for:
- developing windows based programs
- developing ASPX for internet
- developing windows mobile applications for PDA's
Please let me know, so I can tell my boss what to buy?
thanks,
Eric Tag: Synchronize the POP3 account Tag: 81873
Millisecond on pocket PC Vb.net
Dear all
How can i use Millisecond on pocket PC with Vb.net code ?
Brg
TingN@ng Tag: Synchronize the POP3 account Tag: 81871
[ANN] MsgBox library (shareware) released: a replacement for MessageBox
MsgBox (Shareware) is a drop-in replacement for the standard MessageBox
routine for Pocket PC 2003 and 2003 Second Edition devices.
For more information, FAQ and free download, please go to the MsgBox home
page:
http://www.msgbox.info
if you have problems with this link (DNS may not have it yet), you can go
to:
http://www.mpegtv.com/wince/msgbox
Enjoy! Tag: Synchronize the POP3 account Tag: 81870
Is eVB possible run in WinXP?
eVB always terminate by itself, when I want to view the code.
Anything I could do in order to slove this problem?
thank you Tag: Synchronize the POP3 account Tag: 81869
About DataGrid Control's Problem
Hi,
How can I to modify the DataGrid Control's Column's title name?
For example:
daTest.SelectCommand.CommandText = "SELECT * FROM Test"
'Test table have t1,t2,t3,t4 fields.
daTest.Fill(dtTest)
Dim myDatatView As New DataView(dtTest)
Me.DataGrid1.DataSource = myDatatView
but finally in DataGrid I wang to show t2,t3,t4 fields only and Modify them
Column title name to m1,m2,m3. How can I do it? Please Help me! Thanks a
lot!
Risen. Tag: Synchronize the POP3 account Tag: 81867
bluetooth connection ce 2003 and eVC
I have a bluetooth device (GPS) that runs with canned programs on a Dell Axim X30 which has a built in bluetooth receiver. The canned program pops up a Bluetooth Browser screen from which I select the GPS device. I would like to access the data stream from the device. I've read everything I can find on making the connection, but I have yet to see something I can duplicatge. My best guess is that I have to use CoCreateInstance to get a handle to the IObex interface, but I don't know what the arguments to CoCreateInstance should be.
Am I on the right track? If so, what are the parameters I should be using. If not, what else should I do? Tag: Synchronize the POP3 account Tag: 81862
error reporting support in pocketpc?
Hi,
I am wondering whether pocketpc (windows mobile) has similar support for error reporting like those in in Windows CE 5.0 (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wcewatson5/html/wce50conerrorreportingoverview.asp)
One of our customers is reporting a crash in our app that we can not reproduce. Being able to get a Dr. Watson like dump should help us. Any ideas and suggestions are welcome.
Thanks, Tag: Synchronize the POP3 account Tag: 81861
Cannot set SSID
hi all,
I am currently writing code for an application on PPC 2003, and I have one
small, but serious problem for wireless connections. My application will
allow user to scan and find APs and PCs with 802.11 card, and connect one of
them. My code works well when scan the network: it will return a correct
list. When I try to establish a connection (I only tested ad-hoc connection
so far), it has following problems:
1) if I turn WZC on, it cannot connect to desired computer (or ad-hoc
network);
2) if I turn WZC off, it does connect to the computer, but I cannot send msg
to that computer with Winsock 16 seconds after the connection.
The following is the steps for connection:
1) set network infrastructure mode (OID_802_11_INFRASTRUCTURE_MODE)
2) Set authentication mode to
Ndis802_11AuthModeOpen(OID_802_11_AUTHENTICATION_MODE);
3) set WEP status to Ndis802_11WEPDisabled(OID_802_11_WEP_STATUS);
4) set ssid (OID_802_11_SSID);
Is there any errors? Thanks..... Tag: Synchronize the POP3 account Tag: 81856
Project->New : No Option to Create a PocketPC project
Help.
Have installed c#.net standard, pocket PC 2003 SDk and emulators (all latest versions i think).
I have no option for a smartpc application, only a asp.net mobile web appliocation.
HELP !!!
Cheers Tag: Synchronize the POP3 account Tag: 81850
Need to catch KEYUP/DOWN from child thread...
Hi,
Here's my scenario:
I have a main thread which starts another thread (T2) when the app is
launched. T2 plays the intro music for the app while T1 is busy loading
stuff.
I would like the user to be able to adjust audio volume while the intro
music is playing. For this, I need to catch catch KEYUP/DOWN messages
somehow but since both the main and T2 threads are busy, I cant...
How can i catch KEYUP messages in this scenario? Is it possible to start
another thread (T3) to catch KEY messages while T1 ans T2 are busy and for
T2 to kill T3 when its done?
Thanks in advance... Roupen N.
--- Tag: Synchronize the POP3 account Tag: 81848
No option to create PPC 2003 Apps
I just installed EVC++ 4.0 with SP2 from my MSDN DVD. After the install I DO
NOT have an option to create PPC 2003 applications. What else to I need to
install to create PPC 2003 apps?
Thanks
JEK Tag: Synchronize the POP3 account Tag: 81847
add a background to a listview in VB or C++
Hello,
Is it possible to add a background to a listview Control in VB or C++.
- Thank you Tag: Synchronize the POP3 account Tag: 81838
VB Listview Background?
Hey,
Is it possible to add a background to a Listview Control. I have used it for VB 6 and now want to convert my program to the pocket pc. Tag: Synchronize the POP3 account Tag: 81837
Automatic Installation
Is there a way to have a .CAB file downloaded and installed on a PocketPC
remotely via a VPN connection? I have a client with 20 units out on the
field around the US and we need a way to have the users log into the server
and install software updates automatilcy.
Thanks.
Dean Penderghast Tag: Synchronize the POP3 account Tag: 81834
Keyboard Icon
I have an app that launches a dialog box initially that requires some input,
if this is launched from the today screen however the icon in the bottom
right stays as the connectivity icon but i need the input choices icon to
appear so the user can place input into an edit control inside of the
dialog, can anybody tell me how I can get this to appear.
Thanks in advance
Matt Tag: Synchronize the POP3 account Tag: 81829
File Transfer, Kiosk Mode ...
Hi all ¡¡
I'm a novice PPC programmer but with some problems already ...
First of all .. i'm programming in C#.Net and a smart device (Pocket PC,
Symbol device ) I need to solve two requirements:
1.- Move/copy files (.txt files) from a Pocket PC to a PC (desktop PC) using
an PocketPC application.
Unfortunately I can't use RAPI funcionts (these are from desktop side)
either Active Sync (the PPC app will send the files).
2.- I need to configure the PPC app in kiosk mode(well, not really in kiosk
mode I just need a full screen (hide the Start&SIP buttons))
... I think these are the big points in the project ...
Any help would be reallyyyy apreciated ¡¡
Thks .. Tag: Synchronize the POP3 account Tag: 81828
Anyone gotten secure sockets to work on PPC 2003?
I have an implementation of non-secure sockets that works fine. It's when I try to get secure sockets
to work that I am having difficulty.
So far I have tried to connect using SSL_FLAG_DEFER_HANDSHAKE with
SO_SSL_PERFORM_HANDSHAKE after the connect. I have also tried without
a deferred handshake. Nothing seems to work. Either the PERFORM_HANDSHAKE step fails or the connect
runs through without the SSL handshake taking place.
This is basically what I have tried (defer_handshake is used to test the two different options
described above):
socket()
ioctlsocket(FIONBIO)
setsockopt(SO_SECURE)
WSAIoctl(SO_SSL_SET_VALIDATE_CERT_HOOK)
if(defer_handshake)
WSAIoctl(SSL_FLAG_DEFER_HANDSHAKE)
non-blocking Connect()
if(defer_handshake)
WSAIoctl(SO_SSL_PERFORM_HANDSHAKE)
I have also tried to disable non-blocking IO before performing the handshake. Following the MS docs
doesn't seem to help. I can send source code if you like.
Here are a few docs and posts that I have been looking at:
MSDN - implementing secure sockets CE .NET
http://tinyurl.com/5z9ww
Using deferred handshake:
http://tinyurl.com/6arh4
A post with a vague answer about a bug from an MS guy:
http://tinyurl.com/44tut
This code didn't work either:
http://tinyurl.com/4qq35
Any help would be immensely appreciated.
Hank Tag: Synchronize the POP3 account Tag: 81827
winscard.lib für pocket pc sdk
hello,
i looking for winscard.lib in pocket pc sdk 2003.
i've downloaded the SDK, installed it, but there is no winscard.lib, only
the header.
documentation says that SCard-API is available under Windows CE 3.0 and
higher and one should link against winscard.lib.
Where is it?
Any help is much appreciated.
Thanks
Reinhold Schalk
Germany Tag: Synchronize the POP3 account Tag: 81825
Creating Install for pocket PC
Hello, I need help for create a install for pocket pc. The program requires a SQL CE database. I have a CAB for SQL and a CAB for my program. I would like create only one CAB for SQL CE and for my program. Why I do it?
thank's Tag: Synchronize the POP3 account Tag: 81819
HP 4150 Wifi signal strength api ?
Hi all
I've just bought a HP 4150 for testing and I see there is a very useful Wifi
signal meter in the notification bubble for the connection
Is there anyway to access the 'data' that this meter uses so that I can
incorporate a meter in my own app ? API's etc
TIA
Andrew Kennatrd Tag: Synchronize the POP3 account Tag: 81814
Getting database access
Hello,
I'm new to vb.net and want to use a database on my server and access it from
my PPC. I opened a new Smart Device App. but when I goto DATA in the menu
everyting is disabled...
How must I enamble this?
Koen Tag: Synchronize the POP3 account Tag: 81813
C# Wireless Network Client
I'm attempting to communicate with my server from my ipaq (5550,
PPC2003) client over an adhoc wifi network. I can ping the ipaq from
the server and vice versa, I can also browse webpages on the server
via PIE.
However my C# client generates a "No such host is known"
SocketException, when connecting to the server.
Connection code looks like this:
try {
TcpClient tc = new TcpClient("192.168.2.4", 5000);
NetworkStream ns = tc.GetStream();
StreamWriter st = new StreamWriter(ns);
st.WriteLine("data");
st.Flush();
}
catch (SocketException e){
//hande exceptions
}
The receiving server is running and listening on the correct port. Is
additional code needed or is it a configuration problem on the ipaq?
TIA Tag: Synchronize the POP3 account Tag: 81809
Dear All,
Is it possible to write a small program to force the
synchronization of the POP3 account in PPC?