Click here to Skip to main content
15,887,027 members
Home / Discussions / C#
   

C#

 
AnswerRe: c# Pin
Patrice T18-Feb-17 15:07
mvePatrice T18-Feb-17 15:07 
AnswerRe: c# Pin
John C Rayan19-Feb-17 23:46
professionalJohn C Rayan19-Feb-17 23:46 
QuestionOpensource vocabulary services? Pin
Srinubabu Ravilla16-Feb-17 22:18
professionalSrinubabu Ravilla16-Feb-17 22:18 
AnswerRe: Opensource vocabulary services? Pin
OriginalGriff16-Feb-17 22:22
mveOriginalGriff16-Feb-17 22:22 
GeneralRe: Opensource vocabulary services? Pin
Srinubabu Ravilla16-Feb-17 22:33
professionalSrinubabu Ravilla16-Feb-17 22:33 
GeneralRe: Opensource vocabulary services? Pin
Dave Kreskowiak17-Feb-17 4:05
mveDave Kreskowiak17-Feb-17 4:05 
AnswerRe: Opensource vocabulary services? Pin
Eddy Vluggen17-Feb-17 2:23
professionalEddy Vluggen17-Feb-17 2:23 
QuestionMaking Excel Cells Read Only Pin
dpasswat15-Feb-17 9:52
dpasswat15-Feb-17 9:52 
I have an application that creates an Excel workbook from a template. After the workbook is created I populate each Worksheet. I'm attempting to make the cells that contain headers and other data describing text read only.

Here are my latest two attempts:
Worksheet ws = m_wkbk.Sheets[1];
ws.Activate();

// Attempt 1
ws.Range["A1", "E1"].Style.Locked = true; // This runs but has no impact on the launched sheet.

// Attempt 2
Range range = (Range)ws.get_Range(ws.Cells[1, 1], ws.Cells[1, 5]); // Runtime error
range.Locked = true;

AnswerRe: Making Excel Cells Read Only PinPopular
Michael_Davies15-Feb-17 10:27
Michael_Davies15-Feb-17 10:27 
GeneralRe: Making Excel Cells Read Only Pin
ZurdoDev16-Feb-17 1:58
professionalZurdoDev16-Feb-17 1:58 
GeneralRe: Making Excel Cells Read Only Pin
Patrice T16-Feb-17 11:23
mvePatrice T16-Feb-17 11:23 
GeneralRe: Making Excel Cells Read Only Pin
Michael_Davies16-Feb-17 20:45
Michael_Davies16-Feb-17 20:45 
AnswerRe: Making Excel Cells Read Only Pin
Patrice T16-Feb-17 11:47
mvePatrice T16-Feb-17 11:47 
GeneralRe: Making Excel Cells Read Only Pin
dpasswat17-Feb-17 10:21
dpasswat17-Feb-17 10:21 
GeneralRe: Making Excel Cells Read Only Pin
Patrice T17-Feb-17 11:24
mvePatrice T17-Feb-17 11:24 
AnswerRe: Making Excel Cells Read Only Pin
Ralf Meier16-Feb-17 19:18
mveRalf Meier16-Feb-17 19:18 
GeneralRe: Making Excel Cells Read Only Pin
dpasswat17-Feb-17 10:25
dpasswat17-Feb-17 10:25 
Questionhow to convert pdf to xml? Pin
Member 1275769515-Feb-17 4:04
Member 1275769515-Feb-17 4:04 
AnswerRe: how to convert pdf to xml? Pin
Nathan Minier15-Feb-17 4:27
professionalNathan Minier15-Feb-17 4:27 
SuggestionRe: how to convert pdf to xml? Pin
Richard Deeming15-Feb-17 5:31
mveRichard Deeming15-Feb-17 5:31 
GeneralRe: how to convert pdf to xml? Pin
Nathan Minier15-Feb-17 5:49
professionalNathan Minier15-Feb-17 5:49 
Questionhow to making async call to proxy webreference created from asmx webservice Pin
ArunHanu15-Feb-17 2:25
ArunHanu15-Feb-17 2:25 
AnswerRe: how to making async call to proxy webreference created from asmx webservice Pin
Nathan Minier15-Feb-17 2:55
professionalNathan Minier15-Feb-17 2:55 
GeneralRe: how to making async call to proxy webreference created from asmx webservice Pin
ArunHanu15-Feb-17 3:06
ArunHanu15-Feb-17 3:06 
GeneralRe: how to making async call to proxy webreference created from asmx webservice Pin
Gerry Schmitz15-Feb-17 3:34
mveGerry Schmitz15-Feb-17 3:34 

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.