PC Review


Reply
Thread Tools Rate Thread

C#, Windows CE, and Running in the background

 
 
=?Utf-8?B?R3JlZw==?=
Guest
Posts: n/a
 
      13th Dec 2004
Is it possiable to have a program that is on a Pocket PC that runs in the
background of the Device? In otherwords that is always running? Can you use
C# to program a Windows CE/Pocket PC application? If so, what are some really
good books that will teach someone to Program something to run int he
background and to program a Pocket PC program with C#?

 
Reply With Quote
 
 
 
 
Ed Kaim
Guest
Posts: n/a
 
      13th Dec 2004
The easiest way to do this is probably to have the app launch when the
device starts up. There are several ways to do this:
http://msdn.microsoft.com/smartclien...fault.aspx#3.9.

"Greg" <(E-Mail Removed)> wrote in message
news:4B787FB9-7355-43CA-AE2F-(E-Mail Removed)...
> Is it possiable to have a program that is on a Pocket PC that runs in the
> background of the Device? In otherwords that is always running? Can you
> use
> C# to program a Windows CE/Pocket PC application? If so, what are some
> really
> good books that will teach someone to Program something to run int he
> background and to program a Pocket PC program with C#?
>



 
Reply With Quote
 
Daniel Moth
Guest
Posts: n/a
 
      13th Dec 2004
..... and a blog entry that expands into details on that FAQ:
http://blogs.msdn.com/cenet/archive/...03/274661.aspx

Cheers
Daniel
--
http://www.danielmoth.com/Blog/


"Ed Kaim" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> The easiest way to do this is probably to have the app launch when the
> device starts up. There are several ways to do this:
> http://msdn.microsoft.com/smartclien...fault.aspx#3.9.
>
> "Greg" <(E-Mail Removed)> wrote in message
> news:4B787FB9-7355-43CA-AE2F-(E-Mail Removed)...
>> Is it possiable to have a program that is on a Pocket PC that runs in the
>> background of the Device? In otherwords that is always running? Can you
>> use
>> C# to program a Windows CE/Pocket PC application? If so, what are some
>> really
>> good books that will teach someone to Program something to run int he
>> background and to program a Pocket PC program with C#?
>>

>
>



 
Reply With Quote
 
Hank
Guest
Posts: n/a
 
      13th Dec 2004
Keep in mind, of course, that having something running continuously in the
background will consume battery power continuously also.

"Greg" <(E-Mail Removed)> wrote in message
news:4B787FB9-7355-43CA-AE2F-(E-Mail Removed)...
> Is it possiable to have a program that is on a Pocket PC that runs in the
> background of the Device? In otherwords that is always running? Can you

use
> C# to program a Windows CE/Pocket PC application? If so, what are some

really
> good books that will teach someone to Program something to run int he
> background and to program a Pocket PC program with C#?
>



 
Reply With Quote
 
=?Utf-8?B?R3JlZw==?=
Guest
Posts: n/a
 
      13th Dec 2004
Thanks for the reply everyone. I will keep that in mind and he links, really
seem to help.

"Hank" wrote:

> Keep in mind, of course, that having something running continuously in the
> background will consume battery power continuously also.
>
> "Greg" <(E-Mail Removed)> wrote in message
> news:4B787FB9-7355-43CA-AE2F-(E-Mail Removed)...
> > Is it possiable to have a program that is on a Pocket PC that runs in the
> > background of the Device? In otherwords that is always running? Can you

> use
> > C# to program a Windows CE/Pocket PC application? If so, what are some

> really
> > good books that will teach someone to Program something to run int he
> > background and to program a Pocket PC program with C#?
> >

>
>
>

 
Reply With Quote
 
=?Utf-8?B?R3JlZw==?=
Guest
Posts: n/a
 
      6th May 2005
Looks like your blog is no longer on that link. I was wondering if there was
a way to have it run in the background without it startup. the idea is the
user will log in to a server with a password and then be able to use other
application which this project is going to interact with. Any Ideas on how to
accomplish this?

"Daniel Moth" wrote:

> ..... and a blog entry that expands into details on that FAQ:
> http://blogs.msdn.com/cenet/archive/...03/274661.aspx
>
> Cheers
> Daniel
> --
> http://www.danielmoth.com/Blog/
>
>
> "Ed Kaim" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > The easiest way to do this is probably to have the app launch when the
> > device starts up. There are several ways to do this:
> > http://msdn.microsoft.com/smartclien...fault.aspx#3.9.
> >
> > "Greg" <(E-Mail Removed)> wrote in message
> > news:4B787FB9-7355-43CA-AE2F-(E-Mail Removed)...
> >> Is it possiable to have a program that is on a Pocket PC that runs in the
> >> background of the Device? In otherwords that is always running? Can you
> >> use
> >> C# to program a Windows CE/Pocket PC application? If so, what are some
> >> really
> >> good books that will teach someone to Program something to run int he
> >> background and to program a Pocket PC program with C#?
> >>

> >
> >

>
>
>

 
Reply With Quote
 
Daniel Moth
Guest
Posts: n/a
 
      6th May 2005
