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

C#

 
AnswerRe: changing desktop colour doesn't work Pin
PandemoniumPasha3-Aug-08 21:51
PandemoniumPasha3-Aug-08 21:51 
GeneralRe: changing desktop colour doesn't work Pin
DragenGimp4-Aug-08 1:59
DragenGimp4-Aug-08 1:59 
GeneralRe: changing desktop colour doesn't work Pin
DragenGimp4-Aug-08 3:21
DragenGimp4-Aug-08 3:21 
GeneralRe: changing desktop colour doesn't work Pin
PandemoniumPasha5-Aug-08 17:55
PandemoniumPasha5-Aug-08 17:55 
Questiondigital certificate file + private key file Pin
Jassim Rahma3-Aug-08 10:43
Jassim Rahma3-Aug-08 10:43 
AnswerRe: digital certificate file + private key file Pin
Judah Gabriel Himango3-Aug-08 11:57
sponsorJudah Gabriel Himango3-Aug-08 11:57 
QuestionTaskDialog: Marquee ProgressBar Problem Pin
Jassim Rahma3-Aug-08 10:35
Jassim Rahma3-Aug-08 10:35 
AnswerRe: TaskDialog: Marquee ProgressBar Problem Pin
Gareth H3-Aug-08 10:53
Gareth H3-Aug-08 10:53 
Read the error:

Error 1 'whatwhen.frmMain.TaskDialogCallback(Microsoft.Samples.ActiveTaskDialog, Microsoft.Samples.TaskDialogNotificationArgs, object)': not all code paths return a value

Since your method expects a bool to be returned, at the moment, this only happens if the notification is created. So you need to either add an else or a simple return.

eg:

private bool TaskDialogCallback(ActiveTaskDialog updateDialog, TaskDialogNotificationArgs args, object callbackData)
{
    if (args.Notification == TaskDialogNotification.Created)
    {
        updateDialog.SetProgressBarMarquee(true, 0);
        return false;
    }

    return true;
}


Regards,
Gareth.

(FKA gareth111)

QuestionHow to get orginal HTML source in axWebBrowser Pin
Barış Eskikaya3-Aug-08 9:49
Barış Eskikaya3-Aug-08 9:49 
AnswerRe: How to get orginal HTML source in axWebBrowser - ASP.NET Pin
Gareth H3-Aug-08 10:50
Gareth H3-Aug-08 10:50 
QuestionRe: How to get orginal HTML source in axWebBrowser Pin
Barış Eskikaya3-Aug-08 20:19
Barış Eskikaya3-Aug-08 20:19 
Questioncreating a tile pattern of user controls Pin
ideasman3-Aug-08 3:07
ideasman3-Aug-08 3:07 
AnswerRe: creating a tile pattern of user controls Pin
PIEBALDconsult3-Aug-08 5:57
mvePIEBALDconsult3-Aug-08 5:57 
GeneralRe: creating a tile pattern of user controls Pin
ideasman3-Aug-08 11:45
ideasman3-Aug-08 11:45 
GeneralRe: creating a tile pattern of user controls Pin
PIEBALDconsult3-Aug-08 11:56
mvePIEBALDconsult3-Aug-08 11:56 
GeneralRe: creating a tile pattern of user controls Pin
ideasman3-Aug-08 21:05
ideasman3-Aug-08 21:05 
AnswerRe: creating a tile pattern of user controls Pin
nelsonpaixao3-Aug-08 15:10
nelsonpaixao3-Aug-08 15:10 
AnswerRe: creating a tile pattern of user controls Pin
Mycroft Holmes3-Aug-08 15:48
professionalMycroft Holmes3-Aug-08 15:48 
GeneralRe: creating a tile pattern of user controls Pin
ideasman3-Aug-08 21:14
ideasman3-Aug-08 21:14 
GeneralRe: creating a tile pattern of user controls Pin
Mycroft Holmes3-Aug-08 21:22
professionalMycroft Holmes3-Aug-08 21:22 
GeneralRe: creating a tile pattern of user controls Pin
ideasman3-Aug-08 23:07
ideasman3-Aug-08 23:07 
Questionc# and implementing security Pin
Ryan Minor3-Aug-08 2:19
Ryan Minor3-Aug-08 2:19 
AnswerRe: c# and implementing security Pin
Kevin McFarlane3-Aug-08 5:01
Kevin McFarlane3-Aug-08 5:01 
AnswerRe: c# and implementing security Pin
nelsonpaixao3-Aug-08 15:17
nelsonpaixao3-Aug-08 15:17 
Questionconnecting to excel 2007 Pin
Abdul Rahman Hamidy3-Aug-08 2:02
Abdul Rahman Hamidy3-Aug-08 2:02 

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.