Click here to Skip to main content
15,918,808 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Can anyone tell me Advantage of vc++ over dotnet and vb Pin
yaminisridaran1-Nov-07 22:29
yaminisridaran1-Nov-07 22:29 
QuestionRe: Can anyone tell me Advantage of vc++ over dotnet and vb Pin
Nelek1-Nov-07 23:49
protectorNelek1-Nov-07 23:49 
AnswerRe: Can anyone tell me Advantage of vc++ over dotnet and vb Pin
toxcct1-Nov-07 22:59
toxcct1-Nov-07 22:59 
GeneralRe: Can anyone tell me Advantage of vc++ over dotnet and vb Pin
Hamid_RT2-Nov-07 0:51
Hamid_RT2-Nov-07 0:51 
JokeRe: Can anyone tell me Advantage of vc++ over dotnet and vb Pin
toxcct2-Nov-07 1:02
toxcct2-Nov-07 1:02 
AnswerRe: Can anyone tell me Advantage of vc++ over dotnet and vb Pin
Hamid_RT2-Nov-07 0:51
Hamid_RT2-Nov-07 0:51 
AnswerRe: Can anyone tell me Advantage of vc++ over dotnet and vb Pin
Mark Salsbery2-Nov-07 8:24
Mark Salsbery2-Nov-07 8:24 
QuestionExcel Automation Pin
LiYS1-Nov-07 21:10
LiYS1-Nov-07 21:10 
Hi all,

The following code snippet will insert a row above the first empty row, and then copy the other row contents to the newly inserted row. The problem is when the last line was invoked the value "ASDF" applies to the entire row instead of only the first cell. How can I set value to specific cell in the newly inserted row?

range = oSheet.get_Range("A1", Missing.Value);
range = range.get_End(Excel.XlDirection.xlDown).get_Offset(1, 0);

range.EntireRow.Insert(Excel.XlInsertShiftDirection.xlShiftDown, Excel.XlInsertFormatOrigin.xlFormatFromLeftOrAbove);

// Move range to the above row, then copy it to the newly inserted row
range = range.EntireRow.get_Offset(-1, 0);
range.get_Offset(-1, 0).Copy(range);
range.Cells.get_Offset(0, 0).set_Value(Missing.Value, "ASDF");



Thanks,






AnswerRe: Excel Automation Pin
quakeboy2-Nov-07 1:50
quakeboy2-Nov-07 1:50 
QuestionDebugging stored procedures Pin
vishu_av1-Nov-07 20:22
vishu_av1-Nov-07 20:22 
AnswerRe: Debugging stored procedures Pin
Bram van Kampen1-Nov-07 23:45
Bram van Kampen1-Nov-07 23:45 
GeneralRe: Debugging stored procedures Pin
toxcct2-Nov-07 0:29
toxcct2-Nov-07 0:29 
Questiondebug sql stored procedures Pin
vishu_av1-Nov-07 20:18
vishu_av1-Nov-07 20:18 
Questionchar buffer question Pin
Programm3r1-Nov-07 19:56
Programm3r1-Nov-07 19:56 
AnswerRe: char buffer question Pin
Nelek1-Nov-07 22:24
protectorNelek1-Nov-07 22:24 
AnswerRe: char buffer question Pin
toxcct1-Nov-07 23:01
toxcct1-Nov-07 23:01 
Questiontry to access c drive Pin
p_1-Nov-07 19:45
p_1-Nov-07 19:45 
AnswerRe: try to access c drive Pin
Paresh Chitte1-Nov-07 20:15
Paresh Chitte1-Nov-07 20:15 
Questionhow to insert buttons in toolbar? Pin
panthal1-Nov-07 19:39
panthal1-Nov-07 19:39 
AnswerRe: how to insert buttons in toolbar? Pin
Paresh Chitte1-Nov-07 20:22
Paresh Chitte1-Nov-07 20:22 
AnswerRe: how to insert buttons in toolbar? Pin
chandu0041-Nov-07 22:01
chandu0041-Nov-07 22:01 
GeneralRe: how to insert buttons in toolbar? Pin
panthal2-Nov-07 0:38
panthal2-Nov-07 0:38 
QuestionCFont problem!choose a font for a Edit Control Pin
fantasy12151-Nov-07 17:56
fantasy12151-Nov-07 17:56 
AnswerRe: CFont problem!choose a font for a Edit Control [modified] Pin
Nishad S1-Nov-07 18:02
Nishad S1-Nov-07 18:02 
QuestionRe: CFont problem!choose a font for a Edit Control Pin
fantasy12151-Nov-07 20:57
fantasy12151-Nov-07 20:57 

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.