That blog entry is there when I hit it...

To run a process you can use the Process class from the SDF (which wraps
CreateProcess):
http://vault.netcf.tv/VaultService/V...dedversions=20
(guest, guest)

To comunicate between processes see this:
http://www.danielmoth.com/Blog/2004/...ce-part-1.html

Cheers
Daniel
--
http://www.danielmoth.com/Blog/


"Greg" <(E-Mail Removed)> wrote in message
news:20A39448-C241-420C-9D5C-(E-Mail Removed)...
> Looks like your blog is no longer on that link. I was wondering if there
> was
> a way to have it run in the background without it startup. the idea is the
> user will log in to a server with a password and then be able to use other
> application which this project is going to interact with. Any Ideas on how
> to
> accomplish this?
>
> "Daniel Moth" wrote:
>
>> ..... and a blog entry that expands into details on that FAQ:
>> http://blogs.msdn.com/cenet/archive/...03/274661.aspx
>>
>> Cheers
>> Daniel
>> --
>> http://www.danielmoth.com/Blog/
>>
>>
>> "Ed Kaim" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>> > The easiest way to do this is probably to have the app launch when the
>> > device starts up. There are several ways to do this:
>> > http://msdn.microsoft.com/smartclien...fault.aspx#3.9.
>> >
>> > "Greg" <(E-Mail Removed)> wrote in message
>> > news:4B787FB9-7355-43CA-AE2F-(E-Mail Removed)...
>> >> Is it possiable to have a program that is on a Pocket PC that runs in
>> >> the
>> >> background of the Device? In otherwords that is always running? Can
>> >> you
>> >> use
>> >> C# to program a Windows CE/Pocket PC application? If so, what are some
>> >> really
>> >> good books that will teach someone to Program something to run int he
>> >> background and to program a Pocket PC program with C#?
>> >>
>> >
>> >

>>
>>
>>


 
Reply With Quote
 
=?Utf-8?B?R3JlZw==?=
Guest
Posts: n/a
 
      7th May 2005
Thanks for the links, I am a bit confused by the vault one. Looks like there
is no really easy tutorial or way to do this. What would happen if some
onepens my program and then taps home on the pocketpc and opens the other
program? Would it pause my program or will my program keep running and I
don't need to worry about background stuff?

"Daniel Moth" wrote:

> That blog entry is there when I hit it...
>
> To run a process you can use the Process class from the SDF (which wraps
> CreateProcess):
> http://vault.netcf.tv/VaultService/V...dedversions=20
> (guest, guest)
>
> To comunicate between processes see this:
> http://www.danielmoth.com/Blog/2004/...ce-part-1.html
>
> Cheers
> Daniel
> --
> http://www.danielmoth.com/Blog/
>
>
> "Greg" <(E-Mail Removed)> wrote in message
> news:20A39448-C241-420C-9D5C-(E-Mail Removed)...
> > Looks like your blog is no longer on that link. I was wondering if there
> > was
> > a way to have it run in the background without it startup. the idea is the
> > user will log in to a server with a password and then be able to use other
> > application which this project is going to interact with. Any Ideas on how
> > to
> > accomplish this?
> >
> > "Daniel Moth" wrote:
> >
> >> ..... and a blog entry that expands into details on that FAQ:
> >> http://blogs.msdn.com/cenet/archive/...03/274661.aspx
> >>
> >> Cheers
> >> Daniel
> >> --
> >> http://www.danielmoth.com/Blog/
> >>
> >>
> >> "Ed Kaim" <(E-Mail Removed)> wrote in message
> >> news:(E-Mail Removed)...
> >> > The easiest way to do this is probably to have the app launch when the
> >> > device starts up. There are several ways to do this:
> >> > http://msdn.microsoft.com/smartclien...fault.aspx#3.9.
> >> >
> >> > "Greg" <(E-Mail Removed)> wrote in message
> >> > news:4B787FB9-7355-43CA-AE2F-(E-Mail Removed)...
> >> >> Is it possiable to have a program that is on a Pocket PC that runs in
> >> >> the
> >> >> background of the Device? In otherwords that is always running? Can
> >> >> you
> >> >> use
> >> >> C# to program a Windows CE/Pocket PC application? If so, what are some
> >> >> really
> >> >> good books that will teach someone to Program something to run int he
> >> >> background and to program a Pocket PC program with C#?
> >> >>
> >> >
> >> >
> >>
> >>
> >>

>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Windows installer running in background BigEd08 Anti-Spyware Installation 4 18th Dec 2008 09:29 PM
windows installer keeps reloading/running in background nnairehs Windows XP Accessibility 0 30th May 2008 11:36 AM
IE windows running in Background Vincent S Windows XP Security 0 10th Feb 2004 01:57 AM
POWERPNT.EXE running in background, causes log-off problems, Windows Server 2003 Colin Brooks Microsoft Powerpoint 6 5th Sep 2003 05:01 PM
Windows Messenger running in background... Matt Dulittle Microsoft Outlook Discussion 2 22nd Aug 2003 08:05 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 07:36 PM.