Click here to Skip to main content
15,888,984 members
Home / Discussions / C#
   

C#

 
AnswerRe: Suggestions On How To Refactor This Pin
BobJanova12-Jun-11 23:44
BobJanova12-Jun-11 23:44 
QuestionSaving changed data from a BindingSource Pin
tekturtle10-Jun-11 4:26
tekturtle10-Jun-11 4:26 
AnswerRe: Saving changed data from a BindingSource Pin
BobJanova10-Jun-11 6:05
BobJanova10-Jun-11 6:05 
GeneralRe: Saving changed data from a BindingSource Pin
tekturtle10-Jun-11 10:04
tekturtle10-Jun-11 10:04 
GeneralRe: Saving changed data from a BindingSource Pin
BobJanova12-Jun-11 22:14
BobJanova12-Jun-11 22:14 
GeneralRe: Saving changed data from a BindingSource Pin
tekturtle15-Jun-11 11:57
tekturtle15-Jun-11 11:57 
GeneralRe: Saving changed data from a BindingSource [modified] Pin
BobJanova15-Jun-11 13:20
BobJanova15-Jun-11 13:20 
Questionsetup - include driver installation Pin
lukeer10-Jun-11 2:10
lukeer10-Jun-11 2:10 
Hi experts,

I am developing an application for a customer. The application uses a USB device for which there is a driver. The customer would like the application setup to include the driver installation.

AFAIK the way to go is
1. Copy driver files to some directory I know.
2. Tell windows to look in that directory for driver files.
3. Plug device in.
Windows will ask for driver files.
4. Choose to install automatically.
Windows will use stored directory (2) to install drivers.

My Problem is step (1). What I tried was:
- include the driver files in a subdirectory of my application project (Right click on project, "Add", "New folder")
- add "Content files" to setup's file system view (Or whatever "Inhaltsdateien" reads in english).
- compile and execute setup on target machine.

Some of the files were copied, but others were not. Here are the files I had added to the application project:
- USBDriver
  - amd64
  | \ ftbusui.dll
  | \ ftcserco.dll
  | \ ftd2xx.lib
  | \ ftd2xx64.dll
  | \ ftdibus.sys
  | \ ftlang.dll
  | \ ftser2k.sys
  | \ ftserui2.dll
  - i386
  | \ ftbusui.dll
  | \ ftcserco.dll
  | \ ftd2xx.dll
  | \ ftd2xx.lib
  | \ ftdibus.sys
  | \ ftlang.dll
  | \ ftser2k.sys
  | \ ftserui2.dll
  - Static
  | - amd64
  | | \ ftd2xx.lib
  | - i386
  |   \ ftd2xx.lib
  \ DPInst.exe
  \ dpinst.xml
  \ ftd2xx.h
  \ ftdibus.cat
  \ ftdibus.inf
  \ ftdiport.cat
  \ ftdiport.inf
And these are the files that got copied:
-USBDriver
  - amd64
  | \ ftbusui.dll
  | \ ftcserco.dll
  | \ ftd2xx64.dll
  | \ ftlang.dll
  | \ ftserui2.dll
  - i386
  | \ ftbusui.dll
  | \ ftcserco.dll
  | \ ftd2xx.dll
  | \ ftlang.dll
  | \ ftserui2.dll
  \ DPInst.exe
  \ dpinst.xml
  \ ftd2xx.h
  \ ftdibus.inf
  \ ftdiport.inf

It seems that files with extensions .sys, .cat and .lib did not get copied.

Why is that?

How can I transfer all of the driver files to their destination?

Ciao,


luker

AnswerRe: setup - include driver installation Pin
Dave Kreskowiak10-Jun-11 3:05
mveDave Kreskowiak10-Jun-11 3:05 
GeneralRe: setup - include driver installation Pin
lukeer10-Jun-11 3:31
lukeer10-Jun-11 3:31 
GeneralRe: setup - include driver installation Pin
Dave Kreskowiak10-Jun-11 3:53
mveDave Kreskowiak10-Jun-11 3:53 
QuestionList Of DataRow Pin
om_metab9-Jun-11 22:50
om_metab9-Jun-11 22:50 
AnswerRe: List Of DataRow Pin
V.9-Jun-11 22:57
professionalV.9-Jun-11 22:57 
AnswerRe: List Of DataRow Pin
BobJanova9-Jun-11 23:47
BobJanova9-Jun-11 23:47 
AnswerRe: List Of DataRow Pin
Pete O'Hanlon10-Jun-11 0:13
mvePete O'Hanlon10-Jun-11 0:13 
GeneralRe: List Of DataRow Pin
om_metab10-Jun-11 0:35
om_metab10-Jun-11 0:35 
QuestionDetecting USB devices Pin
majamer9-Jun-11 21:46
majamer9-Jun-11 21:46 
AnswerRe: Detecting USB devices Pin
Kim Togo10-Jun-11 0:23
professionalKim Togo10-Jun-11 0:23 
GeneralRe: Detecting USB devices Pin
majamer13-Jun-11 3:17
majamer13-Jun-11 3:17 
QuestionCopying List into KeyValuePair Pin
AmbiguousName9-Jun-11 20:38
AmbiguousName9-Jun-11 20:38 
AnswerRe: Copying List into KeyValuePair Pin
Pete O'Hanlon9-Jun-11 23:24
mvePete O'Hanlon9-Jun-11 23:24 
GeneralRe: Copying List into KeyValuePair Pin
AmbiguousName10-Jun-11 0:40
AmbiguousName10-Jun-11 0:40 
GeneralRe: Copying List into KeyValuePair Pin
Pete O'Hanlon10-Jun-11 1:16
mvePete O'Hanlon10-Jun-11 1:16 
GeneralRe: Copying List into KeyValuePair Pin
BobJanova10-Jun-11 6:01
BobJanova10-Jun-11 6:01 
AnswerRe: Copying List into KeyValuePair Pin
BobJanova9-Jun-11 23:51
BobJanova9-Jun-11 23:51 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.