Click here to Skip to main content
15,900,906 members
Home / Discussions / C#
   

C#

 
GeneralRe: Is there a way to search through all buttons of a window handle? Pin
turbosupramk34-Mar-11 2:17
turbosupramk34-Mar-11 2:17 
QuestionChrome - search from command line? Pin
Alan Burkhart3-Mar-11 1:33
Alan Burkhart3-Mar-11 1:33 
AnswerRe: Chrome - search from command line? Pin
Luc Pattyn3-Mar-11 2:34
sitebuilderLuc Pattyn3-Mar-11 2:34 
GeneralRe: Chrome - search from command line? Pin
Alan Burkhart3-Mar-11 2:54
Alan Burkhart3-Mar-11 2:54 
GeneralRe: Chrome - search from command line? [modified] Pin
Luc Pattyn3-Mar-11 3:18
sitebuilderLuc Pattyn3-Mar-11 3:18 
GeneralRe: Chrome - search from command line? Pin
musefan3-Mar-11 3:58
musefan3-Mar-11 3:58 
GeneralRe: Chrome - search from command line? Pin
Alan Burkhart3-Mar-11 6:39
Alan Burkhart3-Mar-11 6:39 
GeneralRe: Chrome - search from command line? Pin
Alan Burkhart3-Mar-11 4:13
Alan Burkhart3-Mar-11 4:13 
AnswerRe: Chrome - search from command line? Pin
Luc Pattyn3-Mar-11 4:52
sitebuilderLuc Pattyn3-Mar-11 4:52 
GeneralRe: Chrome - search from command line? Pin
Alan Burkhart3-Mar-11 6:33
Alan Burkhart3-Mar-11 6:33 
GeneralRe: Chrome - search from command line? Pin
Luc Pattyn3-Mar-11 6:42
sitebuilderLuc Pattyn3-Mar-11 6:42 
GeneralRe: Chrome - search from command line? Pin
Alan Burkhart3-Mar-11 6:56
Alan Burkhart3-Mar-11 6:56 
GeneralRe: Chrome - search from command line? Pin
Luc Pattyn3-Mar-11 7:00
sitebuilderLuc Pattyn3-Mar-11 7:00 
GeneralRe: Chrome - search from command line? Pin
Alan Burkhart3-Mar-11 7:13
Alan Burkhart3-Mar-11 7:13 
GeneralRe: Chrome - search from command line? Pin
Luc Pattyn3-Mar-11 7:22
sitebuilderLuc Pattyn3-Mar-11 7:22 
GeneralRe: Chrome - search from command line? Pin
musefan3-Mar-11 6:50
musefan3-Mar-11 6:50 
GeneralRe: Chrome - search from command line? Pin
Alan Burkhart3-Mar-11 7:00
Alan Burkhart3-Mar-11 7:00 
AnswerRe: Chrome - search from command line? Pin
Luc Pattyn3-Mar-11 7:05
sitebuilderLuc Pattyn3-Mar-11 7:05 
GeneralRe: Chrome - search from command line? Pin
Alan Burkhart3-Mar-11 7:22
Alan Burkhart3-Mar-11 7:22 
QuestionModifying the Path Pin
AmbiguousName3-Mar-11 1:17
AmbiguousName3-Mar-11 1:17 
AnswerRe: Modifying the Path [modified] Pin
Luc Pattyn3-Mar-11 1:26
sitebuilderLuc Pattyn3-Mar-11 1:26 
GeneralRe: Modifying the Path Pin
mabo423-Mar-11 1:46
mabo423-Mar-11 1:46 
AnswerRe: Modifying the Path Pin
Luc Pattyn3-Mar-11 2:07
sitebuilderLuc Pattyn3-Mar-11 2:07 
QuestionHow to open an exported file through online docs when the user dont have a appropriate software in his desktop to open the file.. Pin
Rocky233-Mar-11 0:08
Rocky233-Mar-11 0:08 
Hi,

In my application, am exporting the data from Grid to Excel file and save it in My Documents.

If the user dont have Excel installed in his machine, it has to redirect it to google spreadsheet to view the exported file..

Can any one tell me how to do it...


As of now, am displaying a message to the user if he dont have Excel installed in his machine to view the Exported Excel file, i want to replace this by redirecting it to Google spreadsheet to view the exported file, am using a code this code to display message to the user..

if (MessageBox.Show(
                        "Data Exported to File " + strFileName +
                        " at location MyDocuments. Do yo want to view the saved file?",
                        "Work Done",
                        MessageBoxButton.YesNo,
                        MessageBoxImage.Information) == MessageBoxResult.Yes)
                    {
                        Type officeType = Type.GetTypeFromProgID("Excel.Application");
                        if (officeType == null) 
                        {
                            MessageBox.Show("Please Install MS Excel to view this file", "Liquidity Risk Management");
                        }
                        else 
                        {
                            olx.visible=true;
                        }
                    }

Answerfirst... upload the file... Pin
edgartaor3-Mar-11 2:25
edgartaor3-Mar-11 2:25 

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.