Installing cab from VB.net compact framework application

  • Thread starter Thread starter will
  • Start date Start date
W

will

Can i install another cab file from a .net compact
framework application? i want do dynamically copy cab
files from a compact flash card and install them.

can this be done?

thanks,
will
 
wceload.exe is the program associated with cab files. You can probably use
a P/Invoke of CreateProcess() or ShellExecuteEx() to launch it with the full
path to the cab file on the command line. Is that what you're wanting? It
would work just like the user double-tapping on the cab file...

Paul T.
 
Back
Top