Cursor in a smart device application (windows CE)

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

I have an application who is working in a windows CE environnement (with mobil spion)
So i can't show it, when i want to do that, the cursor ( Cursor.Current = cursors.WaitCursor).
What is the problem ? (there are not souris but only a stylet (you can't write whith it)
Thanck you very much.
pascal
 
pascal.psion said:
I have an application who is working in a windows CE environnement
(with mobil spion) So i can't show it, when i want to do that, the
cursor ( Cursor.Current = cursors.WaitCursor). What is the problem ?
(there are not souris but only a stylet (you can't write whith it)

Well, what happens when you try Cursor.Current = Cursors.WaitCursor?
Bear in mind that it needs to be in that state for a second before the
cursor actually comes up.
 
Try:

Cursor.Current = Cursors.WaitCursor;

instead of Cursor.Current = cursors.WaitCursor

--Neil
 
thancks for your anser but i use vb.net not c#

Neil Cowburn said:
Try:

Cursor.Current = Cursors.WaitCursor;

instead of Cursor.Current = cursors.WaitCursor

--Neil
 
[C#]
Cursor.Current = Cursors.WaitCursor;

[VB]
Cursor.Current = Cursors.WaitCursor
 
Does the device *have* a wait cursor? P/Invoke LoadCursor and then
SetCursor to see. Google to see how to P/Invoke.

--
Chris Tacke, eMVP
Co-Founder and Advisory Board Member
www.OpenNETCF.org
---
---
Principal Partner
OpenNETCF Consulting
www.OpenNETCF.com



pascal.psion said:
thank you but the problem always exist.
I think that the origine of the problem is the system (CF or Windowws CE) , no ?


Neil Cowburn said:
[C#]
Cursor.Current = Cursors.WaitCursor;

[VB]
Cursor.Current = Cursors.WaitCursor


pascal.psion said:
What do you mean ? sorry i don't understand "semicolon off"
thank you

:

Drop the semicolon off the end then.

--Neil


thancks for your anser but i use vb.net not c#

:

Try:

Cursor.Current = Cursors.WaitCursor;

instead of Cursor.Current = cursors.WaitCursor

--Neil


message
Hello,

I have an application who is working in a windows CE environnement
(with
mobil spion)
So i can't show it, when i want to do that, the cursor (
Cursor.Current
= cursors.WaitCursor).
What is the problem ? (there are not souris but only a stylet (you
can't
write whith it)
Thanck you very much.
pascal
 
Back
Top