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

Search:

Type: Posts; User: jojo080889

Search: Search took 0.04 seconds.

  1. Replies
    2
    Views
    4,275

    Re: Running batch script on build?

    Perfect, thank you. I copy and pasted the command line into Pre-Build event to do what I wanted.
  2. Replies
    2
    Views
    4,275

    Running batch script on build?

    I'm trying to use SubWCRev so that I can use subversion's revision number as part of the version number that is displayed in my program. Right now, I have to run SubWCRev manually everytime I want...
  3. Replies
    0
    Views
    2,747

    Trying to compile pwlib in Windows Mobile

    Hello,

    Trying to compile pwlib for Windows Mobile in Visual Studio 2008. I can get it to compile under Win32 but not under Windows Mobile 6 Professional SDK. I've been able to workaround a lot of...
  4. Replies
    8
    Views
    12,058

    Re: How to test if KillTimer has been called?

    whoops, sorry, I meant to write KillTimer, not SetTimer!

    Well, it's kind of complicated to explain why I need to do this, but I'll try my best.
    I'm working on code that is basically video calls...
  5. Replies
    8
    Views
    12,058

    Re: How to test if KillTimer has been called?

    Sorry, I guess I should have been more clear!
    I want to programmatically, at some point in the code, test if a certain timer has been killed. If so, I want to do nothing. Otherwise, do something.
    ...
  6. Replies
    8
    Views
    12,058

    How to test if KillTimer has been called?

    As the title says.

    I can't seem to find anything on MSDN on this subject.
    The timers being used aren't HANDLE variables; rather, they are declared like #define IDT_TIMER 100.

    Thanks!
  7. Events? Or, How to tell if one is offline

    Hi,

    I was wondering if there are something like events in VC++. For example, I'd like to be able to execute a function once my device becomes disconected/offline, and execute a different function...
  8. Replies
    7
    Views
    2,070

    Re: Showing loading animation or dialog box?

    Thanks for the article, Najet! This is really helpful.

    So I've put the Dialog Box in a different thread... the cancel button doesn't freeze anymore and it will do something when I click it, but it...
  9. Replies
    7
    Views
    2,070

    Re: Showing loading animation or dialog box?

    Thanks everyone! I used to a Modeless Dialog Box and it does the trick -- it shows some feedback to the user while allowing the program to continue connecting in the background.

    However, I'm...
  10. Replies
    7
    Views
    2,070

    Re: Showing loading animation or dialog box?

    The program I'm working on is a sort of chat program on mobile phones. The user selects a contact from a list and clicks "Call". In the background the phone is going through all sorts of functions to...
  11. Replies
    7
    Views
    2,070

    Showing loading animation or dialog box?

    I need to preface by saying that I'm new to Visual C++, so forgive me if I'm asking a question with an obvious answer :D

    I'm trying to get either a loading animation or a dialog box that says...
Results 1 to 11 of 11





Click Here to Expand Forum to Full Width

Featured