Click here to Skip to main content
15,887,683 members
Home / Discussions / C#
   

C#

 
AnswerRe: Export To Excel Advanced Pin
ignrod3-Jul-12 14:34
ignrod3-Jul-12 14:34 
QuestionHow to bind extra column(sales) along with Latitude and logitude in GoogleMaps in C# with Asp.Net Pin
ChandrakanthGaddam3-Jul-12 5:12
ChandrakanthGaddam3-Jul-12 5:12 
Questionsetting orientation of x-axis labels Pin
Danzy833-Jul-12 4:32
Danzy833-Jul-12 4:32 
AnswerRe: setting orientation of x-axis labels Pin
Pete O'Hanlon3-Jul-12 4:33
mvePete O'Hanlon3-Jul-12 4:33 
GeneralRe: setting orientation of x-axis labels Pin
Danzy833-Jul-12 4:51
Danzy833-Jul-12 4:51 
GeneralRe: setting orientation of x-axis labels Pin
Pete O'Hanlon3-Jul-12 5:49
mvePete O'Hanlon3-Jul-12 5:49 
GeneralSetting X-axis values (Labels) on chart [solved] Pin
Danzy833-Jul-12 4:16
Danzy833-Jul-12 4:16 
GeneralContinuation of Correct way of doing installers Pin
glennPattonWork33-Jul-12 1:39
professionalglennPattonWork33-Jul-12 1:39 
Hi All (especially Pete O'Hanlon),

I have now found the driver I think I am looking for the " KernelDriver,FTDIBUS,USB Serial Converter Driver" I can now check for this driver find it using the code:
C#
ServiceController[] scDevices = ServiceController.GetDevices();

  MessageBox.Show("Device driver services on the local computer");

       foreach (ServiceController scTemp in scDevices)
       {
       lstDrivers.Items.Add(scTemp.ServiceType + "," + scTemp.ServiceName +
        "," + scTemp.DisplayName);

       }
I think if I can check the value of this it will do.
Pete O'Hanlon gave me some code in a question called "Correct way of doing installers"
using a Dictionary command, in copying this and trying to use it, I have obviously lost something / not understood something as the red wiggly line for syntax errors appear in System.Management. commands, I am using VS 2008 (.NET 3.5) and using System.Management only give one . option Instrumentation(?). Should I be using a Build option I have not seen before. So really the question is if I can't do it from here how can I get Petes example to work in VS 2008?
Glenn

modified 3-Jul-12 7:51am.

GeneralRe: Continuation of Correct way of doing installers Pin
Pete O'Hanlon3-Jul-12 1:52
mvePete O'Hanlon3-Jul-12 1:52 
GeneralRe: Continuation of Correct way of doing installers Pin
glennPattonWork33-Jul-12 2:09
professionalglennPattonWork33-Jul-12 2:09 
GeneralRe: Continuation of Correct way of doing installers Pin
Pete O'Hanlon3-Jul-12 2:41
mvePete O'Hanlon3-Jul-12 2:41 
GeneralRe: Continuation of Correct way of doing installers Pin
glennPattonWork33-Jul-12 2:46
professionalglennPattonWork33-Jul-12 2:46 
GeneralRe: Continuation of Correct way of doing installers Pin
Pete O'Hanlon3-Jul-12 2:49
mvePete O'Hanlon3-Jul-12 2:49 
GeneralRe: Continuation of Correct way of doing installers Pin
glennPattonWork33-Jul-12 3:03
professionalglennPattonWork33-Jul-12 3:03 
GeneralRe: Continuation of Correct way of doing installers Pin
Pete O'Hanlon3-Jul-12 3:46
mvePete O'Hanlon3-Jul-12 3:46 
GeneralRe: Continuation of Correct way of doing installers Pin
glennPattonWork33-Jul-12 3:53
professionalglennPattonWork33-Jul-12 3:53 
GeneralRe: Continuation of Correct way of doing installers Pin
Pete O'Hanlon3-Jul-12 4:15
mvePete O'Hanlon3-Jul-12 4:15 
GeneralRe: Continuation of Correct way of doing installers Pin
glennPattonWork33-Jul-12 4:52
professionalglennPattonWork33-Jul-12 4:52 
GeneralRe: Continuation of Correct way of doing installers Pin
Pete O'Hanlon3-Jul-12 5:41
mvePete O'Hanlon3-Jul-12 5:41 
GeneralRe: Continuation of Correct way of doing installers Pin
glennPattonWork33-Jul-12 5:46
professionalglennPattonWork33-Jul-12 5:46 
GeneralRe: Continuation of Correct way of doing installers Pin
glennPattonWork33-Jul-12 5:59
professionalglennPattonWork33-Jul-12 5:59 
GeneralRe: Continuation of Correct way of doing installers Pin
glennPattonWork33-Jul-12 3:20
professionalglennPattonWork33-Jul-12 3:20 
QuestionText conversion Pin
Satay843-Jul-12 0:09
Satay843-Jul-12 0:09 
AnswerRe: Text conversion Pin
Eddy Vluggen3-Jul-12 0:51
professionalEddy Vluggen3-Jul-12 0:51 
GeneralRe: Text conversion Pin
Satay843-Jul-12 19:36
Satay843-Jul-12 19:36 

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.