PC Review


Reply
Thread Tools Rate Thread

Problem to use wceload

 
 
=?Utf-8?B?R2FuZGFsZg==?=
Guest
Posts: n/a
 
      28th Mar 2006
Hi,

I'm using the wwceload program to install automatically some cab files, but
I have an error message which is the following :

Ni .cab files to install : please specify a .cab file or double tap a .cab
file to install the application.

The code is the following (I'm using the OpenNETCF package) :
----------------------------------------------------
static void runWce(string file)
{
ProcessStartInfo psi=new ProcessStartInfo();
psi.FileName="wceload";
psi.Arguments=@"\FlashFX Disk\tmp\" + file;
Process p=Process.Start(psi);
p.WaitForExit();
int exitcode;
try
{
exitcode=p.ExitCode;
}
catch
{
exitcode=0;
}
if (exitcode != 0) MessageBox.Show("Error");
}
----------------------------------------------------
However, I verified that the cab files were in the directory "FlashFX
Disk\tmp" and that is ok. I don't understand why the cab files don't install
themselves.

Thanks in advance for any information.

 
Reply With Quote
 
 
 
 
Paul G. Tobey [eMVP]
Guest
Posts: n/a
 
      28th Mar 2006
Spaces are probably the problem. You want the parameter to be "\FlashFX
Disk\tmp\filename.cab" (literally, including the quotes). Since you are not
passing the quotes, wceload is treating the stuff up to the first space as
the parameter and \FlashFX isn't a cab file.

Paul T.

"Gandalf" <(E-Mail Removed)> wrote in message
news:A6AE45EE-5491-4D64-848A-(E-Mail Removed)...
> Hi,
>
> I'm using the wwceload program to install automatically some cab files,
> but
> I have an error message which is the following :
>
> Ni .cab files to install : please specify a .cab file or double tap a .cab
> file to install the application.
>
> The code is the following (I'm using the OpenNETCF package) :
> ----------------------------------------------------
> static void runWce(string file)
> {
> ProcessStartInfo psi=new ProcessStartInfo();
> psi.FileName="wceload";
> psi.Arguments=@"\FlashFX Disk\tmp\" + file;
> Process p=Process.Start(psi);
> p.WaitForExit();
> int exitcode;
> try
> {
> exitcode=p.ExitCode;
> }
> catch
> {
> exitcode=0;
> }
> if (exitcode != 0) MessageBox.Show("Error");
> }
> ----------------------------------------------------
> However, I verified that the cab files were in the directory "FlashFX
> Disk\tmp" and that is ok. I don't understand why the cab files don't
> install
> themselves.
>
> Thanks in advance for any information.
>



 
Reply With Quote
 
 
 
 
=?Utf-8?B?R2FuZGFsZg==?=
Guest
Posts: n/a
 
      28th Mar 2006
OK. What can I do to replace the space character ?
I must use that directory in fact and not another...

Thanks,

"Paul G. Tobey [eMVP]" wrote:

> Spaces are probably the problem. You want the parameter to be "\FlashFX
> Disk\tmp\filename.cab" (literally, including the quotes). Since you are not
> passing the quotes, wceload is treating the stuff up to the first space as
> the parameter and \FlashFX isn't a cab file.
>
> Paul T.
>
> "Gandalf" <(E-Mail Removed)> wrote in message
> news:A6AE45EE-5491-4D64-848A-(E-Mail Removed)...
> > Hi,
> >
> > I'm using the wwceload program to install automatically some cab files,
> > but
> > I have an error message which is the following :
> >
> > Ni .cab files to install : please specify a .cab file or double tap a .cab
> > file to install the application.
> >
> > The code is the following (I'm using the OpenNETCF package) :
> > ----------------------------------------------------
> > static void runWce(string file)
> > {
> > ProcessStartInfo psi=new ProcessStartInfo();
> > psi.FileName="wceload";
> > psi.Arguments=@"\FlashFX Disk\tmp\" + file;
> > Process p=Process.Start(psi);
> > p.WaitForExit();
> > int exitcode;
> > try
> > {
> > exitcode=p.ExitCode;
> > }
> > catch
> > {
> > exitcode=0;
> > }
> > if (exitcode != 0) MessageBox.Show("Error");
> > }
> > ----------------------------------------------------
> > However, I verified that the cab files were in the directory "FlashFX
> > Disk\tmp" and that is ok. I don't understand why the cab files don't
> > install
> > themselves.
> >
> > Thanks in advance for any information.
> >

>
>
>

 
Reply With Quote
 
Paul G. Tobey [eMVP]
Guest
Posts: n/a
 
      28th Mar 2006
Insert quotes into the string around the filename!

Paul T.

"Gandalf" <(E-Mail Removed)> wrote in message
news:C277C10E-64E4-444E-B5E1-(E-Mail Removed)...
> OK. What can I do to replace the space character ?
> I must use that directory in fact and not another...
>
> Thanks,
>
> "Paul G. Tobey [eMVP]" wrote:
>
>> Spaces are probably the problem. You want the parameter to be "\FlashFX
>> Disk\tmp\filename.cab" (literally, including the quotes). Since you are
>> not
>> passing the quotes, wceload is treating the stuff up to the first space
>> as
>> the parameter and \FlashFX isn't a cab file.
>>
>> Paul T.
>>
>> "Gandalf" <(E-Mail Removed)> wrote in message
>> news:A6AE45EE-5491-4D64-848A-(E-Mail Removed)...
>> > Hi,
>> >
>> > I'm using the wwceload program to install automatically some cab files,
>> > but
>> > I have an error message which is the following :
>> >
>> > Ni .cab files to install : please specify a .cab file or double tap a
>> > .cab
>> > file to install the application.
>> >
>> > The code is the following (I'm using the OpenNETCF package) :
>> > ----------------------------------------------------
>> > static void runWce(string file)
>> > {
>> > ProcessStartInfo psi=new ProcessStartInfo();
>> > psi.FileName="wceload";
>> > psi.Arguments=@"\FlashFX Disk\tmp\" + file;
>> > Process p=Process.Start(psi);
>> > p.WaitForExit();
>> > int exitcode;
>> > try
>> > {
>> > exitcode=p.ExitCode;
>> > }
>> > catch
>> > {
>> > exitcode=0;
>> > }
>> > if (exitcode != 0) MessageBox.Show("Error");
>> > }
>> > ----------------------------------------------------
>> > However, I verified that the cab files were in the directory "FlashFX
>> > Disk\tmp" and that is ok. I don't understand why the cab files don't
>> > install
>> > themselves.
>> >
>> > Thanks in advance for any information.
>> >

>>
>>
>>



 
Reply With Quote
 
Chris Tacke [MVP]
Guest
Posts: n/a
 
      28th Mar 2006
The space is the name is the problem. Embed quotes in the command line.
Single quotes might work as well.

psi.Arguments = string.Format("\"\\FlashFX Disk\\tmp\\{0}\"", file);

or

psi.Arguments = string.Format(@"'\FlashFX Disk\tmp\{0}'", file);

-Chris



"Gandalf" <(E-Mail Removed)> wrote in message
news:A6AE45EE-5491-4D64-848A-(E-Mail Removed)...
> Hi,
>
> I'm using the wwceload program to install automatically some cab files,
> but
> I have an error message which is the following :
>
> Ni .cab files to install : please specify a .cab file or double tap a .cab
> file to install the application.
>
> The code is the following (I'm using the OpenNETCF package) :
> ----------------------------------------------------
> static void runWce(string file)
> {
> ProcessStartInfo psi=new ProcessStartInfo();
> psi.FileName="wceload";
> psi.Arguments=@"\FlashFX Disk\tmp\" + file;
> Process p=Process.Start(psi);
> p.WaitForExit();
> int exitcode;
> try
> {
> exitcode=p.ExitCode;
> }
> catch
> {
> exitcode=0;
> }
> if (exitcode != 0) MessageBox.Show("Error");
> }
> ----------------------------------------------------
> However, I verified that the cab files were in the directory "FlashFX
> Disk\tmp" and that is ok. I don't understand why the cab files don't
> install
> themselves.
>
> Thanks in advance for any information.
>



 
Reply With Quote
 
=?Utf-8?B?R2FuZGFsZg==?=
Guest
Posts: n/a
 
      29th Mar 2006
OK, the following code runs :
psi.Arguments = string.Format("\"\\FlashFX Disk\\tmp\\{0}\"", file);

But how can I do to pass arguments to the "wceload" program ?
For example, I want to run wceload with the following code :
"wceload /noaskdest /noui /delete 0"

I tried to do that but that doesn't run :
....
psi.FileName = "wceload";
psi.Verb = "/noaskdest /noui /delete 0";
psi.Arguments = string.Format("\"\\FlashFX Disk\\Kimberly\\{0}\"", file);
Process p = Process.Start(psi);
....

If you see where the problem is ?
Thanks in advance.


"Chris Tacke [MVP]" wrote:

> The space is the name is the problem. Embed quotes in the command line.
> Single quotes might work as well.
>
> psi.Arguments = string.Format("\"\\FlashFX Disk\\tmp\\{0}\"", file);
>
> or
>
> psi.Arguments = string.Format(@"'\FlashFX Disk\tmp\{0}'", file);
>
> -Chris
>
>
>
> "Gandalf" <(E-Mail Removed)> wrote in message
> news:A6AE45EE-5491-4D64-848A-(E-Mail Removed)...
> > Hi,
> >
> > I'm using the wwceload program to install automatically some cab files,
> > but
> > I have an error message which is the following :
> >
> > Ni .cab files to install : please specify a .cab file or double tap a .cab
> > file to install the application.
> >
> > The code is the following (I'm using the OpenNETCF package) :
> > ----------------------------------------------------
> > static void runWce(string file)
> > {
> > ProcessStartInfo psi=new ProcessStartInfo();
> > psi.FileName="wceload";
> > psi.Arguments=@"\FlashFX Disk\tmp\" + file;
> > Process p=Process.Start(psi);
> > p.WaitForExit();
> > int exitcode;
> > try
> > {
> > exitcode=p.ExitCode;
> > }
> > catch
> > {
> > exitcode=0;
> > }
> > if (exitcode != 0) MessageBox.Show("Error");
> > }
> > ----------------------------------------------------
> > However, I verified that the cab files were in the directory "FlashFX
> > Disk\tmp" and that is ok. I don't understand why the cab files don't
> > install
> > themselves.
> >
> > Thanks in advance for any information.
> >

>
>
>

 
Reply With Quote
 
Paul G. Tobey [eMVP]
Guest
Posts: n/a
 
      29th Mar 2006
Put the arguments in, oddly enough, the Arguments property, after the
filename. Think about how you'd run it from a command line with the
arguments you want:

wceload.exe "\FlashFX Disk\Kimberly\mycab.cab" /noaskdest /noui /delete 0

or whatever. Now make the Arguments property equal that!

Paul T.

"Gandalf" <(E-Mail Removed)> wrote in message
news:90D0D724-9C7C-4B65-88B9-(E-Mail Removed)...
> OK, the following code runs :
> psi.Arguments = string.Format("\"\\FlashFX Disk\\tmp\\{0}\"", file);
>
> But how can I do to pass arguments to the "wceload" program ?
> For example, I want to run wceload with the following code :
> "wceload /noaskdest /noui /delete 0"
>
> I tried to do that but that doesn't run :
> ...
> psi.FileName = "wceload";
> psi.Verb = "/noaskdest /noui /delete 0";
> psi.Arguments = string.Format("\"\\FlashFX Disk\\Kimberly\\{0}\"", file);
> Process p = Process.Start(psi);
> ...
>
> If you see where the problem is ?
> Thanks in advance.
>
>
> "Chris Tacke [MVP]" wrote:
>
>> The space is the name is the problem. Embed quotes in the command line.
>> Single quotes might work as well.
>>
>> psi.Arguments = string.Format("\"\\FlashFX Disk\\tmp\\{0}\"", file);
>>
>> or
>>
>> psi.Arguments = string.Format(@"'\FlashFX Disk\tmp\{0}'", file);
>>
>> -Chris
>>
>>
>>
>> "Gandalf" <(E-Mail Removed)> wrote in message
>> news:A6AE45EE-5491-4D64-848A-(E-Mail Removed)...
>> > Hi,
>> >
>> > I'm using the wwceload program to install automatically some cab files,
>> > but
>> > I have an error message which is the following :
>> >
>> > Ni .cab files to install : please specify a .cab file or double tap a
>> > .cab
>> > file to install the application.
>> >
>> > The code is the following (I'm using the OpenNETCF package) :
>> > ----------------------------------------------------
>> > static void runWce(string file)
>> > {
>> > ProcessStartInfo psi=new ProcessStartInfo();
>> > psi.FileName="wceload";
>> > psi.Arguments=@"\FlashFX Disk\tmp\" + file;
>> > Process p=Process.Start(psi);
>> > p.WaitForExit();
>> > int exitcode;
>> > try
>> > {
>> > exitcode=p.ExitCode;
>> > }
>> > catch
>> > {
>> > exitcode=0;
>> > }
>> > if (exitcode != 0) MessageBox.Show("Error");
>> > }
>> > ----------------------------------------------------
>> > However, I verified that the cab files were in the directory "FlashFX
>> > Disk\tmp" and that is ok. I don't understand why the cab files don't
>> > install
>> > themselves.
>> >
>> > Thanks in advance for any information.
>> >

>>
>>
>>



 
Reply With Quote
 
=?Utf-8?B?R2FuZGFsZg==?=
Guest
Posts: n/a
 
      31st Mar 2006
Thanks for the information, I tried to write the following code :
-------------------------------------------------------------------
ProcessStartInfo psi = new ProcessStartInfo();
psi.FileName = "wceload";
psi.Arguments = string.Format("\"\\FlashFX Disk\\Kimberly\\{0}\"", file + "
/noaskdest /noui /delete 0");
Process p = Process.Start(psi);
p.WaitForExit();
-------------------------------------------------------------------
But that doesn't run !
Thanks in advance for any information.

"Paul G. Tobey [eMVP]" wrote:

> Put the arguments in, oddly enough, the Arguments property, after the
> filename. Think about how you'd run it from a command line with the
> arguments you want:
>
> wceload.exe "\FlashFX Disk\Kimberly\mycab.cab" /noaskdest /noui /delete 0
>
> or whatever. Now make the Arguments property equal that!
>
> Paul T.
>
> "Gandalf" <(E-Mail Removed)> wrote in message
> news:90D0D724-9C7C-4B65-88B9-(E-Mail Removed)...
> > OK, the following code runs :
> > psi.Arguments = string.Format("\"\\FlashFX Disk\\tmp\\{0}\"", file);
> >
> > But how can I do to pass arguments to the "wceload" program ?
> > For example, I want to run wceload with the following code :
> > "wceload /noaskdest /noui /delete 0"
> >
> > I tried to do that but that doesn't run :
> > ...
> > psi.FileName = "wceload";
> > psi.Verb = "/noaskdest /noui /delete 0";
> > psi.Arguments = string.Format("\"\\FlashFX Disk\\Kimberly\\{0}\"", file);
> > Process p = Process.Start(psi);
> > ...
> >
> > If you see where the problem is ?
> > Thanks in advance.
> >
> >
> > "Chris Tacke [MVP]" wrote:
> >
> >> The space is the name is the problem. Embed quotes in the command line.
> >> Single quotes might work as well.
> >>
> >> psi.Arguments = string.Format("\"\\FlashFX Disk\\tmp\\{0}\"", file);
> >>
> >> or
> >>
> >> psi.Arguments = string.Format(@"'\FlashFX Disk\tmp\{0}'", file);
> >>
> >> -Chris
> >>
> >>
> >>
> >> "Gandalf" <(E-Mail Removed)> wrote in message
> >> news:A6AE45EE-5491-4D64-848A-(E-Mail Removed)...
> >> > Hi,
> >> >
> >> > I'm using the wwceload program to install automatically some cab files,
> >> > but
> >> > I have an error message which is the following :
> >> >
> >> > Ni .cab files to install : please specify a .cab file or double tap a
> >> > .cab
> >> > file to install the application.
> >> >
> >> > The code is the following (I'm using the OpenNETCF package) :
> >> > ----------------------------------------------------
> >> > static void runWce(string file)
> >> > {
> >> > ProcessStartInfo psi=new ProcessStartInfo();
> >> > psi.FileName="wceload";
> >> > psi.Arguments=@"\FlashFX Disk\tmp\" + file;
> >> > Process p=Process.Start(psi);
> >> > p.WaitForExit();
> >> > int exitcode;
> >> > try
> >> > {
> >> > exitcode=p.ExitCode;
> >> > }
> >> > catch
> >> > {
> >> > exitcode=0;
> >> > }
> >> > if (exitcode != 0) MessageBox.Show("Error");
> >> > }
> >> > ----------------------------------------------------
> >> > However, I verified that the cab files were in the directory "FlashFX
> >> > Disk\tmp" and that is ok. I don't understand why the cab files don't
> >> > install
> >> > themselves.
> >> >
> >> > Thanks in advance for any information.
> >> >
> >>
> >>
> >>

>
>
>

 
Reply With Quote
 
Philip Sheard
Guest
Posts: n/a
 
      31st Mar 2006
Do not tell me you are trying to install the CF like this.

"Gandalf" <(E-Mail Removed)> wrote in message
news:65C9E07D-151D-4F7B-BE6C-(E-Mail Removed)...
> Thanks for the information, I tried to write the following code :
> -------------------------------------------------------------------
> ProcessStartInfo psi = new ProcessStartInfo();
> psi.FileName = "wceload";
> psi.Arguments = string.Format("\"\\FlashFX Disk\\Kimberly\\{0}\"", file +
> "
> /noaskdest /noui /delete 0");
> Process p = Process.Start(psi);
> p.WaitForExit();
> -------------------------------------------------------------------
> But that doesn't run !
> Thanks in advance for any information.
>
> "Paul G. Tobey [eMVP]" wrote:
>
>> Put the arguments in, oddly enough, the Arguments property, after the
>> filename. Think about how you'd run it from a command line with the
>> arguments you want:
>>
>> wceload.exe "\FlashFX Disk\Kimberly\mycab.cab" /noaskdest /noui /delete 0
>>
>> or whatever. Now make the Arguments property equal that!
>>
>> Paul T.
>>
>> "Gandalf" <(E-Mail Removed)> wrote in message
>> news:90D0D724-9C7C-4B65-88B9-(E-Mail Removed)...
>> > OK, the following code runs :
>> > psi.Arguments = string.Format("\"\\FlashFX Disk\\tmp\\{0}\"", file);
>> >
>> > But how can I do to pass arguments to the "wceload" program ?
>> > For example, I want to run wceload with the following code :
>> > "wceload /noaskdest /noui /delete 0"
>> >
>> > I tried to do that but that doesn't run :
>> > ...
>> > psi.FileName = "wceload";
>> > psi.Verb = "/noaskdest /noui /delete 0";
>> > psi.Arguments = string.Format("\"\\FlashFX Disk\\Kimberly\\{0}\"",
>> > file);
>> > Process p = Process.Start(psi);
>> > ...
>> >
>> > If you see where the problem is ?
>> > Thanks in advance.
>> >
>> >
>> > "Chris Tacke [MVP]" wrote:
>> >
>> >> The space is the name is the problem. Embed quotes in the command
>> >> line.
>> >> Single quotes might work as well.
>> >>
>> >> psi.Arguments = string.Format("\"\\FlashFX Disk\\tmp\\{0}\"", file);
>> >>
>> >> or
>> >>
>> >> psi.Arguments = string.Format(@"'\FlashFX Disk\tmp\{0}'", file);
>> >>
>> >> -Chris
>> >>
>> >>
>> >>
>> >> "Gandalf" <(E-Mail Removed)> wrote in message
>> >> news:A6AE45EE-5491-4D64-848A-(E-Mail Removed)...
>> >> > Hi,
>> >> >
>> >> > I'm using the wwceload program to install automatically some cab
>> >> > files,
>> >> > but
>> >> > I have an error message which is the following :
>> >> >
>> >> > Ni .cab files to install : please specify a .cab file or double tap
>> >> > a
>> >> > .cab
>> >> > file to install the application.
>> >> >
>> >> > The code is the following (I'm using the OpenNETCF package) :
>> >> > ----------------------------------------------------
>> >> > static void runWce(string file)
>> >> > {
>> >> > ProcessStartInfo psi=new ProcessStartInfo();
>> >> > psi.FileName="wceload";
>> >> > psi.Arguments=@"\FlashFX Disk\tmp\" + file;
>> >> > Process p=Process.Start(psi);
>> >> > p.WaitForExit();
>> >> > int exitcode;
>> >> > try
>> >> > {
>> >> > exitcode=p.ExitCode;
>> >> > }
>> >> > catch
>> >> > {
>> >> > exitcode=0;
>> >> > }
>> >> > if (exitcode != 0) MessageBox.Show("Error");
>> >> > }
>> >> > ----------------------------------------------------
>> >> > However, I verified that the cab files were in the directory
>> >> > "FlashFX
>> >> > Disk\tmp" and that is ok. I don't understand why the cab files don't
>> >> > install
>> >> > themselves.
>> >> >
>> >> > Thanks in advance for any information.
>> >> >
>> >>
>> >>
>> >>

>>
>>
>>



 
Reply With Quote
 
Paul G. Tobey [eMVP]
Guest
Posts: n/a
 
      31st Mar 2006
"Doesn't run" is useless information. It looks to me like you don't know
how to use the Format method. I don't use it much, but it seems like you'd
want to define the string once, with the {0} in it, along with the /noui,
etc. options. Something more like:

psi.Arguments = string.Format("\"\\FlashFX Disk\\Kimberly\\{0}\" /noaskdest
/noui /delete 0", file );

Paul T.

"Gandalf" <(E-Mail Removed)> wrote in message
news:65C9E07D-151D-4F7B-BE6C-(E-Mail Removed)...
> Thanks for the information, I tried to write the following code :
> -------------------------------------------------------------------
> ProcessStartInfo psi = new ProcessStartInfo();
> psi.FileName = "wceload";
> psi.Arguments = string.Format("\"\\FlashFX Disk\\Kimberly\\{0}\"", file +
> "
> /noaskdest /noui /delete 0");
> Process p = Process.Start(psi);
> p.WaitForExit();
> -------------------------------------------------------------------
> But that doesn't run !
> Thanks in advance for any information.
>
> "Paul G. Tobey [eMVP]" wrote:
>
>> Put the arguments in, oddly enough, the Arguments property, after the
>> filename. Think about how you'd run it from a command line with the
>> arguments you want:
>>
>> wceload.exe "\FlashFX Disk\Kimberly\mycab.cab" /noaskdest /noui /delete 0
>>
>> or whatever. Now make the Arguments property equal that!
>>
>> Paul T.
>>
>> "Gandalf" <(E-Mail Removed)> wrote in message
>> news:90D0D724-9C7C-4B65-88B9-(E-Mail Removed)...
>> > OK, the following code runs :
>> > psi.Arguments = string.Format("\"\\FlashFX Disk\\tmp\\{0}\"", file);
>> >
>> > But how can I do to pass arguments to the "wceload" program ?
>> > For example, I want to run wceload with the following code :
>> > "wceload /noaskdest /noui /delete 0"
>> >
>> > I tried to do that but that doesn't run :
>> > ...
>> > psi.FileName = "wceload";
>> > psi.Verb = "/noaskdest /noui /delete 0";
>> > psi.Arguments = string.Format("\"\\FlashFX Disk\\Kimberly\\{0}\"",
>> > file);
>> > Process p = Process.Start(psi);
>> > ...
>> >
>> > If you see where the problem is ?
>> > Thanks in advance.
>> >
>> >
>> > "Chris Tacke [MVP]" wrote:
>> >
>> >> The space is the name is the problem. Embed quotes in the command
>> >> line.
>> >> Single quotes might work as well.
>> >>
>> >> psi.Arguments = string.Format("\"\\FlashFX Disk\\tmp\\{0}\"", file);
>> >>
>> >> or
>> >>
>> >> psi.Arguments = string.Format(@"'\FlashFX Disk\tmp\{0}'", file);
>> >>
>> >> -Chris
>> >>
>> >>
>> >>
>> >> "Gandalf" <(E-Mail Removed)> wrote in message
>> >> news:A6AE45EE-5491-4D64-848A-(E-Mail Removed)...
>> >> > Hi,
>> >> >
>> >> > I'm using the wwceload program to install automatically some cab
>> >> > files,
>> >> > but
>> >> > I have an error message which is the following :
>> >> >
>> >> > Ni .cab files to install : please specify a .cab file or double tap
>> >> > a
>> >> > .cab
>> >> > file to install the application.
>> >> >
>> >> > The code is the following (I'm using the OpenNETCF package) :
>> >> > ----------------------------------------------------
>> >> > static void runWce(string file)
>> >> > {
>> >> > ProcessStartInfo psi=new ProcessStartInfo();
>> >> > psi.FileName="wceload";
>> >> > psi.Arguments=@"\FlashFX Disk\tmp\" + file;
>> >> > Process p=Process.Start(psi);
>> >> > p.WaitForExit();
>> >> > int exitcode;
>> >> > try
>> >> > {
>> >> > exitcode=p.ExitCode;
>> >> > }
>> >> > catch
>> >> > {
>> >> > exitcode=0;
>> >> > }
>> >> > if (exitcode != 0) MessageBox.Show("Error");
>> >> > }
>> >> > ----------------------------------------------------
>> >> > However, I verified that the cab files were in the directory
>> >> > "FlashFX
>> >> > Disk\tmp" and that is ok. I don't understand why the cab files don't
>> >> > install
>> >> > themselves.
>> >> >
>> >> > Thanks in advance for any information.
>> >> >
>> >>
>> >>
>> >>

>>
>>
>>



 
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
problem with wceload installing a cab file. Milsnips Microsoft Dot NET Compact Framework 6 6th Mar 2007 09:13 PM
Load .cab on SD with Wceload.exe ! Paul J. Microsoft Dot NET Compact Framework 2 26th Jan 2004 06:08 PM
WceLoad.exe Brian Burgess Microsoft Dot NET Compact Framework 2 16th Oct 2003 05:59 PM
wceload question Tom Microsoft Dot NET Compact Framework 2 15th Oct 2003 11:16 AM
Problem with wceload.exe Bjoern Microsoft Dot NET Compact Framework 2 2nd Sep 2003 03:43 PM


Features
 

Advertising
 

Newsgroups
 


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