CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: TBBW

Search: Search took 0.04 seconds.

  1. Replies
    16
    Views
    6,199

    Re: Button/busyindicator in other than Click Event

    Hi,

    I do understand the blocking of the UI thread.

    using the background gives me an unstable program.
    If I runs it 10 times it crashes 2 times randomly.

    This is my "problem";...
  2. Replies
    16
    Views
    6,199

    Re: Button/busyindicator in other than Click Event

    Hi all,

    Working on the background thread option from Arjay, does not give me the wanted result, yet.
    Apart from that; I came to the conclusion that a VISUAL state change is done after the last...
  3. Replies
    16
    Views
    6,199

    Re: Button/busyindicator in other than Click Event

    the assemblies

    Ger.
  4. Replies
    16
    Views
    6,199

    Re: Button/busyindicator in other than Click Event

    what do you need?
    I will beam it up!

    regards,

    ger
  5. Replies
    16
    Views
    6,199

    Re: Button/busyindicator in other than Click Event

    thanks for the info Arjay, will have a go on the backgroundworker.

    in the mean while I found this;

    WPF busy indicator implementation with singleton pattern
    see attachment;

    when I use it,...
  6. Replies
    16
    Views
    6,199

    Re: Button/busyindicator in other than Click Event

    The CRC routine only returns a false or true value, no updates/events just a math routine
    I want to switch on the busyindicator when enetering the CRC routine and turn it off when leaving the CRC....
  7. Replies
    16
    Views
    6,199

    Re: Button/busyindicator in other than Click Event

    Hi all,


    so;




    private void InstallClick(object sender, RoutedEventArgs e)
    |
  8. Replies
    16
    Views
    6,199

    Re: Button/busyindicator in other than Click Event

    did some digging,

    need to change

    public static bool CRCChecker(string Filename, string HashIn)

    and change this;

    if (CRCChecker(FileName, InstallCRC) == true)
  9. Replies
    16
    Views
    6,199

    Button/busyindicator in other than Click Event

    Hi all,

    Oke hope I can make myself clear...

    In a ButtonClickEvent you can change the state of a button for instance
    Like using Button.IsEnabled = true; (Or false)
    In my Button click event...
Results 1 to 9 of 9





Click Here to Expand Forum to Full Width

Featured