Click here to Skip to main content
15,904,500 members
Home / Discussions / C#
   

C#

 
GeneralRe: "A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond"-Exception Pin
DaveyM6914-Feb-08 1:05
professionalDaveyM6914-Feb-08 1:05 
GeneralRe: "A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond"-Exception Pin
gudlanur16-Aug-11 20:59
gudlanur16-Aug-11 20:59 
QuestionSimplest Question Regarding Deployment Pin
sindhutiwari13-Feb-08 23:02
sindhutiwari13-Feb-08 23:02 
GeneralRe: Simplest Question Regarding Deployment Pin
Christian Graus13-Feb-08 23:09
protectorChristian Graus13-Feb-08 23:09 
GeneralRe: Simplest Question Regarding Deployment Pin
sindhutiwari13-Feb-08 23:15
sindhutiwari13-Feb-08 23:15 
GeneralRe: Simplest Question Regarding Deployment Pin
Christian Graus13-Feb-08 23:50
protectorChristian Graus13-Feb-08 23:50 
QuestionSimplest Question Regarding Deployment Pin
sindhutiwari13-Feb-08 23:01
sindhutiwari13-Feb-08 23:01 
GeneralExcel chart in c# Pin
JeremH13-Feb-08 22:57
JeremH13-Feb-08 22:57 
hi,
I do not succeed in allocating a value for the axle x in my graph. I do not succeed in finding correspondence with there vb seriecollection (1) .XValue =
help me i begin in C#!!!!

public void Excel_Graphic(int Lig, int col)
{
string upperLeftCell = "A3";
int endRowNumber = System.Int32.Parse(upperLeftCell.Substring(1))
+ Lig - 1;
char endColumnLetter = System.Convert.ToChar(
Convert.ToInt32(upperLeftCell[0]) + col - 1);
string upperRightCell = System.String.Format("{0}{1}",
endColumnLetter, System.Int32.Parse(upperLeftCell.Substring(1)));
string lowerRightCell = System.String.Format("{0}{1}",
endColumnLetter, endRowNumber);

Worksheet ws = (Worksheet)app.ActiveSheet;

Object Graph1 = new Object();

ChartObjects GraphObjs = (ChartObjects)ws.ChartObjects(Type.Missing);
ChartObject GraphtObj = GraphObjs.Add(100, 20, 300, 300);

Chart xlChart = GraphtObj.Chart;

Range chartRange = ws.get_Range("A2", lowerRightCell);
Range AxeY = ws.get_Range("A2", "A16");
Range AxeX = ws.get_Range("B2", "B16");

xlChart.SetSourceData(AxeY, Type.Missing);
xlChart.ChartType = XlChartType.xlXYScatterLines;
xlChart.Location(XlChartLocation.xlLocationAsNewSheet, Graph1);
}

jere

QuestionIs there a way to develop FOREACH loop results with Threading? Pin
pubududilena13-Feb-08 22:48
pubududilena13-Feb-08 22:48 
AnswerRe: Is there a way to develop FOREACH loop results with Threading? Pin
Christian Graus13-Feb-08 23:16
protectorChristian Graus13-Feb-08 23:16 
AnswerRe: Is there a way to develop FOREACH loop results with Threading? Pin
Vikram A Punathambekar13-Feb-08 23:21
Vikram A Punathambekar13-Feb-08 23:21 
GeneralNoSuitableGraphicsDeviceException was unhandled Pin
NarVish13-Feb-08 22:47
NarVish13-Feb-08 22:47 
GeneralRe: NoSuitableGraphicsDeviceException was unhandled Pin
Christian Graus13-Feb-08 23:18
protectorChristian Graus13-Feb-08 23:18 
GeneralRe: NoSuitableGraphicsDeviceException was unhandled Pin
NarVish14-Feb-08 0:13
NarVish14-Feb-08 0:13 
GeneralRe: NoSuitableGraphicsDeviceException was unhandled Pin
Christian Graus14-Feb-08 0:20
protectorChristian Graus14-Feb-08 0:20 
GeneralASCII code problem [modified] Pin
Jamman13-Feb-08 22:44
Jamman13-Feb-08 22:44 
GeneralRe: ASCII code problem Pin
Christian Graus13-Feb-08 23:23
protectorChristian Graus13-Feb-08 23:23 
GeneralRe: ASCII code problem Pin
Jamman14-Feb-08 0:09
Jamman14-Feb-08 0:09 
GeneralRe: ASCII code problem Pin
J a a n s14-Feb-08 4:56
professionalJ a a n s14-Feb-08 4:56 
GeneralWindows Media Player and Multi Threaded Applications Pin
jimmy2shoes13-Feb-08 22:43
jimmy2shoes13-Feb-08 22:43 
GeneralCheck Header in Excel Pin
drawmylyfe13-Feb-08 22:32
drawmylyfe13-Feb-08 22:32 
GeneralRe: Check Header in Excel Pin
JeremH13-Feb-08 23:10
JeremH13-Feb-08 23:10 
GeneralRe: Check Header in Excel Pin
drawmylyfe13-Feb-08 23:18
drawmylyfe13-Feb-08 23:18 
GeneralRe: Check Header in Excel Pin
ag4667714-Feb-08 0:02
ag4667714-Feb-08 0:02 
QuestionHow Do I correct Thread Program? Pin
pubududilena13-Feb-08 22:29
pubududilena13-Feb-08 22:29 

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.