TCP/IP troubleshooting utilities
Hi,
I'm fairly new to Pocket PC development. I'm trying to get
a WM 2003 device working on IPv6.
MSDN lists a bunch of IPv6 utilities such as ipv6 etc, as
part of TCP/IP troubleshooting utilities.
But I don't see those utilities on my iPAQ device. Does
anyone know if those utilities are shipped with the new
iPAQ device or can I download them from somewhere?
Any pointers would be greatly appreciated.
Thanks,
Chen Tag: Pocket PC emulator Tag: 62254
ListView Checkboxes in C#
I have a list box in c# with check boxes in Detailed view. The check boxes
work but they are checked and unchecked when a row is selected without
hitting the check box. Is there a way to only set the check if they
specifically check the check box NOT just select a row.
I have set the listview style for check boxes
listView1.CheckBoxes = true;
Is there another style to prevent this from happening?
Scott Tag: Pocket PC emulator Tag: 62253
Copying large files from pocket pc to desktop and vice versa
I need to copy a large file from pocket pc to my desktop and vice
versa. I tried using the CeRAPI library, but i get an overflow error. can
any one please tell me what am i doing wrong.
The file is 4.53 MB in size. and this is the code i am using
/////////////////////////////////////////////////
Dim bytBuffer(4605952) As Byte
dim lngFileHandle as long
dim lngBytesRead as long
lngFileHandle = CeCreateFile(Form1.txtPPCfile.Text, GENERIC_READ,
FILE_SHARE_READ, vbNullString, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0)
intRetVal = CeReadFile(lngFileHandle, bytBuffer(0), 4605952,
lngBytesRead, 0)
/////////////////////////////////////////////////////////
when i run the above code, i get an overflow error. Is there a limit
on how big a file can be? Or am i missing anything
thanks
Nirankar Tag: Pocket PC emulator Tag: 62246
Set Wireless settings from a program
I'm trying to find out how to set up a wireless device
from a program. I need to set things like the channel,
WEP keys, SSID, and Infrastructure/Ad-hoc mode, and be
able to reset them back as well.
So far I've looked at the CSP's defined in the SDK and I
can run the CMProcessConfigXML, but I don't see the
ability to set all of these things.
I've also looked at the Ndis tools, such as
NdisGetAdapterNames(), which seem that they would allow me
to access these configuration items through the OID's
passed via the NdisRequest. I'm having problems getting
that going though, the embedded C++4.0 doesn't seem to
have access to some of the .h files referenced in the
ndis.h file (lss.h, for one).
Possibly this is available through the Platform Builder,
but that seems like building a device driver and I an
hesitant to go down that path.
Then of course there's the DeviceIoControl and GetFile(),
but these are stream-oriented and don't seem to apply.
I would appreciate any help on getting started.
Thanks
Alan Tag: Pocket PC emulator Tag: 62244
Starting out in pocket PC development.
Hi all,
I am just starting out in developing for the pocket PC and wondered if
someone could point me in the right direction.
I'm going the eVC++ route. I'm in the process of learning C++ and then
I need to get into the windows aspects, this is where I get a bit
lost. I believe that I need to get my head around the MFC, but is
there anything else that I should be looking at?.
Can anybody recomend any good books or, prefereably, websites where I
can learn the windows side of the process?.
Thanks in advance.
Jon Tag: Pocket PC emulator Tag: 62240
Can't disable button in dialog
I have a dialog box with two buttons: Cancel and Ok,
which use IDs IDCANCEL and IDOK, respectively. I want to
disable the Cancel button under some circumstances, so I
tried the following code:
SendDlgItemMessage(hDlg, IDCANCEL, WM_ENABLE, (WPARAM)
FALSE, (LPARAM)0);
It doesn't appear to do anything. The Cancel button is
still available. I can, however, hide it with the
following code:
ShowWindow(GetDlgItem(hDlg, IDCANCEL), SW_HIDE);
Any ideas why I can't disable it?
Thanks,
Don Tag: Pocket PC emulator Tag: 62239
URGENT: CABWIZ and duplicate file names
Hello!
I am trying to use Cabwiz to create a CAB file for a directory structure
such as this:
MyDir\Dir1\myfile.txt
MyDir\Dir2\myfile.txt
How would I specify this in the INF file? How do i differentiate the two
files with the same name in different directories??
I have this:
========================================================
...
[SourceDisksNames]
1 =, "One",,MyDir\Dir1
2 =, "Two",,MyDir\Dir2
[SourceDisksFiles]
myfile.txt = 1
myfile.txt = 2
[DestinationDirs]
OneFiles = 0, %InstallDir%\Dir1
TwoFiles = 0, %InstallDir%\Dir2
[OneFiles]
"myfile.txt"
[TwoFiles]
"myfile.txt"
========================================================
This causes cabwiz to use MyDir\Dir2\myfile.txt as the sole file (which
makes sense, since I essentially overwrote the statement
myfile.txt = 1
with
myfile.txt = 2
But how do I specify files with same names here?? I tried using
"Dir1\myfile.txt" = 1
"Dir2\myfile.txt" = 1
(by changing 1 to the parent directory, MyDir), but this doesn't work
either.
Please help!!!
James Tag: Pocket PC emulator Tag: 62234
emBedded Visual Basic - Cannot read table
Using emBedded Visual Basic (3.0) and I'm new to it. I'm trying to
establish a connection to a table...I can read the system tables but I
can't read a table that I create. Any help is appreciated. Tag: Pocket PC emulator Tag: 62233
DesktopToDevice overwrite fails
I'm having a problem with my current DesktopToDevice function in Access 2k
because something is different in the OS on the newest Dell Axim's. I do
not have this issue with any other devices.
Our current process works the first time that it is run, and the second time
that it is run the DeviceToDesktop process works normally but, when the
DesktopToDevice function is used to overwrite the previous tables, an error
occurs. Error 2147024864 is not in "List of Errors Returned by
ADOFiltr.dll" but, it indicates a file access rights issue.
Is there a simple way in Access 2k VB to tell what the file attributes are
and how can I overcome this problem?
Thanks, in advance,
RB Tag: Pocket PC emulator Tag: 62231
C# convert miliseconds to hours-minutes-seconds
Howdy,
question about C#........
Is there a nice way to convert miliseconds to Hours-minutes-seconds ?
i have made a functie that calculates that but maybe there is a class with a
miliseconds input and hours-minutes-seconds output??
info:
iam working on a timer, i get the miliseconds with Environment.TickCount
by the way, the emulator returns not the real miliseconds when you look at
Environment.TickCount. On the "hardware" pocketpc it works fine!
Greetings
Paul govers Tag: Pocket PC emulator Tag: 62228
String Problem!!!!
Hi,I write something to make it put a string to a file and read it out
afterward.But i found when i write in a string : "TestingTextForWrite" to
that file,I can only read the first character of that string,that's "T"
only,may I know how can i modify the code below to read the whole string i
write in that file?
CString Testing1;
CString Testing2 ;
Testing.Format(L"TestingTextForWrite");
//Write File Now
FILE *fp;
if((fp=fopen("\\Windows\\filename.dat","w"))==NULL)
{
MessageBox(L"File IO Error",L"Error");//error when no file found
}
fprintf(fp,"%s",Testing1);
fclose(fp);
//Read File
if((fp=fopen("\\Windows\\filename.dat","r"))=NULL)
{
MessageBox(L"File IO Error",L"Error");//error when no file found
}
fscanf(fp,"%s",Testing2);
fclose(fp);
//MessageBox(Testing2);
SetDlgItemText(IDC_TESTING,Testing2); Tag: Pocket PC emulator Tag: 62224
Urgent Help! MenuBar can not be created!
I have been all over looking for the answer to this and need to get it
done as quickly as possible!
I have a Embedded Visual Basic 3.0 program that uses the MenuBar
control. It works great when I run it through the Embedded Visual
Basic environment on my Desktop (I run it on the pocket pc Default
Device mode) but when I install the program after creating a setup I
get the following error:
The control MenuBar ({ODA80E6D-788B-43A4-A443-E35B1FBAD9CC}) could not
be created.
I have used the Control Manager (through the Tools->Remote tools menu)
as suggested in another thread on here and it is already installed. I
uninstalled it through Control Manager and reinstalled since I figured
I would try anything.
What am I missing? This same program worked fine on another Pocket PC
last year. Any suggested are appreciated.
Thanks.
Tim Ludwig Tag: Pocket PC emulator Tag: 62221
Migration from XP to pocketPC 2003
.
I would like to use pocket PC 2003 in order to get support
for VOIP
My questions are:
1. Does WINSOCK have the same functionality as "winrtp" ?
Does it implement RTP?
Can I use proprietary signaling on top of it?
2. This project also involves the using of Microsoft
outlook tools We are writing forms and their code in VB
script . We are also interfacing with External DLLs
(Microsoft dlls
and proprietary DLLs) from the outlook. We are handling
incoming message with VBA code and macros.
Could you please let me know if we can use our
VBAproject.OTM file for the VBA . Will the VB scripts work
on pOCKET PC 2003? Or should we re-write our
code. Are there any restrictions in developing on top of
POCKET pc 2003
outlook comparing to developing on windows XP outlook.
3. Is there a support for ADO ?
Thanks,
Maya Tag: Pocket PC emulator Tag: 62216
DNS issue
Hello all,
I'm able to authenticate and connect to some ISP using my client.
However I'm unable to browse any sites.
I get the "Page Cannot Be Found" Message.
If I give the IP address of the site I'm able to reach it.
It seems to be some DNS issue.
Could some one help me out.
Thank you,
Avinash Tag: Pocket PC emulator Tag: 62215
HTML Viewer Control Stop
Hi,
How I can obtain the stop behavior of IE in HTML control after the messages
DTM_NAVIGATE have send? When the control is loading a big page or a page
that contain a big image there could be a problem if another DTM_NAVIGATE
message before page is loaded or just setting html text with DTM_ADDTEXTW,
etc. So I would like to instruct the control to stop (cancel) all previous
process in order to start another navigate session or setting new text.
Thanks,
Idael Tag: Pocket PC emulator Tag: 62202
ToolBar button question
Hi,
is it possible to programatically change toolbars button's bitmap to
bitmap from resources.
I've tried this but it doesn't work:
((CMainFrame*)AfxGetMainWnd())->m_wndCommandBar.SetButtonInfo(10,
ID_STOP, TBBS_BUTTON, IDB_STOP);
m_wndCommandBar - CCeCommandBar
10 - zero-based index of button on the toolbar. (I counted all buttons
including the separators)
ID_STOP - new command ID
IDB_STOP - resource bitmap ID
--
----------------------------------
Milan Reznicek
Software Developer
e-mail: reznicekm@gytool.cz Tag: Pocket PC emulator Tag: 62198
Bluetooth Ports on Pocket PC 2003
Hi,
We have an application written for Pocket PC 2002 and it communicates with a
device using Bluetooth over COM8. Now our application does not work on the
new Pocket PC 2003. I have heard that HP has decided to discontinue using
the virtual COM ports for Bluetooth. Is this true ?
Any ideas or links where I can get more info regarding this ?
TIA
Regards
Suyog Tag: Pocket PC emulator Tag: 62195
Required steps for Pocket PC -> Bluetooth -> GPRS phone
Hi!
I'm about to start working on a project where a Pocket PC
with Bluetooth should be able to send and receive data
via a GPRS phone. I'm very experienced with the Win32
API, but the communication over air is not my speciality
(yet...), so I basically wonder what are the necessary
steps I must perform to make this work?
- Can/must I use sockets, lower level constructs or even
higher?
- How much in the process is "automatic", i.e., do I need
to manually fiddle with GPRS or Bluetooth settings when I
want to send something or will those parts "just work"?
- Is there a super duper web page explaining this in
detail (yeah, right...)?
- Do someone have a working example that can give me some
inspiration?
Thanks for any input on this matter! Tag: Pocket PC emulator Tag: 62192
Sql statements error
Hi im developing an application in evb and im having problems accessing the
database. everytime i try to send a sql query to the database that contains
fields from more than two tables i got an error saying that there is some
errors in the statement. This query string i have try it against an access
database in my pc and it works but when i try it in the pda against a cdb i
got errors.
I try this two statements and both got errors in the pda:
stringSql = "SELECT agente,razon " & _
"from pragente " & _
"INNER JOIN prtermin " & _
"ON pragente.agente=prtermin.agente"
and
stringSql = "Select pragente.agente,prtermin.agente from
pragente,prtermin where prtermin.agente = pragente.agente"
also i want some advice in the design of my application i have a function
that queries the db that has this statement
recordsetBD.Open stringSql, conexion, adOpenKeyset, adLockOptimistic
the recordsetbd is a global variable and i have to close it after read it,
is there any way to do it in a better way?, for the inserts i do an execute
command of the connection variable.
Thanks, i really apreciate your help.
Julio Villalba
MCP-CCNA-CLS Tag: Pocket PC emulator Tag: 62188
DLL error
Hi all,
I am currently facing problems with my program that uses
the ADOCE 3.1 control. After performing queries repeatedly
for some times, I get such errors:
1.) "An error was encountered while running this program"
ADOCE Resourc.dll "\windows\msdearEN.dll" is not installed
on this device.
2.) "ADOCE object could not be created"
I have noticed that the ADOCE object consumes lots of
memory and currently I using the solution from ODYSSEY
software called OSI util to handle this. It looks like the
memory leak might be the cuase of this problem, where the
leak until certain stage, other DLL are not able to be
loaded.
Any advice or solutions ?
Rgds,
Fong
. Tag: Pocket PC emulator Tag: 62186
Can't find registry entry to register my cePimCommand dll
Hello,
I want to create an add-in to the pocket outlook 'calendar'
application. So i create a dll which is exporting my cePimCommand
method. I am using Windows CE 3.0(not pocket pc 2002) compaq iPaq
pocket pc.
MYCEDLL_API void CePimCommand(HWND hWnd, PIMTYPE ptData, UINT
uDataCount, HANDLE *rghData, void *pReserved)
I also created a .def file. here is my definition file content
LIBRARY MyCEDll
EXPORTS
DllMain
CePimCommand @1
When i register this dll manually on the pocket pc i am getting
'mydll.dll was loaded but the DllRegisterServer entry point was not
found'. What does this mean? I have my DllMain function in my dll.
what am i missing?
As per the the documentation we have to create an entry in the
registry in the following key.
Software\Microsoft\PimApps\PimExtensions\pim_app\AddIns
All i have is a 'Pim' key under HKLM\software\Microsoft. but i couldnt
find the pimapps\pimextensions... key. So i created all the keys
starting from 'PimApps' under Microsoft key like this.
Software\Microsoft\PimApps\PimExtensions\Calender\AddIns\MyComp
DLL: mydll.dll
Menu: "MyMenu"
But i can not see any menu item added in the Tools menu of my
'Calender' application.
Please help me as i have to do it urgently.
Thanks and Regards,
Rajasekhar Tag: Pocket PC emulator Tag: 62184
visibility
I'm trying to create (what I think is) a simple webpage to display on
the PcoketPC 2003. I've included the code I thought would work (and
it does on my desktop computer), but it doesn't on PcoketPC 2003
emulator (I don't have real hardware to test on). Can anyone lend a
hand?
Thanks
<html>
<head>
<title>Control HTML Layer Visibility</title>
<script language=jscript>
function toggleMe(layerName)
{ if (document.all[layerName].style.visibility == 'visible')
{ document.all[layerName].style.visibility='hidden';
window.alert('hiding');
}
else
{ document.all[layerName].style.visibility='visible';
window.alert('showing');
}
}
</script>
<style type="text/css">
#menu {position:absolute;
left:10px;
top:35px;
width:150px;
height:150px;
visibility:visible;
border:1px solid #ff0000;
}
</style>
</head>
<body>
<a href="#" onclick="toggleMe('menu')">Display Layer</a>
<div id="menu" onclick="toggleMe('menu')">My Layer</div>
</body>
</html> Tag: Pocket PC emulator Tag: 62183
launch emulator with saved state from command line?
Hi,
I'd like to be able to launch the emulator from the command line but I
also don't want to have to set my pIE connection to use the proxy server
every time, so I'd like to be able to launch from the command line and
use my saved emulator state.
I see that emulator state is saved in .vsv files, and that I can launch
the emulator from the command line like this:
start "" "C:\Program Files\Windows CE
Tools\Common\Platman\bin\PBEmulator.exe" /MemorySize 64 /Fastbackground
/Skin "C:\Program Files\Windows CE Tools\wce420\POCKET PC
2003\Emulation\pocket_pc_emulator_skin.xml" /CEImage "C:\Program
Files\Windows CE Tools\wce420\POCKET PC 2003\Emulation\PPC_2003_WWE.bin"
/VMName "POCKET PC 2003 - POCKET PC 2003 Emulator" /HostKey 165
but does anyone know how I can use the .vsv file from the command line?
Thanks,
Gabrielle Tag: Pocket PC emulator Tag: 62179
PocketPC devices die while debugging !
I have killed three Pocket PC while debugging a C++ application. They are
all HP iPAQ H5450.
I was stepping through some code using MS Embedded Visual C++ when the
debugger crashed and the device hung. After removing the device from cradle
and reset, two of them would only display the splash screen but Windows CE
would not start. I then tried hardware reset, it doesn't help either. The
third one just won't connect to my PC anymore. I sent all of them back to HP
for repaired. Somehow they fixed the problem without replacing the units.
But I am starting to get nervous about debugging.
Is this a eVC++ problem or iPAQ problem? Anything I need to be careful about
while debugging?
Thanks
Weiyang Tag: Pocket PC emulator Tag: 62178
Anyone successful in installing two cab files with one install program?
My program is written in eVB and I currently have setup two installations.
One for my program and one for the eVB required files. I would like to
combine these into one installation.
I tried changing the setup to install two cab files, but it only will
install one.
Any ideas?
Thanks in Advance
Lorne Steiner Tag: Pocket PC emulator Tag: 62176
Displaying Dialog from DLL
When I attempt to display a Dialog box from a DLL, CDialog::DoModal cannot
find the dialog resource. I suspect that the resource is being looked for in
the EXE file and not the dll file. Can anyone tell me how I can pont the S/W
to the correct resource using CDialog? Tag: Pocket PC emulator Tag: 62174
Writing Custom SIP
I am writing my own SIP and cannot get the UserOptionsDlg
to work. Even the sample in "Programming Microsoft Windows
CE" does not work. Everything else works. Can anyone point
me at a working example of UserOptionsDlg?
Thanks Tag: Pocket PC emulator Tag: 62172
Memory leak tools...
What are people using these days to detect and fix memory leaks in Pocket PC
200x type development?
I have an eval version of the Entrek Toolbox and want to know if others have
used and what the feedback is. If not using Entrek, what are you using that
you can recommend?
Thanks in advance, Roupen N.
--- Tag: Pocket PC emulator Tag: 62170
CEAppMgr
I need to install CAB files to my PocketPC device, however
I'm aiming at minimal user intervention during the
installation process.
Is it possible to call CEAppMgr so that it uses the
default installation directory and doesn't display any
dialogs (such as "Retrieving Device Data")?
The following article:
http://www.pocketpcdn.com/articles/setupdll.html
mentions "displaying an installation wizard" as one of
custom actions during installation. It gives step by step
instructions on creating setup.dll, but how do I tell
CEAppMgr not to display the installation wizard?
I would appreciate your help. Thank you. Tag: Pocket PC emulator Tag: 62168
OLE DB Provider for ODBC on Pocket PC.
Hi All,
I am using an Oracle Lite database on a pocket PC for my
application. While I would like to use ADOCE to develop my app, Oracle
Lite does not provide an OLE DB provider for their pocket PC version.
I have read about the Microsoft OLE DB provider for ODBC data sources
using which an application can use ADO even with databases that do not
ship with an OLE DB provider by ridin on top of the MS ODE DB
provider.
I was wondering whether Microsoft has a similar OLE DB provider for
the pocket PC. If they do, then I could use ADOCE->MS OLEDB
Provider->ODBC->Olite just like I could on a win32 machine.
I'd really appreciate any pointers.
Thanks
Rohit Tag: Pocket PC emulator Tag: 62164
Joypad
I would like to use embeddet joypad of Ipaq 3XXX in a Evb application on
Pocketpc 2002.
Is it possible ? I found some information about Registerkey Api, but I am
not able to use it in Evb
Thanks Tag: Pocket PC emulator Tag: 62161
iPAQ 3950 - Raw IR problem
I developed an application for iPAQ H3150 using raw IR=20
comunication that it functioned perfectly. (Dev Tool:=20
Embedded Visual C++ 3.0)
Recently, I needed to install the program in one iPAQ=20
H3950 and the same software didn=B4t worked properly.=20
Talking with other developpers, I was advised to verify in=20
the website of the Compaq if they had updates for the=20
model of Pocket PC that I was using. I really found two=20
updates important that I finished making:
a) iPAQ H3950 and H3955 Pocket PC ROM Update
b) iPAQ H3900 Series Driver Updates (Infrared Fix)
The communication really improved, but still continue=20
appearing spurious characters, making impracticable the=20
process. Also already I made download of the SDK for=20
Pocket PC 2002, I compiled software again, but the problem=20
continues existing.
After many research in some newsgroups, I verified that=20
more people has similar problems. I would like to know as=20
the people who had faced this exactly problem and solved=20
it.
Thanks! Tag: Pocket PC emulator Tag: 62160
VS .NET 2003 doesn't see device.
Hi,
my Visual Studio 2003 doesn't connect to my PDA Casio
Cassiopea 200I. I have ActiveSync3.7 connected and
synchronized with the device, but if I make a new smart
device project targetted pocket pc I can't connect to the
device having the message the device is not physically
connected to the development computer.
I also have eVB3.0 which I use for other projects and
everything is OK with it.
Things work fine with an iPAQ.
Any help will be appreciated a lot.
Thanks,
Ciao
Davide. Tag: Pocket PC emulator Tag: 62151
DesktopToDevice
I want to use DesktopToDevice() functions in AdoFiltr.dll with an ODBC data
source. I have no problem using these functions with an .mdb file. However,
I want to use MS Access via an ODBC data source. I am using VB.
I tried the following:
DesktopToDevice("My_DSN", "", False, TRUE, "\Program Files\MyData.cdb")
When I call the function this way I get an error saying the file
"C:\My_DSN.mdb" could not be found.
Any help would be greatly appreciated.
Thanks,
..Nikhil Tag: Pocket PC emulator Tag: 62146
Application Error "msdaerCH.dll"
Hi all,
I have a problem about run eMbedded Visual Basic program.
When I run the .vb file in pocket pc, the Application
Error was happened. There are "An error was encountered
while running this program: ADOCE Resource
DLL '\Windows\msdaerCH.dll' is not installed on this
device.
Thanks, Tag: Pocket PC emulator Tag: 62144
Intermediate drivers on PocketPC 2003
Hi!
I have written an intermediate driver for Windows CE .net 4.1 (and 4.2). It
works well on Pocket PC 2003 except for when installed over a wireless NIC
the wireless tab in the settings dialog disappears. (Settings/Connections ->
Connections/Advanced -> Network Card).
The NIC is still functional, but you can't change SSID etc anymore since
that particular tab is gone.
It might have something to do with WZCSAPI (Wireless Zero Configuration API)
but I can't find any documentation whatsoever about that API. Tag: Pocket PC emulator Tag: 62142
Problem in lineSetDevConfig
Hi All
I'm facing the problem in LineSetDevConfig() API during
set device configuration in the PocketPC.It is not
returning any negative value.It returns 0 but device(Modem
configuration is not setting properly.
Any kind of suggestion is most welcome.....\
Regards
Patra Tag: Pocket PC emulator Tag: 62140
App in fullscreen
Hi,
I want my pocketpc 2002 app to start in fullscreen. I mean without taskbar
and startbutton.
With the code I now use my app starts good, but when any other program does
something ea. msgbox the taskbar appears and I can't loose it.
Also when I switch my pocketpc off and on the taskbar appears.
Does anyone know how to get my app always on fullscreen?
I'm developing in VB.NET with the .NET Compactframework on a pocketpc 2002.
Thanks in advance,
John Tag: Pocket PC emulator Tag: 62138
Using eVC++ 4.0
I want to develop a application for the new Pocket PC
2003. So i followed the instructions to download and
install all the necessari files on my computer.
1. Install Active Sync 3.7
2. Install eVC++ 4.0 and eVC++ sp2.
3. Install Pocket PC 2003 SDK.
4. Install the Pocket PC 2003 Emulation Image.
But when i want to create a new project in eVC++ 4.0, i
cant choose the CPU's platform for the project. All the
platforms list is there, but has beed disabled.
And also, i didn't see the Pocket PC Emulator in the
Platform manager. Only the default device is listed in the
Platform manager. Doesn't it suppose to automatically load
the emulator after i install the P.PC 2003 SDK and
emulator, just like eVC++ 3.0?
One point worth noting, during the installation of eVC ++
4.0 and the SDK, an error message came out at the end of
the installation:
"There is no script engine associated with file
extension: .vbs"
Can this be the problem?
My computer specs:
Pentium 4 1.4GHz
Windows XP Professional sp1
Please help. Tag: Pocket PC emulator Tag: 62135
App in fullscreen
Hi,
Does anyone know how to get my app in fullscreen (kiosk)? Without
startbutton en taskbar.
I want that my app starts in fullscreen when i start my app. And when you
turn of the pocketpc and on again it must stay in fullscreen.
The method I now use works when I start my app, but when I restart the
pocket
I'm developing in VB.NET with the .NET Compact framework.
Thanks in advance,
Johnny Tag: Pocket PC emulator Tag: 62134
iPAQ CF driver problem
Hi all,
I am writing a stream-interface driver for a hardware
using CF slot (PCMCIA). The OS is Windows CE.
The driver works well with other brands of Pocket PC e.g.
Dell and Toshiba but not iPAQ. The CF slot appears in the
Expansion Pack of iPAQ. Is there anything of particular
importance when dealing with the Expansion Pack of iPAQ?
What I use so far is not specific hardware-dependent DDK
but just standard cardserv.h etc.
Thanks much!
Panda Tag: Pocket PC emulator Tag: 62133
running evb on ppc2003
dear all,
i m new to Window CE 4.20 and hv developed some older Windows CE 4.0 app
before.
i used to use eVB 3.0 on my some cassiopedia pda and running ok.
i hv new development requirement on hp iPAQ h2200 which runs on Windows
CE 4.20 OS.
the previous program that i hv written fails to be ported to the new hp
iPAQ pda.
i hv notice that the new hp PDA is running Pocket PC 2003 which means it
onli supports
eVC or VB.Net development tools.
i need some advise on how to make my program written using eVB 3.0 to
run on the
new iPAQ pda.
basically, a guideline on what tools to use and where to get the tools
would be very useful.
for your information, i hv tried to install eVB runtime for WinCE4.20
with no success.
the program.vb executed on the pda give error : "This is not a valid
Pocket PC application."
your help is very much appreciated. thanks. Tag: Pocket PC emulator Tag: 62129
ItemData of ListView in C#
How can you set the item data in a listView in C# I am using the following
code into two columns. How do i associate a itemdata with each row it
insert. I don't see anything about itemdata property
ListViewItem lvi = new ListViewItem();
lvi.Text = fiNext.Name;
lvi.SubItems.Add(fiNext.LastWriteTime.ToShortDateString());
listView1.Items.Add( lvi ); Tag: Pocket PC emulator Tag: 62123
Re: Internet Javascript problems
I have T-Mobile Pocket PC with version the latest upgraded version software
"Compassluxor" <compassluxor@libertycg.com> wrote in message news:...
> Hello Guys. I'm trying to access a few sites and I'm having problems
> 1) http://www.dealersuite.com/ADP/framesets/dealer_services/autocheck.html
> I get JavaScript Error as well as the message says that No login name and
> password detected.
> 2) When I go to eBay.com and trying to login using My, it doesn't show the
> bar that is located on the right hand side.
> Please help if you know how to resolve this problem
> Thank you
> Steven
>
> Tag: Pocket PC emulator Tag: 62111
Internet Javascript problems
Hello Guys. I'm trying to access a few sites and I'm having problems
1) http://www.dealersuite.com/ADP/framesets/dealer_services/autocheck.html
I get JavaScript Error as well as the message says that No login name and
password detected.
2) When I go to eBay.com and trying to login using My, it doesn't show the
bar that is located on the right hand side.
Please help if you know how to resolve this problem
Thank you
Steven Tag: Pocket PC emulator Tag: 62110
Is it a serial port on ViewSonic V37?
Hi all,
You know the port on the V37 that connected to the
cradle...Is it a serial port, a USB port or a proprietary
port?
If it is a serial port, could I write a normal serial
comm. program ( CreateFile(), WriteFile()...) to talk with
a serial device connected to that port with a proper rs232
cable?
Thanks, Tag: Pocket PC emulator Tag: 62107
Programmatically copy a .cab file to the device
I came across programs that copy a text file from the
desktop to a PocketPC device using RAPI API calls, but I'm
getting an 'Overflow' error when I try to copy a .cab
file. How do I do this?
I would appreciate your help. Thank you! Tag: Pocket PC emulator Tag: 62094
Emulation and ActiveX control
Greetings,
I am developing an EVC++ application using a third party activex
control. The application runs fine on the target device. My problem
exists with the PPC2002 emulator. I used remoteFileviewer to export
regsrvce and the dlls for the activeX control. I get errors when I try
to register the dlls with regsvrce, the return errors are c1 and 7e.
Has anyone had this prolem and found a solution? Also, is there a list
of errors and explanation of them.
Thanks Tag: Pocket PC emulator Tag: 62087
Hi there,
Could anyone please advise some mature and stable pocket pc emulators for
Linux platform and Winodws?
Thanks in advance.