Bonjour, je suis nouvau dans le domaine du Visual C et j'éssailler d'expérimenter et voilà:

Je veux redirigé le fichier main (Program.cs) sur un DLL (SmoothProgressBar.dll) pour utiliser les fonction de celui-ci afain de faire fonctionner la ProgressBar. Visual studio me dit qu'il y a un problème avec le fichier "Program.cs" à la ligne 21, sois avec la commande if. Voici les code source de mon expérimentation !

Error 1 A namespace does not directly contain members such as fields or methods C:\Documents and Settings\****...\Local Settings\Application Data\Temporary Projects\WindowsApplication1\Program.cs 21 1 WindowsApplication1
Program.cs:
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
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using SmoothProgressBar.dll;
 
namespace WindowsApplication1
{
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Form1());
        }
    }
if (this.smoothProgressBar1.Value > 0)
{
	this.smoothProgressBar1.Value--;
	this.smoothProgressBar2.Value++;
}
else
{
	this.timer1.Enabled = false;
}}
Et maintenant ceux du fameux .DLL

SmoothProgressBar.dll:

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
using System;
using System.Collections.Generic;
using System.Text;
 
int min = 0;
int max = 100;
int val = 0;
Color BarColor = Color.Blue;
 
protected override void OnResize(EventArgs e)
{
	this.Invalidate();
}
 
protected override void OnPaint(PaintEventArgs e)
{
	Graphics g = e.Graphics;
	SolidBrush brush = new SolidBrush(BarColor);
	float percent = (float)(val - min) / (float)(max - min);
	Rectangle rect = this.ClientRectangle;
 
	rect.Width = (int)((float)rect.Width * percent);
 
	g.FillRectangle(brush, rect);
 
	Draw3DBorder(g);
 
	brush.Dispose();
	g.Dispose();		
}
 
public int Minimum
{
	get
	{
		return min;
	}
 
	set
	{
		if (value < 0)
		{
			min = 0;
		}
 
than the maximum value.
		if (value > max)
		{
			min = value;
			min = value;
		}
 
		if (val < min)
		{
			val = min;
		}
 
		this.Invalidate();
	}
}
 
public int Maximum
{
	get
	{
		return max;
	}
 
	set
	{
 than the minimum value.
		if (value < min)
		{
			min = value;
		}
 
		max = value;
 
		if (val > max)
		{
			val = max;
		}
 
		this.Invalidate();
	}
}
 
public int Value
{
	get
	{
		return val;
	}
 
	set
	{
		int oldValue = val;
 
		if (value < min)
		{
			val = min;
		}
		else if (value > max)
		{
			val = max;
		}
		else
		{
			val = value;
		}
		float percent;
 
		Rectangle newValueRect = this.ClientRectangle;
		Rectangle oldValueRect = this.ClientRectangle;
 
		percent = (float)(val - min) / (float)(max - min);
		newValueRect.Width = (int)((float)newValueRect.Width * percent);
 
		percent = (float)(oldValue - min) / (float)(max - min);
		oldValueRect.Width = (int)((float)oldValueRect.Width * percent);
 
		Rectangle updateRect = new Rectangle();
 
		if (newValueRect.Width > oldValueRect.Width)
		{
			updateRect.X = oldValueRect.Size.Width;
			updateRect.Width = newValueRect.Width - oldValueRect.Width;
		}
		else
		{
			updateRect.X = newValueRect.Size.Width;
			updateRect.Width = oldValueRect.Width - newValueRect.Width;
		}
 
		updateRect.Height = this.Height;
 
		// Invalidate the intersection region only.
		this.Invalidate(updateRect);
	}
}
 
public Color ProgressBarColor
{
	get
	{
		return BarColor;
	}
 
	set
	{
		BarColor = value;
 
		this.Invalidate();
	}
}
 
private void Draw3DBorder(Graphics g)
{
	int PenWidth = (int)Pens.White.Width;
 
	g.DrawLine(Pens.DarkGray, 
		new Point(this.ClientRectangle.Left, this.ClientRectangle.Top),
		new Point(this.ClientRectangle.Width - PenWidth, this.ClientRectangle.Top));
	g.DrawLine(Pens.DarkGray,
		new Point(this.ClientRectangle.Left, this.ClientRectangle.Top), 
		new Point(this.ClientRectangle.Left, this.ClientRectangle.Height - PenWidth));
	g.DrawLine(Pens.White,
		new Point(this.ClientRectangle.Left, this.ClientRectangle.Height - PenWidth), 
		new Point(this.ClientRectangle.Width - PenWidth, this.ClientRectangle.Height - PenWidth));
	g.DrawLine(Pens.White,
		new Point(this.ClientRectangle.Width - PenWidth, this.ClientRectangle.Top), 
		new Point(this.ClientRectangle.Width - PenWidth, this.ClientRectangle.Height - PenWidth));
}
Désolé pour le manque de commantaire, C'est en grande partie du Copier/Coller

Merci à tout ceux qui on le courage de m'aider !!!