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

Search:

Type: Posts; User: TBBW

Page 1 of 9 1 2 3 4

Search: Search took 0.15 seconds.

  1. Replies
    0
    Views
    603

    Customize NoUiSlider

    hi Guys,

    See my attachment, sliders 3 and 4 are not correct.
    Where do I go wrong.

    Regards,

    Ger
  2. Thread: noui-slider

    by TBBW
    Replies
    3
    Views
    1,052

    Re: noui-slider

    Here we go



    <!DOCTYPE html>
    <html lang="en">

    <head>
    <title>Custom Slider</title>
    <meta charset="utf-8" />
  3. Thread: noui-slider

    by TBBW
    Replies
    3
    Views
    1,052

    noui-slider

    Hi All,

    I tried to change the standard colors of this slider with images (PNG).
    At this moment I can not get it working...
    See my Attachment for progress.
    Where do I go wrong....

    Regards,
    ...
  4. Thread: Storyboard

    by TBBW
    Replies
    2
    Views
    1,500

    Re: Storyboard

    The Story ends !!

    When I made the storyboard in Blend, Blend added an event Windowloaded, which I did not saw....

    the board is working with;


    private async void COD5WindowActivated(object...
  5. Thread: Storyboard

    by TBBW
    Replies
    2
    Views
    1,500

    Storyboard

    hi all,

    I have a storyboard.
    it drops a shadow under my window from 0 to 20 in one sec.
    so I want the shadow from 0 to 20 when the window activates and from 20 to 0 when it deactivates.

    I...
  6. Replies
    3
    Views
    1,330

    Re: Need help for a C# homework program to code!

    ha ha,

    make a setup first!!
    We will help you! we are not gonna make your homework ;-)

    regards,

    ger
  7. Thread: WPF Timer Trouble

    by TBBW
    Replies
    0
    Views
    452

    WPF Timer Trouble

    Hi All,

    I use this;



    while (....)
    {
    ....
    ....
  8. Replies
    16
    Views
    6,178

    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";...
  9. Replies
    16
    Views
    6,178

    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...
  10. Replies
    16
    Views
    6,178

    Re: Button/busyindicator in other than Click Event

    the assemblies

    Ger.
  11. Replies
    16
    Views
    6,178

    Re: Button/busyindicator in other than Click Event

    what do you need?
    I will beam it up!

    regards,

    ger
  12. Replies
    16
    Views
    6,178

    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,...
  13. Replies
    16
    Views
    6,178

    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....
  14. Replies
    16
    Views
    6,178

    Re: Button/busyindicator in other than Click Event

    Hi all,


    so;




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

    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)
  16. Replies
    16
    Views
    6,178

    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...
  17. Replies
    22
    Views
    3,617

    Re: if then statement and switch statement

    Thanks guys !! :-)

    Ger
  18. Replies
    22
    Views
    3,617

    Re: if then statement and switch statement

    Hi All,

    Thanks for all the info.
    I use the strings to keep my code readable. (and is some parts flow control)
    Can I put it like this;
    in stead of using strings for readability and flow...
  19. Replies
    22
    Views
    3,617

    Re: if then statement and switch statement

    can you put the enum in my code to see how to use it?
  20. Replies
    22
    Views
    3,617

    Re: if then statement and switch statement

    Hi,

    It is ALWAYS one of the two !!
  21. Replies
    22
    Views
    3,617

    if then statement and switch statement

    Hi all,

    see the following:



    public static bool IsInstallerRunning(string arg)
    {
    Process[] myProcesses = null;
    myProcesses = Process.GetProcesses();
  22. Thread: Windows Z-order

    by TBBW
    Replies
    1
    Views
    725

    Windows Z-order

    Hi All,

    I want my dialog to sit on another dialog, how do I check/get the Z-order of this foreign dialog.
    and set my dialog just one step above/below.
    I can use topmost, but as the word says...
  23. Thread: File Path

    by TBBW
    Replies
    2
    Views
    810

    Re: File Path

    Thanks Arjay, will have a go !!
  24. Thread: File Path

    by TBBW
    Replies
    2
    Views
    810

    File Path

    Hi All,

    In my test situation I use absolute paths like
    C:\TestDir\MyProgram.exe
    and
    C:\TestDir\SubDir\Install.exe

    In the final version the exe files will be on a DVD.
    So the statement(s)...
  25. Replies
    9
    Views
    2,644

    Re: Storyboard .... again

    Hi All,

    Solved the problem.
    Thanks to the hint of Arjay on threads.
    I'm using async and await
    like this;



    private async void COD1_MouseUp(object sender, MouseButtonEventArgs e)
Results 1 to 25 of 203
Page 1 of 9 1 2 3 4





Click Here to Expand Forum to Full Width

Featured