Click here to Skip to main content
15,899,313 members
Home / Discussions / C#
   

C#

 
AnswerRe: Exposing unsafe methods through an interface. Pin
Pete O'Hanlon17-Jan-11 0:49
mvePete O'Hanlon17-Jan-11 0:49 
AnswerMessage Removed Pin
17-Jan-11 1:17
Ravi Sant17-Jan-11 1:17 
GeneralRe: Exposing unsafe methods through an interface. Pin
#realJSOP17-Jan-11 1:19
professional#realJSOP17-Jan-11 1:19 
GeneralRe: Exposing unsafe methods through an interface. PinPopular
Chris Maunder17-Jan-11 1:34
cofounderChris Maunder17-Jan-11 1:34 
GeneralRe: Exposing unsafe methods through an interface. Pin
#realJSOP17-Jan-11 2:08
professional#realJSOP17-Jan-11 2:08 
GeneralRe: Exposing unsafe methods through an interface. Pin
Ravi Sant17-Jan-11 3:09
Ravi Sant17-Jan-11 3:09 
AnswerRe: Exposing unsafe methods through an interface. Pin
PIEBALDconsult17-Jan-11 1:43
mvePIEBALDconsult17-Jan-11 1:43 
AnswerRe: Exposing unsafe methods through an interface. Pin
_Erik_17-Jan-11 2:50
_Erik_17-Jan-11 2:50 
QuestionHow to do edit ,update and delete in DataGridview using C# Pin
GJBalaji16-Jan-11 19:05
GJBalaji16-Jan-11 19:05 
AnswerRe: How to do edit ,update and delete in DataGridview using C# Pin
Abhinav S16-Jan-11 20:02
Abhinav S16-Jan-11 20:02 
AnswerRe: How to do edit ,update and delete in DataGridview using C# Pin
Mycroft Holmes16-Jan-11 20:23
professionalMycroft Holmes16-Jan-11 20:23 
GeneralRe: How to do edit ,update and delete in DataGridview using C# Pin
OriginalGriff16-Jan-11 20:43
mveOriginalGriff16-Jan-11 20:43 
AnswerRe: How to do edit ,update and delete in DataGridview using C# Pin
RaviRanjanKr16-Jan-11 22:49
professionalRaviRanjanKr16-Jan-11 22:49 
GeneralRe: How to do edit ,update and delete in DataGridview using C# Pin
Pete O'Hanlon16-Jan-11 22:57
mvePete O'Hanlon16-Jan-11 22:57 
GeneralRe: How to do edit ,update and delete in DataGridview using C# Pin
RaviRanjanKr17-Jan-11 1:41
professionalRaviRanjanKr17-Jan-11 1:41 
GeneralRe: How to do edit ,update and delete in DataGridview using C# Pin
Henry Minute17-Jan-11 5:58
Henry Minute17-Jan-11 5:58 
GeneralRe: How to do edit ,update and delete in DataGridview using C# Pin
Pete O'Hanlon17-Jan-11 6:17
mvePete O'Hanlon17-Jan-11 6:17 
QuestionHow to not allowing the user to kill a process from Task Manager Pin
Aseem Sharma16-Jan-11 6:22
Aseem Sharma16-Jan-11 6:22 
AnswerRe: How to not allowing the user to kill a process from Task Manager [modified] Pin
Dan Mos16-Jan-11 6:30
Dan Mos16-Jan-11 6:30 
AnswerRe: How to not allowing the user to kill a process from Task Manager Pin
Manfred Rudolf Bihy16-Jan-11 6:36
professionalManfred Rudolf Bihy16-Jan-11 6:36 
AnswerRe: How to not allowing the user to kill a process from Task Manager PinPopular
Pete O'Hanlon16-Jan-11 9:15
mvePete O'Hanlon16-Jan-11 9:15 
GeneralRe: How to not allowing the user to kill a process from Task Manager Pin
fjdiewornncalwe16-Jan-11 16:46
professionalfjdiewornncalwe16-Jan-11 16:46 
Questionsome questions about Chart control Pin
Erdinc2716-Jan-11 2:17
Erdinc2716-Jan-11 2:17 
hey guys..i have a chart control and a datagridview on my form..i want to show the values in a graphic which i have in datagridview..Here is how it looks..i have some questions about it.
1) how i can arrange YAxis increase rate as 1..it increases by 5.
2) how i can move the black lines on backround of my chart area?
3) there are two series(Series 1 and Sayilar) there..i couldnt find any example that i can use Series1..i mean the chart control already has..that is why i created new one(Sayilar)..my question is how i can use Series2 or how i can remove it..here is the codes i created and added it to my chart control
4) how i can add some texts of Chart control Axis to inform the user which columns means what
Series series = new Series("Sayilar");
            series.Color = Color.DarkGoldenrod;
            series.BackSecondaryColor = Color.OrangeRed;
            series.BackGradientStyle = GradientStyle.LeftRight;
            

            series.XValueMember = "Sayilar";

            series.XValueType = ChartValueType.String;
 
            series.YValueMembers = "Kaç Kere";
            series.YValueType = ChartValueType.String;
           

            series.ChartType = SeriesChartType.Column;
            
            chart1.Series.Add(series);

than ks for your helps and answers
vemedya.com

QuestionStatic label in taskbar Pin
WritinCode15-Jan-11 19:35
WritinCode15-Jan-11 19:35 
AnswerRe: Static label in taskbar Pin
Eddy Vluggen16-Jan-11 10:39
professionalEddy Vluggen16-Jan-11 10:39 

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.