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

C#

 
AnswerRe: How to find the directory path for msi during installation Pin
Christian Graus16-Mar-09 19:11
protectorChristian Graus16-Mar-09 19:11 
GeneralRe: How to find the directory path for msi during installation Pin
honeyashu16-Mar-09 19:21
honeyashu16-Mar-09 19:21 
GeneralRe: How to find the directory path for msi during installation Pin
Christian Graus16-Mar-09 19:39
protectorChristian Graus16-Mar-09 19:39 
GeneralRe: How to find the directory path for msi during installation Pin
honeyashu16-Mar-09 19:54
honeyashu16-Mar-09 19:54 
GeneralRe: How to find the directory path for msi during installation Pin
Christian Graus16-Mar-09 20:18
protectorChristian Graus16-Mar-09 20:18 
QuestionC#.net, Globalization Pin
Yathish hatter16-Mar-09 18:32
Yathish hatter16-Mar-09 18:32 
AnswerRe: C#.net, Globalization Pin
Christian Graus16-Mar-09 18:40
protectorChristian Graus16-Mar-09 18:40 
QuestionChang color of particular string in Rich text Pin
Sajjad Leo16-Mar-09 18:29
Sajjad Leo16-Mar-09 18:29 
AnswerRe: Chang color of particular string in Rich text Pin
Xmen Real 16-Mar-09 20:55
professional Xmen Real 16-Mar-09 20:55 
Questionhow to upload excelworkbook dynamically using c# Pin
Mangesh Tomar16-Mar-09 18:25
Mangesh Tomar16-Mar-09 18:25 
QuestionHow to connect HTTPS server and download a file using C# , C# webclient Pin
Member 339828416-Mar-09 18:09
Member 339828416-Mar-09 18:09 
Questiondatagrid combobox windows Pin
sydney12316-Mar-09 17:43
sydney12316-Mar-09 17:43 
AnswerRe: datagrid combobox windows Pin
Xmen Real 16-Mar-09 20:30
professional Xmen Real 16-Mar-09 20:30 
QuestionHow to get MSIHANDLE Pin
Dracula Wang16-Mar-09 17:34
Dracula Wang16-Mar-09 17:34 
AnswerRe: How to get MSIHANDLE Pin
Christian Graus16-Mar-09 18:22
protectorChristian Graus16-Mar-09 18:22 
AnswerRe: How to get MSIHANDLE Pin
0x3c016-Mar-09 22:03
0x3c016-Mar-09 22:03 
QuestionAbsolute coordinates of a control or relative coordinates of the mouse Pin
User 58385216-Mar-09 17:01
User 58385216-Mar-09 17:01 
AnswerRe: Absolute coordinates of a control or relative coordinates of the mouse Pin
Christian Graus16-Mar-09 18:54
protectorChristian Graus16-Mar-09 18:54 
Questionupdate server DB from local Dataset via XML Pin
dingo1416-Mar-09 15:58
dingo1416-Mar-09 15:58 
AnswerRe: update server DB from local Dataset via XML Pin
Xmen Real 16-Mar-09 16:16
professional Xmen Real 16-Mar-09 16:16 
GeneralRe: update server DB from local Dataset via XML Pin
dingo1416-Mar-09 16:43
dingo1416-Mar-09 16:43 
GeneralRe: update server DB from local Dataset via XML Pin
Xmen Real 16-Mar-09 22:47
professional Xmen Real 16-Mar-09 22:47 
AnswerRe: update server DB from local Dataset via XML Pin
dingo1417-Mar-09 9:01
dingo1417-Mar-09 9:01 
QuestionChange my O2 Zinc to COM Port Pin
Aghosh Babu16-Mar-09 15:25
Aghosh Babu16-Mar-09 15:25 
QuestionDSOFile Problem.....??? (Summery Info) [modified] Pin
S K Y16-Mar-09 15:04
S K Y16-Mar-09 15:04 
i used DSOFile to read and Write File Summary infor....it successfully can work... but i having a problem....i can run application only on my pc when i try to install in another PC. System asking to install OLEdocument.....etc.....is there got any way to slove this problem....either by change codes.....

here is my code...

foreach (ListViewItem item in listView2.SelectedItems)
                {
                    FileInfo fileInfo = new FileInfo(item.Text);
                    string image = "C:\\PhotoManager\\" + fileInfo.Name;
                    DSOFile.OleDocumentPropertiesClass file = new DSOFile.OleDocumentPropertiesClass();
                    file.Open(image, false, DSOFile.dsoFileOpenOptions.dsoOptionOpenReadOnlyIfNoWriteAccess);
                    {
                        tbxFileName.Text = file.Name;
                        tbxTitle.Text = file.SummaryProperties.Title;
                        tbxSubject.Text = file.SummaryProperties.Subject;
                        tbxAuthor.Text = file.SummaryProperties.Author;
                        tbxKeywords.Text = file.SummaryProperties.Keywords;
                        tbxComments.Text = file.SummaryProperties.Comments;
                        file.Close(false);
                    }
                }


A S E L A

modified on Monday, March 16, 2009 9:11 PM

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.