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

Search:

Type: Posts; User: funkathustra

Search: Search took 0.06 seconds.

  1. Replies
    6
    Views
    8,611

    Re: Threading UI components

    *looks embarrassed* Yeah, I should have thought of that, shouldn't have I?

    Haha, how obvious is it that I'm an Electrical Engineering student who hasn't taken a programming class since Freshman...
  2. Replies
    6
    Views
    8,611

    Re: Threading UI components

    OK, after a bit more work, I've got this to work:



    Thread AddPhotoThread;

    private void Update()
    {
    try
    {
  3. Replies
    6
    Views
    8,611

    Re: Threading UI components

    Thanks, that helped a bit -- I ended up finding this, which really got me going in the right direction. I modified my ObservablePhotoCollection class to this:



    private void Update()
    ...
  4. Replies
    6
    Views
    8,611

    Re: Threading UI components

    Anyone?
  5. Replies
    6
    Views
    8,611

    Threading UI components

    I'm building a WPF photo viewing application, and trying to get a handle on threading. I've asked about this before in this forum -- and although everyone's reading suggestions have been good, I'm...
  6. Replies
    2
    Views
    4,491

    Thread.Sleep and synchronizing threads

    I'm trying to build a simple alarm clock application that shows a MessageBox at a particular time. I've been trying to teach myself about threading, but I'm having a hard time putting my finger on...
  7. Re: Event handling and delegates with SerialPort

    Yeah, that makes sense -- but how do I expose the function? I'm afraid I'll run into a circular dependency. My "move" function lives in the Robot class (because that's where the serial port is -- if...
  8. Event handling and delegates with SerialPort

    I'm working on writing a C#/WPF application to control a hexapod robot over a serial port. Obviously, I need one instance of a SerialPort that I can issue commands to. I want to create a Leg class to...
Results 1 to 8 of 8





Click Here to Expand Forum to Full Width

Featured