PC Review


Reply
Thread Tools Rate Thread

OpenNETCF install warning message

 
 
=?Utf-8?B?Um9iIFM=?=
Guest
Posts: n/a
 
      14th Jun 2005
Hi there,

I'm installing my smart device application to a Qtek2020 device using NSIS
install program.

The application is using OpenNETCF V1.3
It's also using OpenNETCF.WindowsCE.Forms (which is added as content)

Let's presume i've installed it from my development machine (just run from
vs.net), everything installs fine and the application runs.

However, if after that i decide to manually copy over just the application
..cab file and run it i get a warning/error message:

"SAMS PDA requires the installation of OpenNETCF.SDF.ppc3.ARMV4.CAB for it
to run properly. Install the Cab file before running this application"

Now, this is blatently already installed, likewise, if i run the NSIS
install and make sure i run the above cab first and then my application cab
it still comes up with that message.

What am i doing wrong?

Many Thanks
 
Reply With Quote
 
 
 
 
Peter Foot [MVP]
Guest
Posts: n/a
 
      14th Jun 2005
This is a known issue with the v1.3 release, because the
OpenNETCF.WindowsCE.Forms assembly is not correctly registered in the GAC.
You can remove the warning by removing the vsd_setup.dll from your cab file
by commenting out references to it in your .INF file then rebuild the cab
file. You'll need to ensure that both the OpenNETCF cab and the
OpenNETCF.WindowsCE.Forms.dll are installed prior to installing your CAB.

Peter

--
Peter Foot
Windows Embedded MVP
http://www.inthehand.com | http://www.peterfoot.net |
http://www.opennetcf.org

"Rob S" <(E-Mail Removed)> wrote in message
news:A3CD68A1-06BB-4427-BC5D-(E-Mail Removed)...
> Hi there,
>
> I'm installing my smart device application to a Qtek2020 device using NSIS
> install program.
>
> The application is using OpenNETCF V1.3
> It's also using OpenNETCF.WindowsCE.Forms (which is added as content)
>
> Let's presume i've installed it from my development machine (just run from
> vs.net), everything installs fine and the application runs.
>
> However, if after that i decide to manually copy over just the application
> .cab file and run it i get a warning/error message:
>
> "SAMS PDA requires the installation of OpenNETCF.SDF.ppc3.ARMV4.CAB for it
> to run properly. Install the Cab file before running this application"
>
> Now, this is blatently already installed, likewise, if i run the NSIS
> install and make sure i run the above cab first and then my application
> cab
> it still comes up with that message.
>
> What am i doing wrong?
>
> Many Thanks



 
Reply With Quote
 
=?Utf-8?B?Um9iIFM=?=
Guest
Posts: n/a
 
      14th Jun 2005
Thanks Peter.

Stupid question, how do you comment lines in the .inf file?

I deleted them at first but it just put them back in when i rebuilt the
cabs, i presume commenting them out will work ?

Thanks again

"Peter Foot [MVP]" wrote:

> This is a known issue with the v1.3 release, because the
> OpenNETCF.WindowsCE.Forms assembly is not correctly registered in the GAC.
> You can remove the warning by removing the vsd_setup.dll from your cab file
> by commenting out references to it in your .INF file then rebuild the cab
> file. You'll need to ensure that both the OpenNETCF cab and the
> OpenNETCF.WindowsCE.Forms.dll are installed prior to installing your CAB.
>
> Peter
>
> --
> Peter Foot
> Windows Embedded MVP
> http://www.inthehand.com | http://www.peterfoot.net |
> http://www.opennetcf.org
>
> "Rob S" <(E-Mail Removed)> wrote in message
> news:A3CD68A1-06BB-4427-BC5D-(E-Mail Removed)...
> > Hi there,
> >
> > I'm installing my smart device application to a Qtek2020 device using NSIS
> > install program.
> >
> > The application is using OpenNETCF V1.3
> > It's also using OpenNETCF.WindowsCE.Forms (which is added as content)
> >
> > Let's presume i've installed it from my development machine (just run from
> > vs.net), everything installs fine and the application runs.
> >
> > However, if after that i decide to manually copy over just the application
> > .cab file and run it i get a warning/error message:
> >
> > "SAMS PDA requires the installation of OpenNETCF.SDF.ppc3.ARMV4.CAB for it
> > to run properly. Install the Cab file before running this application"
> >
> > Now, this is blatently already installed, likewise, if i run the NSIS
> > install and make sure i run the above cab first and then my application
> > cab
> > it still comes up with that message.
> >
> > What am i doing wrong?
> >
> > Many Thanks

>
>
>

 
Reply With Quote
 
Peter Foot [MVP]
Guest
Posts: n/a
 
      14th Jun 2005
make sure you rebuild the cabs by running the BuildCabs.bat file which
Visual Studio creates the first time you create them. If you use the option
in Visual Studio it will rebuild the .inf file with default values. You can
comment out lines with the semi colon ";" but deleting them is just as good.

Peter

--
Peter Foot
Windows Embedded MVP
http://www.inthehand.com | http://www.peterfoot.net |
http://www.opennetcf.org

