Click here to Skip to main content
15,892,643 members
Home / Discussions / C#
   

C#

 
AnswerRe: Add Image in Picture box Pin
dan!sh 3-Nov-09 20:45
professional dan!sh 3-Nov-09 20:45 
GeneralRe: Add Image in Picture box Pin
Matsyendra3-Nov-09 21:03
Matsyendra3-Nov-09 21:03 
GeneralRe: Add Image in Picture box Pin
Christian Graus3-Nov-09 21:10
protectorChristian Graus3-Nov-09 21:10 
GeneralRe: Add Image in Picture box Pin
dan!sh 3-Nov-09 21:23
professional dan!sh 3-Nov-09 21:23 
GeneralRe: Add Image in Picture box Pin
LHP02103-Nov-09 21:04
LHP02103-Nov-09 21:04 
GeneralRe: Add Image in Picture box Pin
dan!sh 3-Nov-09 21:07
professional dan!sh 3-Nov-09 21:07 
AnswerRe: Add Image in Picture box Pin
Luc Pattyn3-Nov-09 23:27
sitebuilderLuc Pattyn3-Nov-09 23:27 
QuestionMerge Word documents into one file Pin
@nisha 2n3-Nov-09 20:27
@nisha 2n3-Nov-09 20:27 
Hai.....im anu..

can u ppl help me plzz.......im doing..Merge Word documents into one file...i wrote code lik below...i create a place (D:/destination/new.doc)..wher my documents ill open....in debugging whn i clik on merge button no files showing in "D:/destination/new.doc"....
im a fresher 4r dotnet .... hope u ll understnd my lang....

Thanqu .... Smile | :)



namespace DocMerger
{

public partial class Form1 : Form
{


public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{


List<string> files=new List<string>();
DialogResult dr = new DialogResult();
dr = openFile.ShowDialog();

if (dr == DialogResult.OK)
{
listView1.Items.Clear();
files.AddRange(openFile.FileNames.ToList());
foreach (string file in files)
{

listView1.Items.Add(Path.GetFileName(file));

}
}





}

private void button2_Click(object sender, EventArgs e)
{

DocMerger db=new DocMerger();
string path="D:/source/";
string output="D:/destination/new.doc";
string temp="D:/destination/temp.doc";
db.CopyMerge(temp,path,output);


}



}
}
AnswerRe: Merge Word documents into one file Pin
Christian Graus3-Nov-09 21:08
protectorChristian Graus3-Nov-09 21:08 
Questionhi.. Pin
mjawadkhatri3-Nov-09 19:23
mjawadkhatri3-Nov-09 19:23 
AnswerRe: hi.. Pin
Christian Graus3-Nov-09 19:40
protectorChristian Graus3-Nov-09 19:40 
AnswerRe: hi.. Pin
King Julien3-Nov-09 20:16
King Julien3-Nov-09 20:16 
QuestionC# function(out byte buffer, ..) and its ActiveX module in C++ function(unsigned char* buffer, ... Pin
Chesnokov Yuriy3-Nov-09 19:17
professionalChesnokov Yuriy3-Nov-09 19:17 
AnswerRe: C# function(out byte buffer, ..) and its ActiveX module in C++ function(unsigned char* buffer, ... Pin
Luc Pattyn3-Nov-09 23:36
sitebuilderLuc Pattyn3-Nov-09 23:36 
GeneralRe: C# function(out byte buffer, ..) and its ActiveX module in C++ function(unsigned char* buffer, ... Pin
Chesnokov Yuriy4-Nov-09 1:03
professionalChesnokov Yuriy4-Nov-09 1:03 
GeneralRe: C# function(out byte buffer, ..) and its ActiveX module in C++ function(unsigned char* buffer, ... Pin
Luc Pattyn4-Nov-09 2:13
sitebuilderLuc Pattyn4-Nov-09 2:13 
QuestionXML Query in C# Pin
Priyagdpl3-Nov-09 19:15
Priyagdpl3-Nov-09 19:15 
AnswerRe: XML Query in C# Pin
N a v a n e e t h3-Nov-09 19:17
N a v a n e e t h3-Nov-09 19:17 
AnswerRe: XML Query in C# Pin
Christian Graus3-Nov-09 19:19
protectorChristian Graus3-Nov-09 19:19 
QuestionHow to Get Property attribute from instance variable Pin
mmdullah3-Nov-09 17:17
mmdullah3-Nov-09 17:17 
AnswerRe: How to Get Property attribute from instance variable Pin
Christian Graus3-Nov-09 18:10
protectorChristian Graus3-Nov-09 18:10 
GeneralRe: How to Get Property attribute from instance variable Pin
mmdullah3-Nov-09 19:24
mmdullah3-Nov-09 19:24 
GeneralRe: How to Get Property attribute from instance variable Pin
King Julien3-Nov-09 20:05
King Julien3-Nov-09 20:05 
GeneralRe: How to Get Property attribute from instance variable Pin
mmdullah4-Nov-09 18:26
mmdullah4-Nov-09 18:26 
GeneralRe: How to Get Property attribute from instance variable Pin
King Julien4-Nov-09 20:05
King Julien4-Nov-09 20:05 

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.