Click here to Skip to main content
16,006,535 members
Home / Discussions / C#
   

C#

 
GeneralRe: Thread-safetiness of XmlSerializer Pin
Le centriste14-Feb-08 6:02
Le centriste14-Feb-08 6:02 
GeneralRe: Thread-safetiness of XmlSerializer Pin
led mike14-Feb-08 8:34
led mike14-Feb-08 8:34 
GeneralRe: Thread-safetiness of XmlSerializer Pin
Le centriste14-Feb-08 8:40
Le centriste14-Feb-08 8:40 
GeneralRe: Thread-safetiness of XmlSerializer Pin
led mike14-Feb-08 9:03
led mike14-Feb-08 9:03 
GeneralRe: Thread-safetiness of XmlSerializer Pin
Le centriste14-Feb-08 9:11
Le centriste14-Feb-08 9:11 
GeneralRe: Thread-safetiness of XmlSerializer Pin
led mike14-Feb-08 9:21
led mike14-Feb-08 9:21 
GeneralRe: Thread-safetiness of XmlSerializer Pin
Le centriste14-Feb-08 9:25
Le centriste14-Feb-08 9:25 
GeneralGraph excel with C# Pin
JeremH14-Feb-08 4:34
JeremH14-Feb-08 4:34 
hi everybody,
i can't change the axe X in excel with C# i know with vb serialcollection.XValue= but i need the information for c#
thanks
 <br />
 public void Excel_Graphic(int Lig, int col)<br />
 {<br />
            string upperLeftCell = "A3";<br />
            int endRowNumber = System.Int32.Parse(upperLeftCell.Substring(1))<br />
                + Lig - 1;<br />
            char endColumnLetter = System.Convert.ToChar(<br />
                Convert.ToInt32(upperLeftCell[0]) + col - 1);<br />
            string upperRightCell = System.String.Format("{0}{1}",<br />
                endColumnLetter, System.Int32.Parse(upperLeftCell.Substring(1)));<br />
            string lowerRightCell = System.String.Format("{0}{1}",<br />
                endColumnLetter, endRowNumber);<br />
<br />
            Worksheet ws = (Worksheet)app.ActiveSheet;<br />
            <br />
            Object Graph1 = new Object(); <br />
            <br />
            ChartObjects GraphObjs = (ChartObjects)ws.ChartObjects(Type.Missing);<br />
            ChartObject GraphtObj = GraphObjs.Add(100, 20, 300, 300);<br />
<br />
            Chart xlChart = GraphtObj.Chart;<br />
<br />
            Range chartRange = ws.get_Range("A2", lowerRightCell);<br />
            Range AxeY = ws.get_Range("A2", "A16");<br />
            Range AxeX = ws.get_Range("B2", "B16");<br />
<br />
            xlChart.SetSourceData(AxeY, Type.Missing);<br />
            xlChart.ChartType = XlChartType.xlXYScatterLines;<br />
            xlChart.Location(XlChartLocation.xlLocationAsNewSheet, Graph1);<br />
             <br />
        }</code> <br />
<br />
<div class="ForumSig">jere</div>

GeneralRe: Graph excel with C# Pin
Cwenee23-Sep-09 5:17
Cwenee23-Sep-09 5:17 
GeneralLoadProperties Pin
s3rro14-Feb-08 4:04
s3rro14-Feb-08 4:04 
GeneralRe: LoadProperties Pin
s3rro14-Feb-08 4:09
s3rro14-Feb-08 4:09 
GeneralRe: LoadProperties Pin
led mike14-Feb-08 4:34
led mike14-Feb-08 4:34 
GeneralC# Serial port communication Pin
Scalpa14-Feb-08 3:53
Scalpa14-Feb-08 3:53 
GeneralRe: C# Serial port communication Pin
DaveyM6914-Feb-08 4:14
professionalDaveyM6914-Feb-08 4:14 
GeneralRe: C# Serial port communication Pin
Scalpa14-Feb-08 4:24
Scalpa14-Feb-08 4:24 
GeneralRe: C# Serial port communication Pin
Luc Pattyn14-Feb-08 4:42
sitebuilderLuc Pattyn14-Feb-08 4:42 
GeneralRe: C# Serial port communication Pin
Scalpa14-Feb-08 5:22
Scalpa14-Feb-08 5:22 
GeneralRe: C# Serial port communication Pin
Luc Pattyn14-Feb-08 5:34
sitebuilderLuc Pattyn14-Feb-08 5:34 
GeneralRe: C# Serial port communication Pin
Scalpa14-Feb-08 5:45
Scalpa14-Feb-08 5:45 
GeneralRe: C# Serial port communication Pin
Luc Pattyn14-Feb-08 5:52
sitebuilderLuc Pattyn14-Feb-08 5:52 
GeneralRe: C# Serial port communication Pin
DaveyM6914-Feb-08 5:48
professionalDaveyM6914-Feb-08 5:48 
GeneralRe: C# Serial port communication Pin
Luc Pattyn14-Feb-08 6:03
sitebuilderLuc Pattyn14-Feb-08 6:03 
GeneralRe: C# Serial port communication Pin
Scalpa14-Feb-08 6:22
Scalpa14-Feb-08 6:22 
GeneralRe: C# Serial port communication Pin
Scalpa26-Feb-08 6:04
Scalpa26-Feb-08 6:04 
GeneralUsing Google Maps in a C# application Pin
biscoito14-Feb-08 3:13
biscoito14-Feb-08 3:13 

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.