"Rob S" <(E-Mail Removed)> wrote in message
news:067C0DBA-2FF9-4DCC-8E4C-(E-Mail Removed)...
> Thanks Peter.
>
> Stupid question, how do you comment lines in the .inf file?
>
> I deleted them at first but it just put them back in when i rebuilt the
> cabs, i presume commenting them out will work ?
>
> Thanks again
>
> "Peter Foot [MVP]" wrote:
>
>> This is a known issue with the v1.3 release, because the
>> OpenNETCF.WindowsCE.Forms assembly is not correctly registered in the
>> GAC.
>> You can remove the warning by removing the vsd_setup.dll from your cab
>> file
>> by commenting out references to it in your .INF file then rebuild the cab
>> file. You'll need to ensure that both the OpenNETCF cab and the
>> OpenNETCF.WindowsCE.Forms.dll are installed prior to installing your CAB.
>>
>> Peter
>>
>> --
>> Peter Foot
>> Windows Embedded MVP
>> http://www.inthehand.com | http://www.peterfoot.net |
>> http://www.opennetcf.org
>>
>> "Rob S" <(E-Mail Removed)> wrote in message
>> news:A3CD68A1-06BB-4427-BC5D-(E-Mail Removed)...
>> > Hi there,
>> >
>> > I'm installing my smart device application to a Qtek2020 device using
>> > NSIS
>> > install program.
>> >
>> > The application is using OpenNETCF V1.3
>> > It's also using OpenNETCF.WindowsCE.Forms (which is added as content)
>> >
>> > Let's presume i've installed it from my development machine (just run
>> > from
>> > vs.net), everything installs fine and the application runs.
>> >
>> > However, if after that i decide to manually copy over just the
>> > application
>> > .cab file and run it i get a warning/error message:
>> >
>> > "SAMS PDA requires the installation of OpenNETCF.SDF.ppc3.ARMV4.CAB for
>> > it
>> > to run properly. Install the Cab file before running this application"
>> >
>> > Now, this is blatently already installed, likewise, if i run the NSIS
>> > install and make sure i run the above cab first and then my application
>> > cab
>> > it still comes up with that message.
>> >
>> > What am i doing wrong?
>> >
>> > Many Thanks

>>
>>
>>



 
Reply With Quote
 
=?Utf-8?B?Um9iIFM=?=
Guest
Posts: n/a
 
      14th Jun 2005
Thank you Peter, that worked a treat.

"Peter Foot [MVP]" wrote:

> make sure you rebuild the cabs by running the BuildCabs.bat file which
> Visual Studio creates the first time you create them. If you use the option
> in Visual Studio it will rebuild the .inf file with default values. You can
> comment out lines with the semi colon ";" but deleting them is just as good.
>
> Peter
>
> --
> Peter Foot
> Windows Embedded MVP
> http://www.inthehand.com | http://www.peterfoot.net |
> http://www.opennetcf.org
>
> "Rob S" <(E-Mail Removed)> wrote in message
> news:067C0DBA-2FF9-4DCC-8E4C-(E-Mail Removed)...
> > Thanks Peter.
> >
> > Stupid question, how do you comment lines in the .inf file?
> >
> > I deleted them at first but it just put them back in when i rebuilt the
> > cabs, i presume commenting them out will work ?
> >
> > Thanks again
> >
> > "Peter Foot [MVP]" wrote:
> >
> >> This is a known issue with the v1.3 release, because the
> >> OpenNETCF.WindowsCE.Forms assembly is not correctly registered in the
> >> GAC.
> >> You can remove the warning by removing the vsd_setup.dll from your cab
> >> file
> >> by commenting out references to it in your .INF file then rebuild the cab
> >> file. You'll need to ensure that both the OpenNETCF cab and the
> >> OpenNETCF.WindowsCE.Forms.dll are installed prior to installing your CAB.
> >>
> >> Peter
> >>
> >> --
> >> Peter Foot
> >> Windows Embedded MVP
> >> http://www.inthehand.com | http://www.peterfoot.net |
> >> http://www.opennetcf.org
> >>
> >> "Rob S" <(E-Mail Removed)> wrote in message
> >> news:A3CD68A1-06BB-4427-BC5D-(E-Mail Removed)...
> >> > Hi there,
> >> >
> >> > I'm installing my smart device application to a Qtek2020 device using
> >> > NSIS
> >> > install program.
> >> >
> >> > The application is using OpenNETCF V1.3
> >> > It's also using OpenNETCF.WindowsCE.Forms (which is added as content)
> >> >
> >> > Let's presume i've installed it from my development machine (just run
> >> > from
> >> > vs.net), everything installs fine and the application runs.
> >> >
> >> > However, if after that i decide to manually copy over just the
> >> > application
> >> > .cab file and run it i get a warning/error message:
> >> >
> >> > "SAMS PDA requires the installation of OpenNETCF.SDF.ppc3.ARMV4.CAB for
> >> > it
> >> > to run properly. Install the Cab file before running this application"
> >> >
> >> > Now, this is blatently already installed, likewise, if i run the NSIS
> >> > install and make sure i run the above cab first and then my application
> >> > cab
> >> > it still comes up with that message.
> >> >
> >> > What am i doing wrong?
> >> >
> >> > Many Thanks
> >>
> >>
> >>

>
>
>

 
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
I can not install OpennetCF SDF v1.4 =?Utf-8?B?RnJhbmtpZQ==?= Microsoft Dot NET Compact Framework 2 15th Feb 2006 05:07 PM
OPENNETCF install? neil.shaw@sanderson.com Microsoft Dot NET Compact Framework 1 31st Oct 2005 07:46 AM
Can't install OpenNETCF? Please help me =?Utf-8?B?V2lzZW50?= Microsoft Dot NET Compact Framework 5 22nd Jun 2005 07:12 PM
Can't install OpenNETCF? Please help me =?Utf-8?B?V2lzZW50?= Microsoft Dot NET Framework 1 21st Jun 2005 11:10 AM
OpenNETCF Install Warning Aaron Microsoft Dot NET Compact Framework 2 4th Mar 2005 11:43 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 11:08 AM.