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

C#

 
AnswerRe: how do i insert data into a table Pin
Pete O'Hanlon27-Jul-15 0:24
mvePete O'Hanlon27-Jul-15 0:24 
QuestionDisplay data from SQL database to HTML page in table format using Angular JS Pin
iamcpmember27-Jul-15 0:01
professionaliamcpmember27-Jul-15 0:01 
AnswerRe: Display data from SQL database to HTML page in table format using Angular JS Pin
Richard MacCutchan27-Jul-15 0:18
mveRichard MacCutchan27-Jul-15 0:18 
QuestionPicture Viewer. Pin
Member 1186549926-Jul-15 23:07
Member 1186549926-Jul-15 23:07 
AnswerRe: Picture Viewer. Pin
Pete O'Hanlon26-Jul-15 23:18
mvePete O'Hanlon26-Jul-15 23:18 
AnswerRe: Picture Viewer. Pin
Sebastiaan Lubbers29-Jul-15 0:32
professionalSebastiaan Lubbers29-Jul-15 0:32 
QuestionC# Read/Write PowerPoint.PageSetup.FirstSlideNumber Pin
Member 1185927326-Jul-15 14:31
Member 1185927326-Jul-15 14:31 
AnswerRe: C# Read/Write PowerPoint.PageSetup.FirstSlideNumber Pin
Richard Deeming27-Jul-15 2:02
mveRichard Deeming27-Jul-15 2:02 
Something like this should work:
C#
using (PresentationDocument mypptx = PresentationDocument.Open(myFileName, true))
{
    int firstSlideNumber = mypptx.PresentationPart.Presentation.FirstSlideNum;
    mypptx.PresentationPart.Presentation.FirstSlideNum = 42;
}

PresentationDocument Class[^]
PresentationDocument.PresentationPart Property[^]
PresentationPart.Presentation Property[^]
Presentation.FirstSlideNum Property[^]



"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer


QuestionRe: C# Read/Write PowerPoint.PageSetup.FirstSlideNumber Pin
Eddy Vluggen27-Jul-15 2:02
professionalEddy Vluggen27-Jul-15 2:02 
GeneralGridView - Update query Pin
Member 1186428526-Jul-15 8:45
Member 1186428526-Jul-15 8:45 
GeneralRe: GridView - Update query Pin
Wes Aday26-Jul-15 9:12
professionalWes Aday26-Jul-15 9:12 
GeneralRe: GridView - Update query Pin
Sascha Lefèvre26-Jul-15 9:49
professionalSascha Lefèvre26-Jul-15 9:49 
QuestionHow to copy and replace folder in desktop with C#/Winforms? Pin
George Tourtsinakis26-Jul-15 7:40
George Tourtsinakis26-Jul-15 7:40 
QuestionRe: How to copy and replace folder in desktop with C#/Winforms? Pin
Richard MacCutchan26-Jul-15 22:24
mveRichard MacCutchan26-Jul-15 22:24 
AnswerRe: How to copy and replace folder in desktop with C#/Winforms? Pin
George Tourtsinakis26-Jul-15 22:41
George Tourtsinakis26-Jul-15 22:41 
GeneralRe: How to copy and replace folder in desktop with C#/Winforms? Pin
Richard MacCutchan26-Jul-15 23:01
mveRichard MacCutchan26-Jul-15 23:01 
GeneralRe: How to copy and replace folder in desktop with C#/Winforms? Pin
George Tourtsinakis27-Jul-15 1:18
George Tourtsinakis27-Jul-15 1:18 
GeneralRe: How to copy and replace folder in desktop with C#/Winforms? Pin
Richard MacCutchan27-Jul-15 1:34
mveRichard MacCutchan27-Jul-15 1:34 
GeneralRe: How to copy and replace folder in desktop with C#/Winforms? Pin
George Tourtsinakis27-Jul-15 2:10
George Tourtsinakis27-Jul-15 2:10 
GeneralRe: How to copy and replace folder in desktop with C#/Winforms? Pin
Richard MacCutchan27-Jul-15 2:12
mveRichard MacCutchan27-Jul-15 2:12 
GeneralRe: How to copy and replace folder in desktop with C#/Winforms? Pin
George Tourtsinakis27-Jul-15 8:42
George Tourtsinakis27-Jul-15 8:42 
GeneralRe: How to copy and replace folder in desktop with C#/Winforms? Pin
Pete O'Hanlon27-Jul-15 9:53
mvePete O'Hanlon27-Jul-15 9:53 
GeneralRe: How to copy and replace folder in desktop with C#/Winforms? Pin
George Tourtsinakis28-Jul-15 0:14
George Tourtsinakis28-Jul-15 0:14 
GeneralRe: How to copy and replace folder in desktop with C#/Winforms? Pin
Pete O'Hanlon28-Jul-15 0:37
mvePete O'Hanlon28-Jul-15 0:37 
GeneralRe: How to copy and replace folder in desktop with C#/Winforms? Pin
George Tourtsinakis29-Jul-15 6:08
George Tourtsinakis29-Jul-15 6:08 

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.