IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Windows Forms Discussion :

[2.0][mmc 3.0] problème nullreference exception dans property page


Sujet :

Windows Forms

  1. #1
    En attente de confirmation mail
    Profil pro
    Inscrit en
    Octobre 2005
    Messages
    49
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Octobre 2005
    Messages : 49
    Points : 26
    Points
    26
    Par défaut [2.0][mmc 3.0] problème nullreference exception dans property page
    Bonjour à tous,

    je suis occupé de dévveloppé une property page custom pour le snap-in aduc

    jusque la tout va bien le problème est que j'utilise un user control dans ma property page et lorsque je le charge j'ai une null reférence quelqu'un pourrait-il m'aider si il faut je peux mettre le code en ligne

    Marc d'avance
    Marc

  2. #2
    Rédacteur
    Avatar de dev01
    Profil pro
    Inscrit en
    Mai 2004
    Messages
    2 451
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2004
    Messages : 2 451
    Points : 6 017
    Points
    6 017
    Par défaut
    Salut .

    Si tu postes comme tu as fait pour utiliser C# avec MMC, je peux regarder

  3. #3
    En attente de confirmation mail
    Profil pro
    Inscrit en
    Octobre 2005
    Messages
    49
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Octobre 2005
    Messages : 49
    Points : 26
    Points
    26
    Par défaut
    bonjour voici mon code en c#, le problème se situe au niveau du shareddataitem je pense :
    1ere classe
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
     
    using System;
    using System.Text;
    using System.Configuration.Install;
    using System.ComponentModel;
    using System.Security.Permissions;
    using System.Windows.Forms;
    using Microsoft.ManagementConsole;
    using Microsoft.ManagementConsole.Advanced;
    namespace EzMmcExtensionPropertyPage1
    {
     
        /// <summary>
        /// RunInstaller attribute - Allows the .Net framework InstallUtil.exe to install the assembly.
        /// SnapInInstaller class - Installs snap-in for MMC.
        /// </summary>
        [RunInstaller(true)]
        public class InstallUtilSupport : SnapInInstaller
        {
        }
     
        /// <summary>
        /// Property sheet extension for  aduc snap-in.
        /// </summary>
        [SnapInSettings("{1A64DD4E-1C06-42c2-A0C7-45233E7E67DA}",
               DisplayName = "- Extension for Sap Property Sheet Sample",
               Description = "Adds a Property Page to Aduc")]
        [ExtendsNodeType("{bf967aba-0de6-11d0-a285-00aa003049e2}")]
        public class ExtensionToPropertySheet : PropertySheetExtension
        {
            private SharedDataItem sharedDataItem;
     
            public ExtensionToPropertySheet()
            {
                sharedDataItem = new SharedDataItem(@"DSOBJECTNAMES");
                this.SharedData.Add(sharedDataItem);
            }
     
            /// <summary>
            /// Initialization notification.
            /// </summary>
            protected override void OnInitialize()
            {
                //sharedDataItem = new SharedDataItem(@"CFSTR_DSOBJECTNAMES");
                //this.SharedData.Add(sharedDataItem);
            }
     
            /// <summary>
            /// Virtual method that is called to get the extension pages.  
            /// </summary>
            /// <param name="propertyPageCollection">Page collection.</param>
            protected override void OnAddPropertyPages(PropertyPageCollection propertyPageCollection)
            {
                sapPropertyPage PropertyPage = new sapPropertyPage(sharedDataItem);
                propertyPageCollection.Add(PropertyPage);
            }
     
        } 
    }
    2e classe qui herite de property page

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
     
    using System;
    using System.Collections.Generic;
    using System.Text;
    using Microsoft.ManagementConsole;
    using Microsoft.ManagementConsole.Advanced;
    using System.ComponentModel; 
     
    namespace EzMmcExtensionPropertyPage1
    {
        public class sapPropertyPage : PropertyPage
        {
     
                private ucSapData ucSap= null;
                private SharedDataItem sharedDataItem;
     
                public sapPropertyPage(SharedDataItem parentSharedDataItem)
                {
                    sharedDataItem = parentSharedDataItem;
                    this.Title = "SAP's data  ";
                    ucSap = new ucSapData(this);
                    this.Control = ucSap;
                }
     
     
                protected override void OnInitialize()
                {
                    base.OnInitialize();
     
                    ucSap.RefreshData(sharedDataItem,(ResultNode) this.ParentSheet.SelectionObject);
                }
     
     
                protected override bool OnApply()
                {
                    if (this.Dirty)
                    {
                        if (ucSap.CanApplyChanges())
                        {
                            ucSap.UpdateData(sharedDataItem);
                        }
                        else
                        {
                            return false;
                        }
                    }
                    return true;
                }
     
                protected override bool OnOK()
                {
                    return this.OnApply();
                }
     
                protected override bool QueryCancel()
                {
                    return true;
                }
     
                protected override void OnCancel()
                {
                    ucSap.RefreshData(sharedDataItem,(ResultNode) this.ParentSheet.SelectionObject);
                }
     
                protected override void OnDestroy()
                {
                }
     
            }
        }
    3e classe :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
     
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Drawing;
    using System.Data;
    using System.Text;
    using System.Windows.Forms;
    using Microsoft.ManagementConsole; 
     
    namespace EzMmcExtensionPropertyPage1
    {
        public partial class ucSapData : UserControl
        {
            private sapPropertyPage propertypage;
     
            public ucSapData(sapPropertyPage parentPropertyPage)
            {
                InitializeComponent();
                propertypage = parentPropertyPage;
                gbModify.Parent = this;
                gbSelection.Parent = this;
                gbSelection.Dock = DockStyle.Fill;
                gbModify.Dock = DockStyle.Fill; 
                gbModify.Visible = false;
                gbSelection.Visible = true;
                tableLayoutPanel1.RowCount = 3;
                tableLayoutPanel1.Parent = gbModify;
                tableLayoutPanel1.Dock = DockStyle.Top;
     
                for (int i = 0; i < 5; i++)
                {
                    ucTextbox uc = new ucTextbox(i.ToString());
                    tableLayoutPanel1.Controls.Add(uc); 
                }
            }
     
            public void RefreshData(SharedDataItem sharedDataItem, ResultNode userNode)
            {
                try
                {
                    // afficher les données recupérée de l'AD
                    foreach (ucTextbox uctb in tableLayoutPanel1.Controls)
                    {
                        uctb.FieldName = userNode.DisplayName.ToString();
                    }
                    propertypage.Dirty = false;
                }
                catch (Exception ex )
                {
                    MessageBox.Show(ex.Message); 
                }
     
            }
            public void UpdateData(SharedDataItem sharedDataItem)
            {                                                           // update Active directory 
            // sharedDataItem.SetData(Encoding.Unicode.GetBytes(this.MachineName.Text));
                byte[] arData = sharedDataItem.GetData(); 
                //modif 
                propertypage.Dirty = false;
            }
            public bool CanApplyChanges()
            {
            //a modifier
                return true; 
            }
     
            private void btnOk_Click_1(object sender, EventArgs e)
            {
                gbModify.Visible = true;
                gbSelection.Visible = false; 
                //update active directory 
            }
     
            private void btnBack_Click(object sender, EventArgs e)
            {
                gbModify.Visible = false;
                gbSelection.Visible = true;
            }
     
            private void checkedListBox1_SelectedIndexChanged(object sender, EventArgs e)
            {
                DataSet ds = new DataSet(); 
            }
        }
    }
     
    /*
    Active directory update 
    public void ModifyUser(string userDisplayName, string username, string password)
    {
       DirectoryEntry de = GetDirectoryEntry();
       de.Username = username;
       de.Password = password; 
     
       DirectorySearcher ds = new DirectorySearcher(de);
       ds.Filter = ("(&(objectclass=user)(objectcategory=person)
                   (displayname=" + userDisplayName + "))");
     
       ds.SearchScope = SearchScope.Subtree;
     
       SearchResult results = ds.FindOne();
     
       if (results != null)
       {
          try
          {
             DirectoryEntry updateEntry = results.GetDirectoryEntry();
             updateEntry.Properties["department"].Value = "555";
             updateEntry.CommitChanges();
             updateEntry.Close();
          }
          catch (Exception ex)
          {
             tbError.Text = ex.ToString();
          }
       }
     
       de.Close();
    }
     * 
     * Update_ok bouton 
    private void btnUpdate_Click(object sender, EventArgs e)
    {
       if (tbUser.Text != "" && tbPass.Text != "")
       {
          string username = tbUser.Text.ToString();
          string password = tbPass.Text.ToString();
     
          if (UserExists(FindName(username))
          {
             ModifyUser(FindName(username), username, password);
          }
       }
    } 
     * 
     * fonction de recherche dans  l'AD
     public bool UserExists(string username)
    {
       DirectoryEntry de = GetDirectoryEntry();
       DirectorySearcher deSearch = new DirectorySearcher();
     
       deSearch.SearchRoot = de;
       deSearch.Filter = "(&(objectClass=user) (cn=" + username + "))";
     
       SearchResultCollection results = deSearch.FindAll();
     
       return results.Count > 0;
    } 
     
    private String FindName(String userAccount)
    {
       DirectoryEntry entry = GetDirectoryEntry();
       String account = userAccount.Replace(@"Domain\", "");
     
       try
       {
          DirectorySearcher search = new DirectorySearcher(entry);
          search.Filter = "(SAMAccountName=" + account + ")";
          search.PropertiesToLoad.Add("displayName");
     
          SearchResult result = search.FindOne();
     
          if (result != null)
          {
             return result.Properties["displayname"][0].ToString();
          }
          else
          {
             return "Unknown User";
          }
       }
       catch (Exception ex)
       {
          string debug = ex.Message;
     
          return "";
       }
    }
    voilà pour mon code la 3e classe est mon usercontrol

    J'espère que tu pourras m'aider et un grand merci du temps consacré à mon message
    Marc

  4. #4
    Rédacteur
    Avatar de dev01
    Profil pro
    Inscrit en
    Mai 2004
    Messages
    2 451
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2004
    Messages : 2 451
    Points : 6 017
    Points
    6 017
    Par défaut
    Salut .

    Tu peux donner le message d'erreur exact avec le détail (qui en mode debug contient les lignes en cause et surtout la pile d'appel )

  5. #5
    En attente de confirmation mail
    Profil pro
    Inscrit en
    Octobre 2005
    Messages
    49
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Octobre 2005
    Messages : 49
    Points : 26
    Points
    26
    Par défaut
    bonjour voir l'erreur que j'obtiens message en premier et stacktrace ensuite

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
     
    Object reference not set to an instance of an object.
       at EzMmcExtensionPropertyPage1.ucSapData.RefreshData(SharedDataItem sharedDataItem, ResultNode userNode) in C:\Documents and Settings\mde\My Documents\Visual Studio 2005\Projects\EzMmcExtensionPropertyPage1\EzMmcExtensionPropertyPage1\ucSapData.cs:line 54

  6. #6
    Rédacteur
    Avatar de dev01
    Profil pro
    Inscrit en
    Mai 2004
    Messages
    2 451
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2004
    Messages : 2 451
    Points : 6 017
    Points
    6 017
    Par défaut
    Salut.

    La ligne 54 c'est laquel ?

    Sinon tu es sur que propertypage est différent de null ? Parce que dans ton contrusteur tu fait bien une affectation mais rien ne garanti que le parametre ne soit pas null

  7. #7
    Nouveau membre du Club
    Profil pro
    Inscrit en
    Novembre 2004
    Messages
    59
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Novembre 2004
    Messages : 59
    Points : 38
    Points
    38
    Par défaut
    bonjour c'est marc_dd mon compte ne fonctionne plus je ne sais pas pourquoi , je n'ai plus le droit de poster ni d'envoyer de mp donc voilà j'utilise le compte d'un collègue

    j'ai rechanger un peu mon code et je me trouve toujours devant le même problème
    la ligne 52 est la ligne

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    uctb.fieldName = usernode.displayName.tostring() ;
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
     
    Object reference not set to an instance of an object.
       at EzMmcExtensionPropertyPage1.ucSapData.RefreshData(SharedDataItem sharedDataItem, ResultNode userNode) in C:\Documents and Settings\mde\My Documents\Visual Studio 2005\Projects\EzMmcExtensionPropertyPage1\EzMmcExtensionPropertyPage1\ucSapData.cs:line 52
    j'espère que tu sauras m'aider
    Merci d'avance
    Marc

Discussions similaires

  1. Problème Unhandled exception dans un enum
    Par shark59 dans le forum Débuter avec Java
    Réponses: 8
    Dernier message: 05/10/2011, 18h57
  2. Problème d'exception dans Wicket avec CXF
    Par Nico87 dans le forum Services Web
    Réponses: 1
    Dernier message: 10/03/2010, 15h20
  3. probléme d'exception dans un formulaire
    Par minie dans le forum Struts 1
    Réponses: 2
    Dernier message: 05/06/2007, 12h11
  4. Problème de tri dans ma page ASP.
    Par laurent_diep dans le forum ASP
    Réponses: 4
    Dernier message: 01/03/2007, 17h59
  5. probléme d'insert dans une page asp !
    Par tomtom25 dans le forum ASP
    Réponses: 5
    Dernier message: 31/03/2005, 17h04

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo