G
Guest
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.
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.