Bonjour,

voici mon problème :

Dans le but de réaliser une application je dois utiliser un monthpicker que j'ai trouvé sur internet.
Dans mon code j'utilise le MonthPicker de la manière suivante :

Label9.Text = MonthPicker1.Month.ToString() + MonthPicker1.Year.ToString();

Cependant lorsque je veux exécuter mon programme j'ai la réponse suivante :


Ligne 174 : get
Ligne 175 : {
Ligne 176 : return Convert.ToInt32(dropDownMonth.SelectedValue);
Ligne 177 : }
Ligne 178 : }

[NullReferenceException: La référence d'objet n'est pas définie à une instance d'un objet.]
DayPilot.Web.UI.MonthPicker.get_Month() in C:\Users\stagssi\Documents\Visual Studio 2010\Projects\testpicker\Source\MonthPicker.cs:176
DataGrid.TestBd2.Page_Load(Object sender, EventArgs e) in C:\Users\stagssi\documents\visual studio 2010\Projects\DataGrid\DataGrid\TestBd2.aspx.cs:60
System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) +51
System.Web.UI.Control.OnLoad(EventArgs e) +92
System.Web.UI.Control.LoadRecursive() +54
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +772

Voici la classe du monthpicker complète

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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
using System;
using System.ComponentModel;
using System.Drawing;
using System.Globalization;
using System.Security.Permissions;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
 
