how to stop a running process
I am a newbie. I am developing an application that uses threads to gather
data from a socket. I am finding that my code somehow does not let the main
UI thread do its job. so the screen (just for my application) does not
respond. I find that then I have to reset the ipaq to stop my application.
Is there another way to just kill my application? i read on this newsgroup
about sending the app a "kill message" if i have the applications "handle".
i am hoping for something more like "taskmanager" or a way to list running
processes on the PPC. select the process and kill it.
--
Maria Cruz
MTC Technologies.com Tag: ico Tag: 95001
CeGetDBInformationByHandle
I am calling CeGetDBInformationByHandle with a handle for an object store
database.
Shouldn't the guidVol field in the BY_HANDLE_DB_INFORMATION struct contain
the system GUID in this case?
It does not contain the system GUID!
The oidDbase is correct and also the name field in infDatabase. Tag: ico Tag: 94997
HOw to detect different wireless connections
Hi all,
Could you please tell me how can I detect different wireless connections
available using NDIS in a room in which I have my PDA.
Thanks,
Arsalan Tag: ico Tag: 94992
HTTP (and socket) connection fails after 73 connections...
Hi,
I have problems writing a http&socket client for PocketPC.
I'm using Jeode JVM and it seems that every client I develop
stops to make connections after 73 connections. This has to be
caused by the fact that somehow the PocketPC can not reuse
the local ports they are all used and I have not found a way
to free these ports. Normal socket disconnect/close does not
seem to help...
Any ideas how to solve this problem?
Best regards,
Ville Tag: ico Tag: 94991
ZIP library needed !!!
I need a zip library running on PPC, more clearly a packer which I can call
from within my application to compress already existent files.
I'm using embedded Microsoft eMbedded Visual C++ as development platform,
not a .net environment.
Anybody got a recommendation?
Kerstin Tag: ico Tag: 94989
*.lnk file format
Hello,
i need to start my app after a soft reset takes place. In order to archive
this I put a *.lnk file into auto start directory. The app is started but
the "sim pin app" is also started and hides my app. I need to know whether
my app was started by shell after soft reset or manually through user to
implement a workaround for the hiding of my app.
On a desktop machine I would pass some parameter to the app call but on ppc
device I don't know how to create a *.lnk file with parameters in it.
this is the content of my *.lnk file 27#"\hidden
applicationname.exe"
For every help I will thank in advance.
regards Sylvester Tag: ico Tag: 94987
How to write device Drivers
Dear friends
I have developed applications for PocketPC using Evc++ 4.0 . Now i want to
know how can i write a device driver using this ..?
To be very frank i want to know how to do embedded programing using EVC++
..can anybudy guide me ..or can suggest any book which will help me out to
learn this things. Tag: ico Tag: 94986
pocket ie \n newline in a textarea
Hi All
I have been searching this newsgroup for a workaround for the newline
character \n in pie (pocket internet explorer) textarea elements.
It is not supported on my XDA II (not sure what version of windows mobile
this runs?)
Anyway this works,
<textarea name=i1 rows=10 cols=50></textarea>
<script>
i1.value = 'start'+String.fromCharCode(13, 10)+'end'
</script>
this has been frustrating me for a while.
Stephen Tag: ico Tag: 94977
launching applications
I would like to know if anyone has some sample code, preferably in C#, that
demonstrates application A launching application B.
TIA. Tag: ico Tag: 94970
MSDN for Windows Mobile?
Greetings,
I am the director of sales and marketing for Mark/Space, Inc. We make a
piece of software called The Missing Sync for Pocket PC that allows a user
to sync their handheld apps with a Mac OS X computer. We currently have tens
of thousands of users.
We're getting close to releasing a major upgrade, The Missing Sync for
Windows Mobile, which will add support for POOM and Windows Mobile
Smartphone devices, and will introduce a plugin architecture that will allow
for third-party sync plugins for apps like FileMaker Mobile and Pocket
Quicken.
I am seeking information on developer programs that will help us evaluate
compatibility with future Windows Mobile OS releases and better plan our
roadmap. If anyone here would be willing to offer suggestions, I'd greatly
appreciate it.
Thanks in advance.
Eric
--
Eric Ullman
Director of Sales and Marketing
Mark/Space, Inc.
eullman@markspace.com
http://www.markspace.com Tag: ico Tag: 94969
eMbedded Visual C++ to launch Pocket Internet Explorer
I am looking for some sample code to launch Pocket Internet Explorer passing
the URL. I also would like to have the ability to launch Pocket Outlook.
Thanks in advance. Tag: ico Tag: 94968
Connecting to Linux using Jornada 568
Anyone ever have any success connecting their Jornada to a Linux os?
----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! 120,000+ Newsgroups
----= East and West-Coast Server Farms - Total Privacy via Encryption =---- Tag: ico Tag: 94964
Urgent please: error C2440!
Hi, this is my c++ code:
LPCWSTR *g_Phone[];
EXTERN_C void MyFunction(LPCWSTR aPhone[], int aLength, bool aDelete)
{
g_Phone = &aPhone;
[...cut code...]
}
this is the compile error:
Compiling...
mylibrary.cpp
k:\pocketpc\mylibrary\mylibrary.cpp(994) : error C2440: '=' : cannot convert
from 'const unsigned short ** []' to 'const unsigned short **[] '
There are no conversions to array types, although there are
conversions to references or pointers to arrays
Any clue??
Thanx in advance ;)) Tag: ico Tag: 94963
Command Line parameters to launch MMS Editor with Prepopulated fields
Hi Folks,
I am looking for tmail.exe (a.ka. Inboc application) Command Line parameters
to launch MMS editor with prepopulated fields(i.e. To, Subject and Picture
filed).
I tried providing mmsto uri scheme (e.g.
"mmsto:support@customercare.com?subject=Feedback" similar to
"mailto:support@companyname.com?subject=Feedback&body=Nice job") to
lpParameters data field of SHELLEXECUTEINFO structure and than calling
ShellExecuteInfoEx fn. to launch tmail.exe on Smartphone.
The the tmail.exe (aka Inbox application) launches but i do not see the MMS
editor screen prepopulated with the Subject and To fields populated. I would
also like to prepopulate the Picture/Video field.
Is there a command line to do the above. If not is there something in MAPI
that i can use.
thanks,
-Larry Tag: ico Tag: 94959
Using heRapiInit parameter in vb.net: how to use the delegate
Hi,
I am taking vb6 rapi code and converting it to vb.net. I found out I
can't user the addressof operator. I created a delegate type and and
assigned it the address of my function:
Public Delegate Sub ConnectorFunc()
Dim ConnectorDelegate As ConnectorFunc
ConnectorDelegate = AddressOf ConnectedRapi
I then set up rapi and call for a connection:
Try
With pRapiInit
.cbSize = Len(pRapiInit)
.heRapiInit = ConnectorDelegate
.hrRapiInit = 0
End With
hr = CeRapiInitEx(pRapiInit)
'RapiConnect = RapiGetCEOSVersionString() <> ""
RapiConnect = True
Exit Function
Catch ex As Exception
MsgBox("error in rapi is " & ex.Message)
End Try
I seem to get a good return from CeRapiInitEx (the return code is not
less than zero). But when I try to read a file I get a bad return
code:
lngRetVal = DEVICETODESKTOP("c:\AllData.xml", "", False, True,
"\AllData.xml")
The return code is large but I'll include it here for completeness;
maybe it means something to someone:
9222812404764049413
I'm wondering if I have to convert the delegate back to long since
heRapiInit is supposed to be of type long. And if I do, I'm not sure
how (I tried ctype but it didn't work). Any help would be appreciated.
Neil Tag: ico Tag: 94956
CUSTOM DRAW ToolBar
Hi everyone,
I have a problem and I hope you'll help me.
I want o create a ToolBar with two buttons, which are owner - drawn. I found
that I can set the TBSTYLE_CUSTOMERASE style of the ToolBar, and then handle
the NM_CUSTOMDRAW message. i set the style, and I get only the border line of
buttons, but I do not receive the NM_CUSTOMDRAWN message.
Can You tell me what I'm doing wrong? May be I took the wrong way to achive
my goal.
Thanks in ahead,
MuchaM Tag: ico Tag: 94952
SMS line feed...?
Hi,
I am trying to add a line feed to a message sent using SmsSendMessage
(p/invoked) in a c# mobile app. I have set the smsdeDataEncoding to GSM so \r
should translate into a line feed but this doesn't happen - it is repleaced
by a blank space when the message is received by another device.
Can anyone help? I have tried as many escape sequences as I can to try and
get this working. Any help is greatly appreciated! Tag: ico Tag: 94951
Problem with FTP
Hi,
I have a C# FTP class for Pocket PC 2003 which makes some ftp transfert but
I can't connect on specific FTP server, especially "IIS 5.0" and
"TypeSoftFtpServer".
I have no problem with IIS 6.0.
Does someone have an idea of that problem ?
Thanks in advance. Tag: ico Tag: 94949
Automatic File synchronization
Hi
I want to transfer some of the files which are in the different folders of
pocket pc ,to my desktop PC and vice versa,whenever i connect pocket PC to
DeskTop PC.
How can i define source and destination path in Active Sync to do so.
I have seen Active sync option for the same to define source and destination
but path for the same are not configurable ..i mean path are fixed in
MyDocument.\..
Thanks in advance for replying Tag: ico Tag: 94947
Development tool for Casio E-125
hi all,
I have a Casio E-125 for years now and I used to develop apps using eVC 3.0.
Now, can I use eVC 4.0 or better, Visual Studio 2003 with the correct SDK ?
Thanks,
Thierry Tag: ico Tag: 94940
Multiple Installations from the Same PC
This is a multi-part message in MIME format.
------=_NextPart_000_0018_01C5498A.B857BF40
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
Hello All,
I was hoping that someone out there could help me with my problem.
I have written an application that will be getting installed on multiple =
Pocket PC devices. However all of these device will want to be =
installed from the same Desktop PC.
I have created a MSI installation package to make the installation =
process a simple point and click activity however my problem lies in =
installing the application on multiple PocketPC's (Check out =
http://www.codeproject.com/netcf/packaginganddeployingPPC.asp)
Once you have installed the application once you get an entry in the =
'Add/Remove Programs' on the Desktop PC and you are forced by the =
installer to uninstall the application from the Desktop PC before a =
further install of the software can take place on another Pocket PC =
device.
I would like to know how to install the application on multiple Pocket =
PC devices without a reference being made to the installation on the =
Desktop PC.
Any Help is appreciated.
Bill
------=_NextPart_000_0018_01C5498A.B857BF40
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.2900.2604" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY>
<DIV><FONT face=3DTahoma size=3D2>Hello All,</FONT></DIV>
<DIV><FONT face=3DTahoma size=3D2></FONT> </DIV>
<DIV><FONT face=3DTahoma size=3D2>I was hoping that someone out there =
could help me=20
with my problem.</FONT></DIV>
<DIV><FONT face=3DTahoma size=3D2></FONT> </DIV>
<DIV><FONT face=3DTahoma size=3D2>I have written an application that =
will be getting=20
installed on multiple Pocket PC devices. However all of these =
device will=20
want to be installed from the same Desktop PC.</FONT></DIV>
<DIV><FONT face=3DTahoma size=3D2></FONT> </DIV>
<DIV><FONT face=3DTahoma size=3D2>I have created a MSI installation =
package to make=20
the installation process a simple point and click activity however my =
problem=20
lies in installing the application on multiple PocketPC's (Check =
out <A=20
href=3D"http://www.codeproject.com/netcf/packaginganddeployingPPC.asp">ht=
tp://www.codeproject.com/netcf/packaginganddeployingPPC.asp</A>)</FONT></=
DIV>
<DIV><FONT face=3DTahoma size=3D2></FONT> </DIV>
<DIV><FONT face=3DTahoma size=3D2>Once you have installed the =
application once=20
you get an entry in the <STRONG>'Add/Remove Programs'</STRONG> on the =
Desktop PC=20
and you are forced by the installer to uninstall the application from =
the=20
Desktop PC before a further install of the software can take place on =
another=20
Pocket PC device.</FONT></DIV>
<DIV><FONT face=3DTahoma size=3D2></FONT> </DIV>
<DIV><FONT face=3DTahoma size=3D2>I would like to know how to install =
the=20
application on multiple Pocket PC devices without a reference being made =
to the=20
installation on the Desktop PC.</FONT></DIV>
<DIV><FONT face=3DTahoma size=3D2></FONT> </DIV>
<DIV><FONT face=3DTahoma size=3D2>Any Help is appreciated.</FONT></DIV>
<DIV><FONT face=3DTahoma size=3D2></FONT> </DIV>
<DIV><FONT face=3DTahoma size=3D2>Bill</FONT></DIV></BODY></HTML>
------=_NextPart_000_0018_01C5498A.B857BF40-- Tag: ico Tag: 94939
Menu check mark magically disappears
Hi,
I hope somebody can help me with the following problem.
I simply use CheckMenuItem on a item in the regular main menu
previously created with SHCreateMenuBar. So far so good, that all works
like it is supposed to.
Through another menu item I open a settings dialog. As soon as I leave
this settings dialog, the previously set check mark in the main menu is
gone. Further attempts of calling CheckMenuItem seem to be alright when
I debug them, but the check mark doesn't appear again til I restart the
application.
Any thoughts on that issue ?
Somebody ran into the same problem ?
Regards,
Stefan Tag: ico Tag: 94937
Tool bar HWND from Command bar HWND
Hello all,
how do i get a HWND of the tool bar, displaying in my command bar, if i have
the HWND of the command bar.
Thanks
Raf Tag: ico Tag: 94936
problem about power
How to impletement Power function in control panel?
On battery power:
¿ÚTure off device if not used for X mininutes
On external power:
¿ÚTure off device if not used for X minitues
I want to disable ture off device when I application was running.
I changed registry entry
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Power value£¬
power of control panel display that setting changed,but for a moment,
device was turned off. Setting didn't take effect.
How to do???
Thanks in advance.
Plume-Tsee
2005-4-25 Tag: ico Tag: 94934
Adding bluetooth in based on PPC2003 SE
Hi.
My platform is PDA device based on PPC2003 SE & Xscale.
I wanna add bluetooth function in PPC2003 SE such as iPAQ device(3700).
I have known that PPC2003 SE has bluetooth function already.
but how am I add bluetooth function in PPC Image.
there is no environment variable. My cesysgen.bat has Only fallowing sentence
about bluetooth.
"set SHELLW_BLUETOOTH_MODULES="
if I know someting, I seem to add bluetooth function easily.
Let't me know how to add bluetooth function in PPC2003 SE.
Thanks for reading!
best regards... Tag: ico Tag: 94930
shortcut to point Netfront to a specific location?
I want to make a shortcut to point Netfront to a specific URL without
requiring the user to change his default browser to Netfront (if he did
that, of course a .url InternetShortcut would work).
I've tried the obvious:
255#"\Program Files\Netfront3\Netfront3.exe"
"file:///Program%20Files/My%20Program/html/index.html"
And Netfront starts all right but ignores the URL and just displays
whatever page was last cached. Tag: ico Tag: 94927
Problems sending HTTP posts to network using USB.
Hi,
Does anybody know what could be causing the following problems:
I'm sending HTTP POST requests to network from PocketPC that
is connected to USB cradle. This works fine for about 30 minutes
but after that I get exceptions for my sending code. Is this something
that could be caused by ActiveSync or other 3rd party component?
After I disconnect USB connections between PC and PPC software is
working well again.
I'm hoping that if I move to using direct Ethernet connection without
USB I should get rid of this problem anyway? Any suggestions what CF
ethernet card to use?
Regards,
Ville Tag: ico Tag: 94926
InternetAutodial
I'm getting an unresolved external link during compilation in eVC++ 4.0 when
I use InternetAutodial and InternetAutodialHangup. I'm compiling for Pocket
PC 2003. I've included wininet.h and linked to wininet.lib but still no luck.
Does anyone have any ideas on this one?
mike... Tag: ico Tag: 94924
VS 2003 requirements - Windows Mobile 2003 2nd Edition
Hi!
I have the following:
Windows XP with SP2
VS .Net 2003
PPC HP iPAQ hx4700 with Mobile 2003 Second Edition v. 4.21.1088
ActiveSync 3.7.1
What is needed to get this working. I'd like to be able to use the VS
environment to develop the application and also to deploy to the PPC device.
I've tried to do this with my current setup but I have only the following
options when trying to deploy from VS 2003:
Pocket PC Device
Windows CE .Net Device
No Windows Mobile 2003 Device! What do I have to do in order to have this
working?
Thanks!!!
/Peter Tag: ico Tag: 94921
New App Framework
We've just released a prototype of a new application framework that
runs directly from a USB flash drive on PCs, and will soon run on
handhelds. We'd very much appreciate developer feedback...
airWRX is an app framework that turns its host and other nearby PCs
into a multi-screen, web-like work environment. airWRX makes your flash
drive or handheld into a mobile application server, and any available
PCs into your personal workspace.
The framework is lightweight, extensible, and includes full source
code. Our goal is to enable developers to create sophisticated mobile
and collaborative applications that unify PCs and data like no tools
before have.
http://networkimprov.net/airwrx/ Tag: ico Tag: 94920
CF Type II Microdrive turn on/off
Hi,
Does anyone know how to control the power consumption of a CF Type II
microdrive? (Device is Asus MyPal A716)
Right now, it uses a lot of power when device is on although I'm no using it
constantly
I don't want to take it out because I know I will lose it
thx Tag: ico Tag: 94919
Use Pocket PC to control PowerPoint presentation, Windows Media Player, Winamp and iTunes
¡§PPC Tablet Remote Control Suite 2.0¡¨ software uses a Pocket PC screen to
emulate one or more "virtual" input devices, such as keyboard, keypad, macro
keys, touchpad and tablet, in order to remotely control a desktop or laptop
PC, or to complement the PC's existing input hardware. Download the free
trial from Handango or PocketGear:
Handango: http://www.handango.com/PlatformProductDetail.jsp?productId=144254
PocketGear: http://www.pocketgear.com/software_detail.asp?id=15882
The Client, deployed on the Pocket PC device, sends pre-defined input
signals to the Server on a host PC through an ActiveSync connection or any
TCP/IP network, wired or wireless. Saved in special layout profiles, the
input signals can include key strokes, key combinations, key sequences, and
mouse behaviors. The Designer can be used to create a new layout profile, or
modify or delete existing profiles. PPC Tablet is designed with the
following user needs in mind:
* Remotely controlling media playback on a PC.
* Remotely controlling a slideshow in a presentation room.
* Using the Pocket PC screen to create and send handwritten signatures or
annotations to a PC application.
* Speeding up repetitive data entry with special user-defined macro keys.
* Speeding up computer operation with customizable application-specific
macro keys or shortcut keys.
* Using a Pocket PC to complement existing input hardware with virtual input
devices, such as a virtual numeric keypad.
PPC Tablet 2.0 is also designed with network security in mind. Upon initial
connection from a Pocket PC device, the Server will prompt the PC user to
accept or reject the connection. Optionally, the Server can authenticate the
Windows user name and password supplied by the Client. If the authentication
is successful, the Server will accept the connection silently. To further
enhance security over TCP/IP networks, all communication between the Server
and Client is encrypted with 512-bit RSA cryptography after a connection is
established. This provides reasonable protection strength for the
communication, while maintaining good application performance.
The software comes with five pre-defined profiles: Default Devices, Tablet
Only, Personal Data, PowerPoint Presentation and Windows Media Player. The
Default Devices profile includes a touchpad, a tablet and a numeric keypad.
The Tablet Only profile includes a single tablet. The Personal Data provides
a set of buttons which users can customize with their own personal
information to speed up repetitive data entry in electronic forms. The
PowerPoint Presentation profile includes a set of pre-defined buttons to
start, stop and navigate through a slide show, as well as a touchpad that
can navigate the pointer or draw on a PowerPoint presentation. The Windows
Media Player profile provides a set of buttons to control media playback and
sound volume in Windows Media Player. All these profiles can be further
extended by the users based on their individual needs.
Addtional profiles, including those for Internet Explorer, Firefox, Winamp,
iTunes and WinTV, can be downloaded from our website:
http://www.aacompserv.com/AACompWeb/PPCTablet/Profiles.aspx
In addition to using pre-defined profiles, users can create their own
profiles with the Designer. The Designer supports the creation, modification
and deletion of software-emulated input components, such as key buttons,
mouse buttons, and navigation areas that can emulate a touchpad or tablet.
The size, location, label and corresponding action of each input component
are all customizable and saved into a specified profile.
PPC Tablet is compatible with all Pocket PC 2003 and Pocket PC 2003 SE
devices (including VGA-capable units), as well as Pocket PC 2002 devices
with .NET Compact Framework installed. For more information on the system
requirements, installation procedure and user instructions, please visit the
following web addresses.
Product Homepage: http://www.amorphous-media.com/ppctablet/whatisit.asp
Installation Guide:
http://www.amorphous-media.com/ppctablet/installationguide.asp
User Manual: http://www.amorphous-media.com/ppctablet/usermanual.asp Tag: ico Tag: 94918
changing postion of form on pocket pc
i am working on a smart device application which has the need for a
small form to open on the generation of a particular event. the form
should open in the centre of the screen. i have tried changing the
location and size property of the form but it doesn't work. the same
worked for a normal windows application. i am using c#.. any help ??? Tag: ico Tag: 94910
Bluetooth Serial comm
My program will send and receive serial data over SIR from a Dell X30
pocketpc. When I tried the same program with the comport switched over to
Bluetooth the pocketpc receives the same amount and correct characters sent
from my PC. When it sends characters from the pocket pc (comm.output ) the PC
only receives the first 2 chars of 4 chars sent then comm stops. The port
needs to be closed and reopened, it then repeats with just 2 chars sent. The
same problem occures with a bluetooth to serial adapter connected a DAQ board.
The program is written in a VB like language NSbasic using mscomm control.
Thanks for any help. Tag: ico Tag: 94908
Compact Framework SP3 + Visual Studio 2003
Hello,
how can I use die features from SP3 (Button.Backcolor...) with my Visual
Studio 2003???
Karsten Baumann Tag: ico Tag: 94900
Error in Compile
Hi, this is my c++ code:
LPCWSTR *g_Phone[];
EXTERN_C void MyFunction(LPCWSTR aPhone[], int aLength, bool aDelete)
{
g_Phone = &aPhone;
[...cut code...]
}
this is the compile error:
Compiling...
mylibrary.cpp
k:\pocketpc\mylibrary\mylibrary.cpp(994) : error C2440: '=' : cannot convert
from 'const unsigned short ** []' to 'const unsigned short **[] '
There are no conversions to array types, although there are
conversions to references or pointers to arrays
Any clue??
Thanx in advance Tag: ico Tag: 94893
Constant registry keys or similar to copy protect an application
Hi there,
I would like to write a copy protection linking the application to a similar
pocket pc. How can I read unique data such as serial number of the installed
Windows CE / Windows mobile or - if available - MAC-Nr?
I appreciate your help.
Klaus Tag: ico Tag: 94890
to choose a connection(GPRS or Wifi) I want
Hi,
So it is really possible to chose one connection ?
Chang'question was:
#1. Is it possible for me to choose a Connection I want? A typical use
case is: the device can dial up GPRS successfully, but once the device
roams into a Wifi hotspot, ConnectionManager will shutdown the GPRS
connection and use the Wifi connection, which happened not properly
configured. In this case, can I revert back to GPRS connection (since
it is actually usable)?
My thought is , it is similar to Win XP it is NOT possible to use dial-up
when LAN connected.
regards Tag: ico Tag: 94889
Automatic install
The object of discussion is the hardware reset of the pocket!!! It is known
that when do this all the program are deleted from memory.... I'd like to
automatic install my program like word, excel and the others application
that the system restore in automatic mode! Thanks...
Christian Tag: ico Tag: 94888
Reading SQL Serverdata from Pocket PC..
Hi, I want to read SQL Server data From My Pocket PC on wireless connection
Using VB.Net
Please Guide me for the same. and what all are the settings to be configure
in my Server and PocketPC.
--
Nasrul Saiyed
gre8work@yahoo.com Tag: ico Tag: 94886
Aligning Bulleted paragraph from right to left in PIE
Hi,
I am writing a help file, in Front Page HTML editor, which supposed to be
shown on the PocketPC in PIE.
Aligning regular text from right to left is OK.
I do not able to align completely bullets and numbering to the right.
I am able to align the text to the right perfectly, but the bullets and
numbering signs, are always appears on the left side.
Any suggestions how to overcome this problem?
Thanks,
Amir. Tag: ico Tag: 94878
Can someone explain these stupid versions?
Hi NG!
Sorry for the subject, but I hate that stupid MS marketing speak.
I searched on microsoft.com, also in my documentation for VS
2003, but I can't figure out, what all these Win CE versions
mean.
There is:
Windows CE.NET
PocketPC 2000, 2002, 2003
Windows Mobile
In VS you can create a device project for CE and for PPC, but
there's no help on the differences. It seems that you need .NET
CF in both cases, and I guess you can't create native code with
both. But am I wrong, because VS creates Cabs for different
processors? I know that .NET is IL, so why do .NET programs need
different installers?
Browsing through the group I figured out that PPC 2003 is
something equal to CE.NET 4.2. And the Windows Mobile versions
are for mobile phones/ smart phones, aren't they?
But on the Embedded World in Germany, I got a Windows CE trial
from MS. It version is 5.0, with EVC 4.0 SP4 for native
programming. If PPC 2003 (or Win CE.NET 4.2) is the latest
version you can get on devices what is CE 5.0?
I'm also confused in the names of the processor architectures
supportet by CE/PPC. I guess that ARM means Intel XScale PXAs,
but what are the differences between a Installer-Cab for ARM,
ARMV4 and ARMV4T?
So after all I believe MS intentions are to make the life of
beginners in the embedded development really hard. So I hope for
help in this forum.
Thanks in advance,
Andreas Tag: ico Tag: 94872
How to create a Popup Modal Dialog
How would I create a popup modal dialog similar to a messag box, but one
where I can add my own controls? I can create a child window with a
caption, ok button etc... but the title bar is always gray and it is
modeless. Thanks.
Timothy Dean
MobileDataforce Tag: ico Tag: 94871
GetProcAddresss
Hi,
I am using the following code to link a DLL at run-time but the
getprocaddress() function returns NULL and the getlasterror() shows
ERROR_INVALID_PARAMETER error. I am not sure what is goin wrong, I have used
dumpbin to check is the function is being exported and I see that it is being
exported..
Here is my code
typedef void (CALLBACK* LPFNDLLFUNC1) (LPTSTR);
HINSTANCE hinstLib;
LPFNDLLFUNC1 ProcAdd;
BOOL fFreeResult, fRunTimeLinkSuccess = FALSE;
// Get a handle to the DLL module.
hinstLib = LoadLibrary(L"expdll");
HMODULE hr = GetModuleHandle(L"expDll.dll");
if (hinstLib != NULL)
{
ProcAdd = (LPFNDLLFUNC1) GetProcAddress(hr, L"putsomething");
DWORD err;
err= GetLastError();
// If the function address is valid, call the function.
if (NULL != ProcAdd)
{
fRunTimeLinkSuccess = TRUE;
(ProcAdd) (L"Hello World");
}
// Free the DLL module.
fFreeResult = FreeLibrary(hinstLib);
}
Thanks in advance Tag: ico Tag: 94869
Mapping the function keys on a Symbol MC9000G
I have a client who is using a kiosk-style web application on this device. I
want to provide them with a .NET CF smart client app, and give them the
ability to switch back and forth between the pocket ie app and my CF app. I
had thought to use the application hotkey buttons, but the 53-key version of
the MC9000G does not appear to have them.
Does anyone have any advice on mapping the F1-F10 keys (blue-key/numeric
combo) to launch/switch to applications? Tag: ico Tag: 94866
Custom Server Sync
We've got a VB.NET application we want to deploy out to our handhelds... At
the moment, we are syncing email, calendar and contacts via exchange server
OMA... Is there any way to extend the protocol to somehow add in our own DLL
to sync our application that way too (we have remote users syncing via
Wireless HotSpots.
Graham Tag: ico Tag: 94860
How can i change the ico associate with the exe file in evc4? I have tried
changing the IDR_MAINFRAME without any result!
thanks...
You might need a soft-reset for the file explorer to pick up icon changes
--
Alex Feinman
---
Visit http://www.opennetcf.org
"Chri" <chrip@libero.it> wrote in message
news:eFd2QjmSFHA.164@TK2MSFTNGP12.phx.gbl...
> How can i change the ico associate with the exe file in evc4? I have tried
> changing the IDR_MAINFRAME without any result!
> thanks...
>