Click here to Skip to main content
15,907,687 members
Home / Discussions / C#
   

C#

 
GeneralRe: Add Project References at runtime Pin
AngusOAP4-Oct-08 2:13
AngusOAP4-Oct-08 2:13 
GeneralRe: Add Project References at runtime Pin
led mike6-Oct-08 4:48
led mike6-Oct-08 4:48 
AnswerRe: Add Project References at runtime Pin
Paul Conrad3-Oct-08 6:35
professionalPaul Conrad3-Oct-08 6:35 
QuestionCommunicating with user controls Pin
KabirPatel3-Oct-08 4:38
KabirPatel3-Oct-08 4:38 
AnswerRe: Communicating with user controls Pin
Pedram Behroozi3-Oct-08 5:00
Pedram Behroozi3-Oct-08 5:00 
QuestionRe: Communicating with user controls Pin
nelsonpaixao3-Oct-08 13:13
nelsonpaixao3-Oct-08 13:13 
Questionexcel cell alignment Pin
michael_jhons3-Oct-08 4:04
michael_jhons3-Oct-08 4:04 
AnswerRe: excel cell alignment Pin
Pedram Behroozi3-Oct-08 4:50
Pedram Behroozi3-Oct-08 4:50 
michael_jhons wrote:
but gave me an error i made a research i found that i have to use

... HorizontalAlignment = Excel.XlHAlign.xlHAlignCenter


But it worked for me! Confused | :confused:
It's my code:

using System;
using System.Text;
using Microsoft.Office.Interop.Excel;

namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
            WorksheetClass ws = new WorksheetClass();
            ws.get_Range(ws.Cells[2, 1], ws.Cells[2, 3]).HorizontalAlignment = XlHAlign.xlHAlignCenter;
        }
    }
}


While (true) { Human.isLearnable = true; }

GeneralRe: excel cell alignment Pin
michael_jhons5-Oct-08 21:31
michael_jhons5-Oct-08 21:31 
AnswerRe: excel cell alignment Pin
minhlao21-Mar-09 17:14
minhlao21-Mar-09 17:14 
Questionref and out [modified] Pin
DaveyM693-Oct-08 1:29
professionalDaveyM693-Oct-08 1:29 
AnswerRe: ref and out Pin
Brij3-Oct-08 1:54
mentorBrij3-Oct-08 1:54 
GeneralRe: ref and out Pin
Guffa3-Oct-08 5:46
Guffa3-Oct-08 5:46 
AnswerRe: ref and out Pin
Ennis Ray Lynch, Jr.3-Oct-08 4:17
Ennis Ray Lynch, Jr.3-Oct-08 4:17 
GeneralRe: ref and out Pin
led mike3-Oct-08 4:32
led mike3-Oct-08 4:32 
GeneralRe: ref and out Pin
Ennis Ray Lynch, Jr.3-Oct-08 4:33
Ennis Ray Lynch, Jr.3-Oct-08 4:33 
GeneralRe: ref and out Pin
DaveyM693-Oct-08 5:14
professionalDaveyM693-Oct-08 5:14 
QuestionRe: ref and out Pin
led mike3-Oct-08 5:39
led mike3-Oct-08 5:39 
AnswerRe: ref and out Pin
DaveyM693-Oct-08 6:50
professionalDaveyM693-Oct-08 6:50 
GeneralRe: ref and out Pin
Mark Salsbery3-Oct-08 5:57
Mark Salsbery3-Oct-08 5:57 
GeneralRe: ref and out Pin
DaveyM693-Oct-08 5:01
professionalDaveyM693-Oct-08 5:01 
GeneralRe: ref and out Pin
Dan Neely3-Oct-08 5:48
Dan Neely3-Oct-08 5:48 
GeneralRe: ref and out Pin
Guffa3-Oct-08 5:51
Guffa3-Oct-08 5:51 
GeneralRe: ref and out Pin
Ennis Ray Lynch, Jr.3-Oct-08 6:12
Ennis Ray Lynch, Jr.3-Oct-08 6:12 
GeneralRe: ref and out Pin
DaveyM693-Oct-08 7:00
professionalDaveyM693-Oct-08 7:00 

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.