namespace DayPilot.Web.UI
{
    [PersistChildren(false)]
    [ParseChildren(true)]
    [Designer(typeof(MonthPickerDesigner))]
    [DefaultEvent("SelectionChanged")]
    [ToolboxBitmap(typeof(DropDownList))]
    [AspNetHostingPermission(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal), AspNetHostingPermission(SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
    public class MonthPicker : Control, INamingContainer
    {
        public DropDownList dropDownMonth;
        public DropDownList dropDownYear;
 
        public event EventHandler SelectionChanged;
 
        protected override void CreateChildControls()
        {
            dropDownMonth = new DropDownList();
            dropDownMonth.ID = "Month";
            fillMonthNames();
            dropDownMonth.SelectedValue = DateTime.Today.Month.ToString();
            dropDownMonth.SelectedIndexChanged += new EventHandler(dropDownMonth_SelectedIndexChanged);
            Controls.Add(dropDownMonth);
 
            Controls.Add(new LiteralControl(" "));
 
            dropDownYear = new DropDownList();
            dropDownYear.ID = "Year";
            fillYearNames();
            dropDownYear.SelectedValue = DateTime.Today.Year.ToString();
            dropDownYear.SelectedIndexChanged += new EventHandler(dropDownYear_SelectedIndexChanged);
            Controls.Add(dropDownYear);
 
            updateChildren();
        }
 
        void dropDownYear_SelectedIndexChanged(object sender, EventArgs e)
        {
            updateStartDate();
            OnSelectionChanged();
        }
 
        void dropDownMonth_SelectedIndexChanged(object sender, EventArgs e)
        {
            updateStartDate();
            OnSelectionChanged();
        }
 
        void updateChildren()
        {
            EnsureChildControls();
 
            dropDownMonth.SelectedValue = StartDate.Month.ToString();
            dropDownYear.SelectedValue = StartDate.Year.ToString();
 
            dropDownYear.AutoPostBack = AutoPostBack;
            dropDownMonth.AutoPostBack = AutoPostBack;
 
            dropDownYear.Enabled = Enabled;
            dropDownMonth.Enabled = Enabled;
 
            dropDownMonth.Attributes.Add("onchange", OnClientSelectionChanged);
            dropDownYear.Attributes.Add("onchange", OnClientSelectionChanged);
        }
 
        void updateStartDate()
        {
            StartDate = new DateTime(Year, Month, 1);
        }
 
        private void OnSelectionChanged()
        {
            if (SelectionChanged != null)
            {
                SelectionChanged(this, new EventArgs());
            }
        }
 
        protected override void Render(HtmlTextWriter writer)
        {
            writer.AddAttribute("id", ClientID);
            if (!String.IsNullOrEmpty(CssClass))
            {
                writer.AddAttribute("class", CssClass);
            }
            writer.RenderBeginTag("span");
            RenderChildren(writer);
            writer.RenderEndTag();
        }
 
        public void Recreate()
        {
            ChildControlsCreated = false;
            updateChildren();
        }
 
        private void fillMonthNames()
        {
            DateTime start = new DateTime(2007, 1, 1); // Sunday
            for (int i = 0; i < 12; i++)
            {
                string name;
                if (String.IsNullOrEmpty(Culture))
                {
                    name = start.AddMonths(i).ToString(FormatMonth);
                }
                else
                {
                    name = start.AddMonths(i).ToString(FormatMonth, new CultureInfo(Culture));
                }
 
                string number = (i + 1).ToString();
 
                dropDownMonth.Items.Add(new ListItem(name, number));
 
            }
        }
 
        private void fillYearNames()
        {
            for (int i = YearStart; i <= YearEnd; i++)
            {
                dropDownYear.Items.Add(new ListItem(yearToString(i), i.ToString()));
            }
        }
 
        private string yearToString(int year)
        {
            DateTime dt = new DateTime(year, 1, 1);
            return dt.ToString(FormatYear);
        }
 
        [Description("First day of the selected month. Use this property to change the selection.")]
        [Category("Behavior")]
        public DateTime StartDate
        {
            get
            {
                if (ViewState["StartDate"] == null)
                {
                    return new DateTime(DateTime.Today.Year, DateTime.Today.Month, 1);
                }
                return (DateTime)ViewState["StartDate"];
            }
            set
            {
                ViewState["StartDate"] = new DateTime(value.Year, value.Month, 1);
                updateChildren();
            }
        }
 
 
        [Browsable(false)]
        public DateTime EndDate
        {
            get
            {
                return StartDate.AddMonths(1);
            }
        }
 
        [Browsable(false)]
        public int Month
        {
            get
            {
                return Convert.ToInt32(dropDownMonth.SelectedValue);
            }
        }
 
        [Browsable(false)]
        public int Year
        {
            get
            {
                return Convert.ToInt32(dropDownYear.SelectedValue);
            }
        }
 
 
 
        [Description("Format of the values in the year DropDownList (use yy or yyyy).")]
        [Category("Appearance")]
        [DefaultValue("yyyy")]
        public string FormatYear
        {
            get
            {
                if (ViewState["FormatYear"] == null)
                {
                    return "yyyy";
                }
                return (string) ViewState["FormatYear"];
            }
            set
            {
                ViewState["FormatYear"] = value;
            }
        }
 
        [Description("Format of the values in the month DropDownList (use %M, MM, MMM or MMMM).")]
        [Category("Appearance")]
        [DefaultValue("MMMM")]
        public string FormatMonth
        {
            get
            {
                if (ViewState["FormatMonth"] == null)
                {
                    return "MMMM";
                }
                return (string)ViewState["FormatMonth"];
            }
            set
            {
                ViewState["FormatMonth"] = value;
            }
        }
 
        [Description("First year of the selectable range.")]
        [Category("Appearance")]
        [DefaultValue(2000)]
        public int YearStart
        {
            get
            {
                if (ViewState["YearStart"] == null)
                {
                    return 2000;
                }
                return (int)ViewState["YearStart"];
            }
            set
            {
                ViewState["YearStart"] = value;
            }
        }
 
        [Description("Last year of the selectable range.")]
        [Category("Appearance")]
        [DefaultValue(2020)]
        public int YearEnd
        {
            get
            {
                if (ViewState["YearEnd"] == null)
                {
                    return 2020;
                }
                return (int)ViewState["YearEnd"];
            }
            set
            {
                ViewState["YearEnd"] = value;
            }
        }
 
        [Category("Behavior")]
        [Description("Automatically postback to the server when the selection is changed.")]
        [DefaultValue(false)]
        public bool AutoPostBack
        {
            get
            {
                if (ViewState["AutoPostBack"] == null)
                {
                    return false;
                }
 
                return (bool) ViewState["AutoPostBack"];
            }
            set
            {
                ViewState["AutoPostBack"] = value;
 
                updateChildren();
 
            }
        }
 
        [Category("Behavior")]
        [Description("Enabled state of the control.")]
        [DefaultValue(true)]
        public bool Enabled
        {
            get
            {
                if (ViewState["Enabled"] == null)
                {
                    return true;
                }
 
                return (bool)ViewState["Enabled"];
            }
            set
            {
                ViewState["Enabled"] = value;
 
                updateChildren();
 
            }
        }
 
        [Description("CSS class of the control.")]
        [Category("Appearance")]
        [DefaultValue("")]
        public string CssClass
        {
            get
            {
                if (ViewState["CssClass"] == null)
                {
                    return String.Empty;
                }
                return (string)ViewState["CssClass"];
            }
            set
            {
                ViewState["CssClass"] = value;
            }
        }
 
        [Description("JavaScript code to be executed on the client side when the selection is changed.")]
        [Category("Behavior")]
        public string OnClientSelectionChanged
        {
            get
            {
                if (ViewState["OnClientSelectionChanged"] == null)
                {
                    return String.Empty;
                }
 
                return (string)ViewState["OnClientSelectionChanged"];
            }
            set
            {
                ViewState["OnClientSelectionChanged"] = value;
 
                updateChildren();
            }
        }
 
        [Description("Determines the language of the month list. If empty, it uses Page.Culture value.")]
        [DefaultValue("")]
        [Category("Appearance")]
        public string Culture
        {
            get
            {
                if (ViewState["Culture"] == null)
                {
                    return String.Empty;
                }
 
                return (string)ViewState["Culture"];
            }
            set
            {
                ViewState["Culture"] = value;
 
                Recreate();
            }
        }
 
    }
}