CStatic
Hi,
I'm trying to change programmaticaly the text in a CStatic field.
I've added a CStatic variabile and associated to the control. If in the
init dialog I write
m_ctlText.SetWindowText(_T(""New Text"));
nothing change.
I've tryed to invalidate the control and use UpdateWindow without
reaching my goal. What can I do to update the text ?
Stefano Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115474
Trouble while installing pocket pc sdk
Hi All,
When I install pocket pc sdk and restart my computer, I get a
message from windows that windows has disabled some pocket pc drivers
as they would make windows unstable. So when I try to launch the
emulator I get missing files error and the application closes. What
should I do?
Thanks and Regards,
Noor Fatma. Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115466
help in configuring pocket pc emulator
Hi All,
I have just started working with the pocket pc sdk. the IDE i am
using is eVC. I am following the pocket pc sdk help. when I go to the
tools->configure platform manager option on the IDE and open the
property box of the pocket pc emulator, and I try to configure start up
server (manual or activesync), I get a pop up window saying that this
server does not need any configuration. Now when I click the test
button, the connection between the platform manager and the device is
not made. the transport mechanism i have used is tcp/ip for wince.
please help.
Thanks and Regards,
Noor. Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115465
create game in Landscape mode
Hi All
I am creating game application for pocket PC device in CF2.0. I am new
to CF2.0 I need help from people to develop the game. The game created
works nice in Portrait. But i want to set the screen mode to Landscape
(always).
Could any one help me how to set screen in Landscape mode. That is the
game should be viewed only in landscape mode.Even if screen is in
portrait mode it should automatically change to landscape.
Thanx in advance.
Ashok. Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115464
Pocket PC Apps forsale
Pocket PC Apps forsale, Resistor calculator $10, 10 Catagory Database $20,
Converter 130 types $20, See below link GUI
http://us.f13.yahoofs.com/bc/4469472cm9fba2f91/bc/total2.gif?bfvOZDFBm2dt2s7X
Email scott93727@aol.com Paypal Accepted Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115456
Web Exception error please help
I have a web service connected to a sql server 2005 express. The service has
a web method and information is extracted from the database through a stored
procedure that has two parameter:input and output. So for example some one
could supply a stock brokers name and in turn one gets the stock broker's
charging commission. Here's the code for that (connection established through
the gui):
<WebMethod()> _
Public Sub GetFee(ByVal brokerName As String, ByRef brokerFee As Single)
Dim cmd As New SqlCommand("GetDealingFee", sqlConn)
cmd.CommandType = CommandType.StoredProcedure
cmd.Parameters.Add("@BName", SqlDbType.VarChar, 50)
cmd.Parameters("@BName").Direction = ParameterDirection.Input
cmd.Parameters("@BName").Value = brokerName
cmd.Parameters.Add("@Fee", SqlDbType.Real)
cmd.Parameters("@Fee").Direction = ParameterDirection.Output
If cmd.Connection.State <> ConnectionState.Open Then
cmd.Connection.Open()
End If
cmd.ExecuteNonQuery()
brokerFee = cmd.Parameters("@Fee").Value
cmd.Connection.Close()
When I consume the service by a pocket pc (through activesync) i get a
system.net.webexception erro and this is stack trace:
at System.Web.Services.Protocols.SoapHttpClientProtocol.doInvoke()
at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke()
at DeviceApplication_Stockbrokers.localhost.Service.GetFee()
at DeviceApplication_Stockbrokers.Form1.Button1_Click()
at System.Windows.Forms.Control.OnClick()
at System.Windows.Forms.Button.OnClick()
at System.Windows.Forms.ButtonBase.WnProc()
at System.Windows.Forms.Control._InternalWnProc()
at Microsoft.AGL.Forms.EVL.EnterMainLoop()
at System.Windows.Forms.Application.Run()
at DeviceApplication_Stockbrokers.Form1.Main()
At this stage my knowledge is limited and any help of what's happening and
how to fix this error will be appreciated.
I use win2003 server and Visual Studio 2005 Prof (using VB) and published
the web service to a local IIS.
Thanks.
--
UK Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115454
WM05 PPC menu bar and dialogs
I have not been able to figure this out.
I have a dialog with a button. When the application start I create the
dialog and it it shown to the user. At this point if I press the right
or left keys that handle the menu bar is all fine.
I pres the button in the dialog. Now the menu is bar is responsive only
through the touch screen, not through the hard keys.
Is there any reason why that is the case. Do I need to create a new
Menu bar for the dialog to be able to use it?
Thanks,
marc Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115453
start timer synchronized with system time or use systemtime events
Hi
I want to do something each minute, but it needs to be synch to Local
or system time
If I do:
SetTimer(hWnd, 1, 60000, TimerProc);
it will not be synch to the local time on PPC :-(
do you have a solution ?
thanks in advance
Lotfi Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115452
How to deploy .net compact framework 2.0 with WM5 App in one cab file?
Hi,
A problem occurs when I wan't to deploy a WM5 App which with
requiremetont
of .net compact framework 2.0 is installed on the target device.
Since the cab files of ,net compact framework 2.0 contains several
versions for different types of CPUs. It is not reasonablly to install
.netcf by users.How to package one cab file contain's .net compact
framework 2.0 and my WM5 App such that users only need to install once
? Thanks for any help...
ChunKai Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115450
Intercepting Range of Menu Commands
Hello,
I have a dialog box with a menu that I dynamically add Menu items to the
menu. I also assign consecutive commands to this menu list. However, I'm
not sure how to intercept menu user events in single function with the
command id passed as parameter. I can not use ON_COMMAND since i do not know
how many menu items i will append.
Is there an easy way to do that.
Thanks Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115449
Adding attributes in MSM 5.0 C#
I have some custom controls and I would like to set some of their propertys'
default values. I go to the property window for the property (AutoBackColor)
on the Class Diagram page and click the elipsis for the Custom Attributes
property. A box comes up and I enter
DefaultValue("bool", "true")
When I instantiate my custom control, the AutoBackColor property is set to
false!
It is very frustrating because I can not find any source for the proper
syntax for adding system attributes to C sharp programs in the Windows Mobile
5 platform.
Thanks,
Jim Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115435
Strange error when compiling project
Hi!
I am trying to migrate a project from VS2003 to VS2005 but this seems harder
than I was hoping for. When I try to compile my project I receive the
following error, although it's flagged as a Warning:
An internal error occurred in PlatformVerificationTask.
System.IO.FileLoadException: Could not load file or assembly
'System.PocketPC.asmmeta, Version=1.0.5000.0, Culture=neutral,
PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The data
necessary to complete this operation is not yet available. (Exception from
HRESULT: 0x8000000A)
File name: 'System.PocketPC.asmmeta, Version=1.0.5000.0, Culture=neutral,
PublicKeyToken=b03f5f7f11d50a3a' --->
System.Runtime.InteropServices.COMException (0x8000000A): The data necessary
to complete this operation is not yet available. (Exception from HRESULT:
0x8000000A)
at EnvDTE.OutputGroup.get_FileCount()
at
Microsoft.CompactFramework.Design.DeviceTypeResolutionService.GetProjectOutputs(Project
project)
at
Microsoft.CompactFramework.Design.DeviceTypeResolutionService.AddProjectEntries(Project
project, List`1 entries, Boolean thisProject)
at
Microsoft.CompactFramework.Design.DeviceTypeResolutionService.EnsurePopulated(Boolean
fPopulateProject)
at
Microsoft.CompactFramework.Design.DeviceTypeResolutionService.SearchProjectEntries(AssemblyName
assemblyName, String typeName, Boolean ignoreTypeCase, Boolean
reflectionBased, Assembly& assembly)
at
Microsoft.CompactFramework.Design.DeviceTypeResolutionService.SearchEntries(AssemblyName
assemblyName, String typeName, Boolean ignoreTypeCase, Boolean
reflectionBased, Assembly& assembly)
at
Microsoft.CompactFramework.Design.DeviceTypeResolutionService.System.ComponentModel.Design.ITypeResolutionService.GetAssembly(AssemblyName
name, Boolean throwOnError)
at
Microsoft.CompactFramework.Design.DeviceTypeResolutionService.System.ComponentModel.Design.ITypeResolutionService.GetAssembly(AssemblyName
name)
at
Microsoft.VisualStudio.Design.VSDynamicTypeService.OnAssemblyResolve(Object
sender, ResolveEventArgs e)
at System.AppDomain.OnAssemblyResolveEvent(String assemblyFullName)
at System.Reflection.Assembly.GetType(String name, Boolean throwOnError,
Boolean ignoreCase)
at System.Reflection.Assembly.GetType(String name)
at Microsoft.CompactFramework.Build.MetadataService.GetAsmmetaType(Type
sourceType)
at
Microsoft.CompactFramework.Build.MetadataService.GetTypeAttributes(String
instanceType)
at
Microsoft.CompactFramework.Build.Tasks.PlatformVerificationRule.VisitExpressionStatement(ExpressionStatement
statement)
at Microsoft.CompactFramework.Build.Compiler.StandardVisitor.Visit(Node
node)
at
Microsoft.CompactFramework.Build.Compiler.StandardVisitor.VisitStatementList(StatementList
statements)
at
Microsoft.CompactFramework.Build.Compiler.StandardVisitor.VisitBlock(Block
block)
at Microsoft.CompactFramework.Build.Compiler.StandardVisitor.Visit(Node
node)
at
Microsoft.CompactFramework.Build.Compiler.StandardVisitor.VisitStatementList(StatementList
statements)
at
Microsoft.CompactFramework.Build.Compiler.StandardVisitor.VisitBlock(Block
block)
at
Microsoft.CompactFramework.Build.Compiler.StandardVisitor.VisitMethod(Method
method)
at Microsoft.CompactFramework.Build.Compiler.StandardVisitor.Visit(Node
node)
at
Microsoft.CompactFramework.Build.Compiler.StandardVisitor.VisitMemberList(MemberList
members)
at
Microsoft.CompactFramework.Build.Compiler.StandardVisitor.VisitTypeNode(TypeNode
typeNode)
at
Microsoft.CompactFramework.Build.Compiler.StandardVisitor.VisitClass(Class
Class)
at Microsoft.CompactFramework.Build.Compiler.StandardVisitor.Visit(Node
node)
at
Microsoft.CompactFramework.Build.Compiler.StandardVisitor.VisitTypeNodeList(TypeNodeList
types)
at
Microsoft.CompactFramework.Build.Compiler.StandardVisitor.VisitModule(Module
module)
at
Microsoft.CompactFramework.Build.Compiler.StandardVisitor.VisitAssembly(AssemblyNode
assembly)
at
Microsoft.CompactFramework.Build.Tasks.PlatformVerificationTask.Execute()
Any ideas what could be causing this error?
Thanks in advance,
Peter Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115434
Is there an interface for accessing a remote database from pocketpc?
Hi, All:
I know RDA works for MS Sql server 2000/2005, but I like to access many
other databases like Oracle, mySQL, Access, ..... from my pocket pc. Is
there a generic interface for me to access a remote database other than MS
Sql server 2000/2005 from a pocket pc?
Why does RDA require IIS? It does not make sense to me. It adds an extra
layer, doesn't it? Could you explain it for me?
Thanks. Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115425
Urgent: I need ftp help
Hi,
I am developing an appl. for pocket pc Mobile5
i need to send a file to an ftp server, and receive an file from the ftp
server.
Can someone show me example of receiving and sending a file?
I use vs2005 c++
thanks for all help. Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115422
windows mobile version numbering, changelog
Hi,
I need to use i specific feature in my software which depends on a bug fix
by Microsoft. All I know (see
http://groups.google.de/group/microsoft.public.dotnet.framework.compactframework/msg/783090e137d07cf8) is
>
> many *future*WM5 devices will have it working
>
Is there a changelog for wm2005 with build numbers I can use to detect if a
device has this bug fixed or not? By the way: what about updated emulator
images?
Thank you!
Martin Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115421
Identify Windows Mobile 5.0 during compilation
Hi,
I'm porting from evc3.0/4.0 to visual studio 2005 mobile 5.0 but would
like to keep as much of the source common as possible.
Currently I'm using this trick
http://groups.google.com/group/microsoft.public.pocketpc.developer/browse_thread/thread/89e9fb6e3f69f41f/ef169d1204763d49?lnk=st&q=platform+mobile+5.0+group%3Amicrosoft.public.pocketpc.developer&rnum=2&hl=en#ef169d1204763d49
to detect CE version and device type (SDK id).
What is the trick to detect mobile 5.0 and use it as a #ifdef ?
Regards
Laery Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115420
WinCE COM port doesn't work on low baud rates
I am working on some program that has to comunicate at low baud rates.
Problem is that data is sometime transmitted, and sometime not. There
is no pattern in that.
I tried it on HP6515 and Toradex Colibri evaluation board. HP6515 is
Pocket PC 2003, and Colibri is WM 5.0. I tried that from VS2003, and
VS2005. It is allways the same. I tried new System.IO.Ports.SerialPort
control in CF2. The problem persist.
I put some wireing connected to COM port and HyperTerminal to listen
data between PDA and my device. I even put osciloscope on TX line that
is triggered wit RTS line that goes high to make sure that data is
transmitted or not. Sometimes there is no data.
On baud rates higher than 2400 (4800,9600,19200...) the code work OK.
Here is my sample code. Just place new class in your project, and call
it with
Dim comTemp as New Comm
comTemp.SendData("Some data")
Public Class Comm
Private WithEvents COMctl As OpenNETCF.IO.Serial.Port
Public Sub OpenPort()
Dim setTemp As New OpenNETCF.IO.Serial.HandshakeNone
'Set port to 300 7 E 1
setTemp.BasicSettings.BaudRate =
OpenNETCF.IO.Serial.BaudRates.CBR_300
setTemp.BasicSettings.ByteSize = 7
setTemp.BasicSettings.Parity = OpenNETCF.IO.Serial.Parity.even
setTemp.BasicSettings.StopBits =
OpenNETCF.IO.Serial.StopBits.one
Me.COMctl = New OpenNETCF.IO.Serial.Port("COM1:", setTemp)
Me.COMctl.Open()
Me.COMctl.DTREnable = True 'DTR line drives device connected
on COM1
End Sub
Public Sub ClosePort()
Me.COMctl.DTREnable = False
Me.COMctl.Close()
Me.COMctl.Dispose()
MyBase.Finalize()
End Sub
Public Sub SendData(ByVal strOut As String)
Call OpenPort()
Dim buf() As Byte
buf = System.Text.ASCIIEncoding.ASCII.GetBytes(strOut)
Me.COMctl.RTSEnable = True 'needed to trigger osciloscope
COMctl.Output = buf
System.Threading.Thread.Sleep(500)
Me.COMctl.RTSEnable = False
Call ClosePort()
End Sub
End Class Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115419
Moving a Notification LED Driver from GWES to Device Manager
Hi all,
We have one LED and a vibrator on our board and are about to develop our
drivers for Windows Mobile. We refers to the help documentation on " Moving a
Notification LED Driver from GWES to Device Manager".
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wceddk5/html/wce50howhowtomovenotificationleddriverfromgwestodevicemanager.asp
This supposed to help us to develop a NLED driver to be loaded by Device
Manager. We followed the steps given there, but could not get the DLL file
generated. Anyone here have done this before? Kindly give us some advise.
Thanks. Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115418
Change Font help
Hi, I have an ActiveX digital clock and the following code is in the OnDraw()
function:
HRESULT OnDraw(ATL_DRAWINFO& di)
{
RECT& rc = *(RECT*)di.prcBounds;
HBRUSH hBrush, hOldBrush;
hBrush = (HBRUSH)GetStockObject(WHITE_BRUSH);
hOldBrush = (HBRUSH)SelectObject(di.hdcDraw, hBrush);
Rectangle(
di.hdcDraw,
rc.left,
rc.top,
rc.right,
rc.bottom);
SelectObject(di.hdcDraw, hOldBrush);
TCHAR pszText[10];
wsprintf(pszText, _T("%02d:%02d:%02d"),
m_sHour, m_sMinute, m_sSecond);
DrawText(
di.hdcDraw,
pszText,
-1,
&rc,
DT_CENTER | DT_VCENTER | DT_SINGLELINE);
return S_OK;
}
How can I change the font and size so that I can change the appearance of
the clock?
Thanks for any help you guys can give me. Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115415
Example using IShellNotificationCallback
Does anyone have a Shell Notification example that uses the
IShellNotificationCallback:OnCommandSelected interface? Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115410
Relato de la nueva gran batalla de Fidel
CON LA PASION DE SIEMPRE HABLO DE CHAVEZ, DE LA MEDICINA CUBANA... Y DE
SU PROPIA MUERTE
Relato de la nueva gran batalla de Fidel
El l=EDder cubano mostr=F3 c=F3mo evoluciona su recuperaci=F3n en el
encuentro con el diputado argentino. Tambi=E9n elogi=F3 a Hugo Ch=E1vez
por su lucha para ingresar al Consejo Permanente de la ONU y por
aliarse a sectores medios para "hacer los cambios
democr=E1ticamente" y mostr=F3 su preocupaci=F3n por terminar de editar
sus memorias en vida.
Por Miguel Bonasso
Desde La Habana
Castro y Bonasso compartieron 90 minutos. El diputado argentino le
regal=F3 un ordenador de viaje.
Me hab=EDa preparado para verlo, pero la realidad fue mucho m=E1s fuerte.
Incluso le llevaba de regalo un ordenador de viaje. Es decir una suerte
de cartuchera de cuero argentino, que en su interior tiene espacios
predeterminados para papeles, tarjetas, pasaje, pasaporte, anotaciones
varias, todo lo que necesita un viajero. S=E9 muy bien que Fidel Castro
no lleva tarjetas de cr=E9dito ni dinero en sus traves=EDas por el mundo,
pero el modesto presente encerraba un mensaje subliminal: "Espero que
pronto est=E9 bien para volver a viajar".
Pero una cosa es lo que uno imagina, teme, desea, y otra bien distinta
el hecho en s=ED. De pronto el llamado telef=F3nico: "Est=E9 a tal hora
en tal lado". Y nada m=E1s. Pod=EDa ser que lo viera personalmente o
pod=EDa ser que me encontrara con algunos de sus hombres de confianza en
una reuni=F3n preparatoria. No pod=EDa creer en mi buena suerte: era el
primer invitado a la Cumbre del Movimiento de los No Alineados que
ten=EDa el privilegio de ver al Comandante en su recuperaci=F3n, como ya
lo hab=EDan visto antes de la Cumbre Hugo Ch=E1vez y Evo Morales.
Estaba tan aturdido que olvid=E9 hasta una elemental libreta de notas
por si ten=EDa la suerte suplementaria de que me hiciera una
declaraci=F3n.
Pero al llegar a la cita supe que lo ver=EDa. Con sus colaboradores m=E1s
cercanos recorr=ED el pasillo como en un travelling cinematogr=E1fico
donde el visitante ve intensificarse la realidad a medida que avanza:
al comienzo los hombres de su custodia vestidos de verde oliva, luego
su m=E9dico personal siempre derrochando bonhom=EDa, al final del largo
corredor un tr=EDo compuesto por dos mujeres y un hombre alto, los tres
de guardapolvo blanco. =BFM=E9dicos, enfermeros? Por fin una se=F1ora muy
amable que me introdujo en la habitaci=F3n. Un cuarto austero, blanco,
totalmente despojado de adornos. Fidel, que estaba sentado en una cama,
con una mesa blanca y m=F3vil por delante, se puso de pie para darme un
abrazo.
Vest=EDa una bata color vino y un pijama haciendo juego y, por suerte,
era el Fidel de siempre. M=E1s delgado, es verdad, pero no tanto como lo
hab=EDan mostrado unas fotos recientes.
"Perd=ED cuarenta y un libras -me record=F3-, pero estoy
recuperando peso. Ya casi la mitad de lo que perd=ED."
Muchos kilos para quien ya parec=EDa un hidalgo espa=F1ol de prosapia
cervantina y ostenta ahora un perfil quijotesco.
Nos sentamos para charlar. Eran las once y media de la ma=F1ana habanera
de ayer y afuera reverberaba la can=EDcula. El nudo que yo tra=EDa en la
garganta se afloj=F3 de golpe: puede sonar incre=EDble, pero Fidel estaba
tan l=FAcido y filoso como siempre. El mismo tono confidencial de
conspirador que el oyente debe desentra=F1ar, las mismas se=F1as
misteriosas o las acentuaciones gestuales de alg=FAn hallazgo verbal,
alguna orden a sus colaboradores en voz bien alta, para demostrar que
puede regresar a la oratoria en cualquier momento.
"Ves", subray=F3. "Puedo hablar en voz bien alta si quiero."
Pas=F3 un rato largo antes de que me hiciera la confesi=F3n que carga de
peso existencial esta nota. Arranc=F3 como siempre, apasionado por los
hechos colectivos, pol=EDticos, poniendo lo personal en un tercer o
cuarto plano de sombra. Estaba entusiasmado con el hecho de que
Venezuela gane la batalla para ocupar un sitial en el Consejo de
Seguridad de las Naciones Unidas. "Genio y figura", pens=E9. El
tr=E1nsito por la enfermedad y la presencia cierta de la muerte no han
disminuido un =E1pice la intensidad de sus sue=F1os y obsesiones.
"No van a poder bloquear el ingreso", asegur=F3. Y subray=F3 que su
gran amigo Hugo Ch=E1vez Fr=EDas se ha convertido en un l=EDder mundial.
"Ch=E1vez ha ido creando un modelo indestructible. No es portador de
un socialismo extremo, sino realista. Indiscutiblemente va a tener
=E9xito en crear un gran partido que re=FAna y represente a todos los
revolucionarios venezolanos. Los diversos partidos que lo apoyaban han
respondido bien a su convocatoria para lograr la unidad. Adem=E1s
-agreg=F3- ha prometido realizar todos los cambios
democr=E1ticamente, consultando al pueblo. No es extremista. Ha
prometido cooperar con las capas medias y el respeto y la colaboraci=F3n
con las empresas privadas que acaten los principios de la revoluci=F3n.
Adem=E1s ha desarrollado programas sociales que no tienen paralelo en el
mundo y que lo convierten en un l=EDder imbatible. Pienso que un pueblo
tan saqueado como el venezolano merece este cambio. Y veo con alegr=EDa
el impulso hacia la integraci=F3n de Am=E9rica latina, en la que
Venezuela ser=E1 un ejemplo de lo que se puede hacer cuando un pa=EDs
pone sus recursos al servicio del pueblo. Ch=E1vez no s=F3lo usa bien
esos recursos sino que los multiplica con medidas fiscales que antes no
se tomaban."
Despu=E9s abord=F3 el tema de la "Operaci=F3n Milagro", uno de los
programas de salud que m=E1s lo apasiona. Y lo hizo con la misma
intensidad de siempre. Como si no hubiera pasado por el filo de la
navaja dejando en terrible suspenso a millones de personas. Record=F3
que en apenas dos a=F1os, unos 400 mil latinoamericanos hab=EDan sido
operados de cataratas, pterigium y otras enfermedades de la vista con
la nueva t=E9cnica oftalmol=F3gica desarrollada por los m=E9dicos cubanos.
Y que todas esas operaciones, muchas de las cuales se hab=EDan llevado a
cabo en Cuba, hab=EDan sido gratuitas, en beneficio de los
latinoamericanos m=E1s pobres.
Al rato Fidel me ofreci=F3 m=E1s caf=E9, mientras nos sacaban un mont=F3n
de fotos. Con su sempiterno entusiasmo, me coment=F3 admirado: "Son
incre=EDbles estas c=E1maras digitales".
Nos =EDbamos acercando a la confesi=F3n. Sobre la mesa hab=EDa un libro
voluminoso. La portada sobria, bien realizada, anunciaba Cien horas con
Fidel. Y abajo: "Conversaciones con Ignacio Ramonet. Segunda
edici=F3n. Revisada y enriquecida con nuevos datos".
Algunos meses antes hab=EDa visto con inocultable envidia la primera
edici=F3n de esa megaentrevista en la que el l=EDder cubano pasa revista
a su vida y a la historia mundial que lo destaca como uno de sus
principales protagonistas. En junio =FAltimo, el Comandante me hab=EDa
mostrado sus correcciones manuscritas a las respuestas de la primera
edici=F3n. Las preguntas de Ramonet, obviamente, hab=EDan sido respetadas
por el entrevistado. A fines de julio, cuando volv=ED a verlo en
C=F3rdoba, viajaba acompa=F1ado por las pruebas de p=E1gina, en pleno
proceso de revisi=F3n y aumento. Pero nunca hubiera imaginado lo que
ocurri=F3 tras la operaci=F3n del 27 de julio.
"Lo segu=ED corrigiendo en los peores momentos -musit=F3-. No par=E9
de corregirlo. No creas que lo hice cuando mejor=E9. Desde los primeros
d=EDas. Y lo hice no s=F3lo por su contenido sino porque le hab=EDa
prometido al pueblo que lo revisar=EDa antes de publicarlo. As=ED que
pas=E9 muchas horas dict=E1ndole a Carlitos (Valenciaga, su secretario).
Muchas horas."
Entonces me mir=F3, con los ojos muy abiertos y esa expresi=F3n como de
asombro que le redondea la boca cuando tira un dardo decisivo, para
aclarar en un tono profundo, pero despojado de =E9nfasis y dramatismo:
"Quer=EDa terminarlo porque no sab=EDa de qu=E9 tiempo dispondr=EDa".
La sombra del gran l=EDmite, de la imposibilidad de toda posibilidad,
anidaba todav=EDa en el fondo de la mirada como un fondo de caf=E9.
Coment=E9:
"Otra gran batalla".
Asinti=F3 en silencio y agreg=F3:
"Estas cosas te las cuento como amigo y escritor".
Despu=E9s se excus=F3 de no poder regalarme el libro por razones
protocolares, hasta entregar una copia a los jefes de Estado que
concurren a la reuni=F3n del Movimiento de No Alineados. A nuestro lado,
el infatigable Carlitos Valenciaga -el joven colaborador que ley=F3 la
hist=F3rica proclama sobre el traspaso de poderes- ponderaba algunas
incorporaciones a esta nueva edici=F3n aumentada:
"Hay cartas in=E9ditas a Sadam Hussein recomend=E1ndole que se retire
de Kuwait. Las cartas a Nikita Kruschev contextualizadas".
Sobre la mesa blanca hab=EDa tambi=E9n un folleto reproduciendo la
portada del libro con la siguiente leyenda: "Cap=EDtulo 24 - Los
sucesos de abril de 2002 y otros temas de Am=E9rica latina".
"Est=E1 traducido a nueve idiomas", aclar=F3 Valenciaga. Ped=ED uno
para reproducirlo como anticipo en P=E1gina/12, despu=E9s que se le
entregara a los jefes de Estado. En particular a dos amigos fieles que
el Comandante aguarda con impaciencia: Ch=E1vez y Evo Morales. En ese
cap=EDtulo 24, adem=E1s de las intimidades del fallido golpe contra
Ch=E1vez, el lector encontrar=E1 interesantes reflexiones sobre los
militares nacionalistas y progresistas de Am=E9rica latina, como Omar
Torrijos, Juan Velasco Alvarado o el propio Juan Domingo Per=F3n. Y
referencias agudas a la derrota de Carlos Menem y el triunfo de N=E9stor
Kirchner en 2003.
Se acercaba el momento de la despedida. La charla se hab=EDa prolongado
durante hora y media. Fidel se=F1al=F3 el modesto televisor que ten=EDa
frente a la cama (nada de plasma ni equipo estereof=F3nico) y coment=F3:
"La tele est=E1 cada vez m=E1s violenta. Todo es de una violencia
extrema. Todo es publicidad y violencia. Desde las ficciones hasta los
noticieros internacionales".
Le dije, con total sinceridad, que me iba muy contento de verlo tan
bien.
"Todo en su justo medio", advirti=F3, mientras me daba un apret=F3n
de manos. "No hay que olvidar que la m=E1quina a reparar ya tiene
ochenta a=F1os."
Publicado en: www.pagina12.com.ar/diario/principal/index.html Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115409
Wince BSP migrate to WM5
hi,
I is migrating a wince5.0 bsp for armv4I SoC to WM5,and there are some
errors as follows:
BUILD: [01:0000001488:ERRORE] nk.lib(gssupport.obj) : error LNK2005:
__security_init_cookie already defined in corelibc.lib(seccinit.obj)
BUILD: [01:0000001489:ERRORE] nk.lib(gssupport.obj) : error LNK2005:
__security_cookie_complement already defined in corelibc.lib(seccook.obj)
BUILD: [01:0000001490:ERRORE] nk.lib(gssupport.obj) : error LNK2005:
__security_cookie already defined in corelibc.lib(seccook.obj)
BUILD: [01:0000001491:ERRORE] corelibc.lib(seccinit.obj) : error LNK2019:
unresolved external symbol __security_gen_cookie referenced in function
__security_init_cookie
BUILD: [01:0000001492:ERRORE]
I:\WM500\platform\SoC\target\ARMV4I\retail\kern.exe : fatal error LNK1120: 1
unresolved
Can any answer this? thanks Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115408
embedding resource
HI,
I have this file called rola.cgt , does anyone know how i can embed the
rola.cgt as a resource so i wont be loading the rola.cgt as a seperate file
in C#? any help would be appreciate.. any code would be very helpful too...
thank you so much in advance! Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115407
Pocket Apps Developed, Made, designed, Wanted
Pocket Apps Developed, Made, designed, Wanted
Applications custom made for pocket PC (Ver. 1,2,3,4,5,XP)
Free for good Ideas, (For resale rights), Low Cost otherwise
One day development turn around for file attached exes Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115404
Createobject function
how i can free the memory after to have created an ADOCE object with this
function.
the statement set obj=Nothing does not work Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115391
help uninstalling solitaire
Dear developers,
For som odd reason I cannot stop playing solitaire on my windows mobile
5 device. Ie. I'm wasting my time - and I thought this device was to
make me more efficient. Usually I uninstall all such programmes on my
computers. But after extensive searches on the net, I learn that
pre-installed games _cannot_ be uninstalled. Hence: dear developers,
can you somehow give me advice as to how I can corrupt, sabotage or
remove these games?
Thanks in advance!
frankel Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115387
Error with CopyFile function
Hi,
I just want to copy a file to a destination and it doesn't work.
The Very simple code is :
#include "stdafx.h"
int WINAPI WinMain( HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPTSTR lpCmdLine,
int nCmdShow)
{
CopyFile((const unsigned short *)".\\toto.txt", (const unsigned short
*)".\\toto.bak", FALSE);
return 0;
}
I'm under Windows CE 5.0 and my IDE is Micorsoft eMbedded Visual C++ 4.
If I use the GetLastError() method, the code is 2 (ERROR_FILE_NOT_FOUND).
But toto.txt is present at the good place !!
what's wrong ?? Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115386
Error with CopyFile function
Hi,
I just want to copy a file to a destination and it doesn't work.
The Very simple code is :
#include "stdafx.h"
int WINAPI WinMain( HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPTSTR lpCmdLine,
int nCmdShow)
{
CopyFile((const unsigned short *)".\\toto.txt", (const unsigned short
*)".\\toto.bak", FALSE);
return 0;
}
I'm under Windows CE 5.0 and my IDE is Micorsoft eMbedded Visual C++ 4.
what's wrong ?? Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115385
Retrieving ROM version WM5
Hi,
Is there a way to retrieve the ROM version programatically?
There is a way to retrieve the OS version GetVersionEx(), but i am
specifically looking for an API or a method by which i can get the "Software
version" or "ROM version" in Pocket PC and smartphone.
Thanks. Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115384
Evb application and SQL server CE
I have Evb application that uses SQl Selver CE, every time that i execute
operations in the local database given the allotted memory increases until
get exaustedding itself, as I can free it Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115382
How to load/unload drivers at runtime
Hi,
I am currently working closely with USB on the WM5 platform. My application
requries that the USB function on the device uses the Serial_Class driver
(which is found under HKEY_LOCAL_MACHINE/drivers/USB/FunctionDrivers or
something like that). There is a setting in that key which controls which
Function driver is loaded by default, and if I change this from RNDIS to
Serial_Class, then my application works perfectly. The only downfall is that
I can no longer hotsync (I have seen other devices hotsync after removing
RNDIS however not all will). For this reason, I require a way to
programatically change which USB Function driver is running.
Does anybody know how to unload a driver from the Active drivers and load
another in its place? An interesting thing to note is the program called
'Modem Link' which is distributed with most WM5 devices I've seen. This can
programatically switch between RNDIS and USBSER_Class, which turns the PDA
into a USB modem. I have not been able to find any information about how it
operates though. Source code would be immensely useful.
Anybody know how to do it?
Many Thanks,
Wayne Uroda Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115381
automated installation
Hello NG,
i'm actually facing a big problem because i have to create a
self-installing cab file (or whatever file is possile) that
automatically installs itself when it is copied to the pocket pc.
Unfortunately i don't have the slightest clue on how to solve this
problem.
If you have any ideas regarding this problem, please post.
Thanks in advance
Bernhard Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115380
cemgrc.exe cannot be run in win32 mode
Hello All,
I am configuring EVC to build for pocketpc emulator. The tutorial I
am following asks me to
"
"/T:TCPIPC.DLL /Q /D:169.254.2.2:3359" parameters to cemgrc.exe; for
example, via a link file with the following content:
99#"\WINDOWS\cemgrc.exe" /T:TCPIPC.DLL /Q /D:169.254.2.2:3359"
I am not sure how to do this. When I run this on command promt I get an
error saying that cemgrc cannot run in win32 mode. I am very new to all
these things. Please guide.
thanks and regards,
Noor Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115379
automatic cab silent installation
Hi, I'm trying to install some cab files from a SD card, I would like the
installation silent.
If I use the command:
SHELLEXECUTEINFO sei;
memset(&sei,0,sizeof(SHELLEXECUTEINFO));
sei.cbSize = sizeof(SHELLEXECUTEINFO);
sei.fMask = 0;
sei.hwnd = NULL;
sei.lpVerb = NULL;
sei.lpFile = L"\\Storage Card\\*.cab";
sei.lpParameters = NULL;
sei.nShow = SW_SHOWNORMAL;
ShellExecuteEx(&sei)
It works fine. But I can't tell the wceload to run with /noui
If I use the following method:
CreateProcess( L"\\windows\\wceload.exe", L" /noui \\Storage Card\\*.cab",
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL))
It simply doesn'to do anything.
Any idea ? Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115378
unable to position video window using ivideowindow interface
hi all,
i am playing avi file in windows mobile 5.0 using IGraphBuilder
renderfile interface.
i am displaying avi file in dialogbox. i m passing dialogbox handle for
owner of window,
but the problem i m facing is that video is displaying 0,0(left,top)
postion of dialog box while i want that in center.
even i tried by hard coding it but its not working.
pVidWin->SetWindowPosition(80,20,lWidth,lHeight); ->not working
lWidth = width of video;
lHeight = height of video;
i want to set position of video window according my requirement. Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115377
Autostart on WindowsCE from a SD
Hi,
I've got a small problem on the programming of a PDA, a Q-tek
s-200:
I have developed a small autostart application in C++ that should run
whenever a SD card is inserted into the PDA.
I have copied the executable into a 2577 folder on the SD but it doesn't
seem to work.
It has to be noticed that the PDA has a TI OMAP 850 CPU and uses the Windows
Mobile Version 5 OS.
Maybe the cpu is not an ARMv4?
Or maybe the application must be signed ?
Thanks for any suggestion !
Dario Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115375
Reading/Writing File
Hi,
I need to read/write file on the LAN (throught WI-FI access) from a
Pocket PC.
I tryed mapping a network resource with WNHetAddConnection3 and it work
but it's very slow. Every time that I turn off the device (or the
device go off with power saving) I have to wait 50 seconds for
"restoring the connection". Does exists a more efficent way to
read/write file over the LAN ?
Thanks in advance
Stefano Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115374
Syncing existing data
I have 2 sync data files within activesync 4.2. Pocket PC2 and Pocket PC.
I need to copy / sync the data from pocket PC2 to a new device.
How do I do this.
Is there a way to manually copy the data from PC to Pocket PC
Cheers
SteveW Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115373
Temporary database of Sql server CE
how i can with ADOCE set the max size of this file? Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115370
Big problem about developing a PPC 2003 application for WM 5.0 dev
Hi all, I developing a small PPC program by using VS.net 2003, when I build
it on PPC emulator 2003 SE, everything is fine. However, I use my DELL x51v
as device tool in VS.net 2003 and build in debug mode, I found that the
program cannot be builded successfully due to many exceptions(most are
system.exception).
Here is a method that occured a exception:
Public Function ImportConfig(ByVal strDelimiter As String, ByVal
strFilePath As String)
Dim delimitCount, intCounter, lineCount As Integer
Dim result As Boolean
Dim strFields, line As String
Dim strItem(,) As String
Dim myCboItems As New cboItems 'cboItems is a structure
Try
Dim oSR As New StreamReader(strFilePath)
oSR.BaseStream.Seek(0, SeekOrigin.Begin)
intCounter = 0
While (oSR.Peek() > -1)
line = oSR.ReadLine()
If (InStr(line, "=") > 0) Then
Dim parameter As String
Dim varibles As String
parameter = Mid(line, 1, InStr(line, "=") - 1).Trim
varibles = Mid(line, InStr(line, "=") + 1, line.Length -
1).Trim
For Each strFields In
varibles.Split(strDelimiter.ToCharArray)
Select Case parameter
Case "Username"'<-- after reaching here, bug
occured in mscorlib.dll
myCboItems.userName = strFields
Case "Property"
myCboItems.strProperty = strFields
Case "Building"
ReDim Preserve
myCboItems.strBuilding(intCounter)
myCboItems.strBuilding(intCounter) = strFields
Case "Floor"
ReDim Preserve myCboItems.strFloor(intCounter)
myCboItems.strFloor(intCounter) = strFields
Case "Location"
ReDim Preserve
myCboItems.strLocate(intCounter)
myCboItems.strLocate(intCounter) = strFields
Case "Items"
ReDim Preserve myCboItems.strItem(intCounter)
myCboItems.strItem(intCounter) = strFields
Case "Event"
ReDim Preserve myCboItems.strEvent(intCounter)
myCboItems.strEvent(intCounter) = strFields
End Select
intCounter = intCounter + 1
Next
intCounter = 0
End If
' Read each "Field" in the line
End While
oSR.Close()
Return myCboItems
Catch e As System.IO.FileNotFoundException
MsgBox("File " & FilePath & " not found.") 'not hitted
Catch e As System.Exception
MsgBox("Error occur") 'not hitted
End Try
End Function
Select/Case is a common loop actually, why it will throw an exception out?
Is the mscorlib.dll not compatible with WM 5.0?? Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115369
Browse a website on my PC using the PDA thru USB
Using Mobile IE I want to be able to browse websites that are running on my
PC via the USB connection. I can do it when the PC is connected to the
internet as it has an IP address. But when the PC is not connected I cannot
access it via Mobile IE though I still can view the handheld from the PC.
When the PC is disconnected from the work network the address 127.0.0.1 will
work for browsing on the PC but I can't use that IP address from the PDA,
for obvious reasons. I can't seem to use the PC's name. I have tried using a
permanent IP address on the network adapter but when I disconnect from the
work LAN ipconfig /all reports no IP address.
It is almost like you need the ability to set an IP address into activeSync
but my understanding of it is that activeSync acts as Internet Connection
Sharing.
The reason I need this is for when I am demonstrating software to clients.
Any help would be appreciated Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115364
DLLImport Breaks Designer in VS2005
Hi All,
Using a DLLImport in a user control prevents it from working in designer.
To reproduce this issue, create a control library... leave the default
control. Create an override for the Paint and have it clear the background
to red.
Next create an application project (need a Form to drag control on to). To
verify your control works, drag it from the tool box... you get a red square.
Now delete it from the Form and add the following to the control:
References:
using System.Reflection;
using System.Runtime.InteropServices;
Code:
[DllImport("coredll.dll")]
private static extern void keybd_event(byte bVk, byte bScan, uint dwFlags,
uint dwExtraInfo);
Now try dragging the control to the Form after you compile... you get a big
gray square with the name space in it... it no longer draws itself and you
may get different errors if you close and reopen studio with the project.
This is a serious issue. Please help. Is there a fix... am I doing
something wrong? Does anyone get the same behavior?
Thanks in advance,
Craig Buck Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115362
errno and time in WinCE general questions
hi,
i just posted about an issue with errno and WinCE. i've seen so far in my
porting efforts that these some of the main issues. can anyone point me to a
place that covers these topics? how in general these are handled? it would
be nice to have a source to look at the standard way of dealing with these.
for instance, right now i'm porting some internal libs to Mobile 5.0, and
many functions call strerror(), which doesn't exist in Mobile 5.0, so i need
to code around this, but am having problems as i described in my last post.
tia,
mickm Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115361
errno.h and WinCE
hi,
i have a situation where i'm porting a set of internal libraries from XP to
WinCE, using VC2005 and the Mobile 5.0 SDK. these are low level libraries
written in C, and use many of the windows GUI interface calls for drawing to
bitmaps, displaying the bitmap on a DC, etc...
my problem is errno.h related. a function makes a call to strerror(), which
of course comes up as undefined. in searching around on the net, i found
where someone was doing this in their api, (i forget the product it was
for..),
// OS provides a system error string
DWORD dwError = GetLastError();
CString csDescription;
FormatMessage( FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
NULL, dwError, MAKELANGID(LANG_NEUTRAL,SUBLANG_DEFAULT),
csDescription.GetBuffer(255), nSize, NULL );
csDescription.ReleaseBuffer();
since i wanted this to be available outside of this function, and not have
to worry about allocating and freeing memory, for the moment i just made a
global char array and got rid of usning a CString here.
when i compile, i get DWORD, FORMAT... etc. coming up as undeclared
identifiers, which makes sense as i don't have the proper includes. however,
when i started off by adding
#include <windows.h>
i get the following:
uterror.c
C:\Program Files\Windows CE Tools\wce500\Windows Mobile 5.0 Pocket PC
SDK\include\ARMV4I\winnt.h(2976) : error C2061: syntax error : identifier
'PCONTEXT'
C:\Program Files\Windows CE Tools\wce500\Windows Mobile 5.0 Pocket PC
SDK\include\ARMV4I\winnt.h(2977) : error C2059: syntax error : '}'
C:\Program Files\Windows CE Tools\wce500\Windows Mobile 5.0 Pocket PC
SDK\include\ARMV4I\winbase.h(1414) : error C2061: syntax error : identifier
'LPCONTEXT'
C:\Program Files\Windows CE Tools\wce500\Windows Mobile 5.0 Pocket PC
SDK\include\ARMV4I\winbase.h(1414) : error C2059: syntax error : ';'
now i just figured that i don't have the proper include file order, and
since i don't know it, i decided to create an app from scratch and see what
it does. as far as i can see, VC2005 doesn't have a default project for
WinCE, Mobile or anything of the sort, so i created a default win32 project,
and then changed the configuration to 'Windows Mobile 5.0 Pocket PC'.
well, i get the same compile errors as listed above!!!
so it seems there is a problem in the Mobile 5.0 SDK.
anyone have any ideas for me? all i need to do is to get this thing to
compile and run right now, i can dive into the proper way to do it later if i
need to.
thanks,
mickm Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115360
fujitso-siemens Pocket PC LOOX 720 Camera API
Hi, I'm curretly developing an application to the fujitso-siemens
Pocket PC LOOX 720, it runs windows mobile 2003. The application needs
to use the camera but I found that only windows mobile 5.0 has the
functions to capture video from the camera, so I need to know how can I
do the same with windows mobile 2003 and maybe tell me where can I find
this Pocket PC API.
Sorry of my bad english. Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115358
Accessing user phone #
Anybody know how to access the phone number from the phone the software
is running on?
If permissions are needed, please mention which permissions are needed. Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115357
How to map the keyboard button to some other key?
We have Symbol MC9000 units and want to map the * key to - (hyphen).
Is there a registry setting where the keyboard key can be mapped? Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115350
Active SYnc 4.2 problem
The delete mobile device is grayed out on activesync. When I connect I can
browse the device but no sync happens. Is there a way to re-set this. Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115347
About CeCopyFile(RAPI)
hi all,
I have written a short test program use CeCopyFile() function to copy
files from PPC to PC. But there are allways errors returned. For file
the error number is 3 or 32 while for folder the error number is 5.
I use CeFindFirstFile() and CeFindNextFile() to get the remote file
path, so it exists absolutely.
I don't know the the reason for it.
I have searched for the threads related. It is said that CeCopyFile()
is not reliable and we should write CeCreateFile(), CeReadFile(),
CreateFile() and WriteFile() ourselves so as to achieve the
functionality of CeCopyFile(). Really?
Thanks in advance! Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115343
wceload breaks on Axim51
We ran into a problem when we shifted our device to Dell Axim x51 [spec:
OS Name: Microsoft Windows CE; OS Version: 5.1 Build 70; Processor:
StrongARM] from the iPAQ PocketPC 2003 [spec: OS Name: Microsoft
Windows CE; OS Version: 4.20 Build 1081; Processor StrongARM].
The problem is with wceload. Nothing has changed in the code when we
shifted from PPC2003 to PPC51. The parameters to wceload remains *
/noaskdest /noui "my.cab"*
After searching through the net, I realized that the behaviour of
wceload has changed from PPC2003 to PPC51.
From this link -
http://blog.opennetcf.org/afeinman/default,date,2005-04-20.aspx the OP
talks about the switch /noaskdest and its peculiar behaviour. Keeping
in tune with this fact, the parameters to wceload now became * /noui
"my.cab"*. Now WaitForSingleObject does not return anything. The
applications justs exits at this point. Though after some amount of
time, the cab gets extracted.
From yet another link -
http://support.microsoft.com/default.aspx?scid=kb;en-us;297962 I used
the boilerplate code provided there. Even for this approach, the setup
application exits just before *if (WAIT_OBJECT_0 ==
WaitForSingleObject(hEvent, INFINITE))*.
I am out of options now.
I want to know whether the analysis of wceload (on Axim 51) not able to
perform well with WaitForSingleObject is right ? Am I doing something
wrong ?
Can anyone tell me
1. What has changed in wceload
2. How to overcome the above problem.
Any other approach is welcome as well.
BTW, I have to say these cab files are not signed. Does that make any
difference ?
Thanks,
Vino. Tag: Listbox, rotating dots when holding a key or stylus on the Listebox Item. Tag: 115342
How to implement using Win32 that revolving dots, which apear when
holding a key or stylus above some element of the Listbox?