Click here to Skip to main content
15,900,818 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to update progressBar from another class Pin
MichCl17-Jan-13 9:44
MichCl17-Jan-13 9:44 
GeneralRe: How to update progressBar from another class Pin
Jibesh17-Jan-13 10:24
professionalJibesh17-Jan-13 10:24 
GeneralRe: How to update progressBar from another class Pin
MichCl18-Jan-13 2:07
MichCl18-Jan-13 2:07 
GeneralRe: How to update progressBar from another class Pin
MichCl18-Jan-13 7:16
MichCl18-Jan-13 7:16 
GeneralRe: How to update progressBar from another class Pin
Jibesh18-Jan-13 13:55
professionalJibesh18-Jan-13 13:55 
GeneralRe: How to update progressBar from another class Pin
MichCl21-Jan-13 4:53
MichCl21-Jan-13 4:53 
GeneralRe: How to update progressBar from another class Pin
Jibesh21-Jan-13 5:00
professionalJibesh21-Jan-13 5:00 
GeneralRe: How to update progressBar from another class Pin
MichCl21-Jan-13 5:01
MichCl21-Jan-13 5:01 
GeneralRe: How to update progressBar from another class Pin
Jibesh21-Jan-13 5:02
professionalJibesh21-Jan-13 5:02 
GeneralRe: How to update progressBar from another class Pin
MichCl6-May-13 3:44
MichCl6-May-13 3:44 
QuestionIncluding a PDF file in SHFB generated .chm (Html Helpfile 1) Pin
User 971917715-Jan-13 1:07
User 971917715-Jan-13 1:07 
AnswerRe: Including a PDF file in SHFB generated .chm (Html Helpfile 1) Pin
Pete O'Hanlon15-Jan-13 3:28
mvePete O'Hanlon15-Jan-13 3:28 
QuestionDirectX9 Pin
electriac15-Jan-13 0:20
electriac15-Jan-13 0:20 
AnswerRe: DirectX9 Pin
markovl15-Jan-13 0:53
markovl15-Jan-13 0:53 
GeneralRe: DirectX9 Pin
electriac15-Jan-13 4:59
electriac15-Jan-13 4:59 
GeneralRe: DirectX9 Pin
Dave Kreskowiak15-Jan-13 6:48
mveDave Kreskowiak15-Jan-13 6:48 
GeneralRe: DirectX9 Pin
electriac15-Jan-13 12:17
electriac15-Jan-13 12:17 
This seems to be working. Any suggestions? I guess I will have to identify the OS and have an alternative for XP - right? Many thanks!

public void readRegistryForDX9()
        {
            RegistryKey rk = Registry.LocalMachine;
            RegistryKey sk = rk.OpenSubKey("SOFTWARE\\Wow6432Node\\Microsoft\\DirectX");
            string temp = (string)sk.GetValue("Version");
            if (temp.IndexOf("4.09")<0) MessageBox.Show("Directx 9 Must be installed");
            else MessageBox.Show("Directx 9 already installed");
            return;
        }

GeneralRe: DirectX9 Pin
Dave Kreskowiak15-Jan-13 19:39
mveDave Kreskowiak15-Jan-13 19:39 
GeneralRe: DirectX9 Pin
markovl16-Jan-13 1:48
markovl16-Jan-13 1:48 
GeneralRe: DirectX9 Pin
electriac16-Jan-13 4:42
electriac16-Jan-13 4:42 
QuestionDatagridview DataSource Change Auotmatically without need Pin
Nabawoka14-Jan-13 16:35
Nabawoka14-Jan-13 16:35 
AnswerRe: Datagridview DataSource Change Auotmatically without need Pin
PIEBALDconsult14-Jan-13 17:19
mvePIEBALDconsult14-Jan-13 17:19 
QuestionHow to get the select value in a multiple dropdownlist Pin
vanilsonwdd14-Jan-13 13:20
vanilsonwdd14-Jan-13 13:20 
AnswerRe: How to get the select value in a multiple dropdownlist Pin
Jibesh14-Jan-13 14:33
professionalJibesh14-Jan-13 14:33 
AnswerRe: How to get the select value in a multiple dropdownlist Pin
micke.andersson28-Jan-13 3:54
micke.andersson28-Jan-13 3:54 

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.