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

Search:

Type: Posts; User: Alin

Page 1 of 80 1 2 3 4

Search: Search took 0.72 seconds.

  1. Thread: The Boring Thread

    by Alin
    Replies
    2,373
    Views
    1,458,144

    Re: The Boring Thread

    Wow! Hey guys, this thread is still alive after all these years! Good stuff.
  2. Replies
    20
    Views
    5,361

    Re: Error when converting VC 6 project

    That did the trick, thanks very much.
  3. Replies
    20
    Views
    5,361

    Re: Error when converting VC 6 project

    thanks for the replies.

    i still remember the ON_COMMAND signature is void ;)), but at the same time my function returns BOOL and i need it to be that way. is there a cast i could try to make it...
  4. Replies
    20
    Views
    5,361

    Error when converting VC 6 project

    I've been out of the VC world for years now. I'm trying to build an old project and I'm getting this error:



    Error 2 error C2440: 'static_cast' : cannot convert from 'BOOL (__thiscall...
  5. Replies
    5
    Views
    10,204

    Re: Microsoft VBScript runtime error '800a0007'

    okay, thanks guys, i'll have the developers have a closer look.
  6. Replies
    5
    Views
    10,204

    Re: Microsoft VBScript runtime error '800a0007'

    No, it's not that ... there is enough RAM on that machine. VM also looks ok.

    What are some of the usual suspects when these errors are surfacing?
  7. Replies
    5
    Views
    10,204

    Microsoft VBScript runtime error '800a0007'

    Okay, it's been a while and this has nothing to do with VB programming.

    During performance testing, we are getting the following error displayed in the browser:

    Microsoft VBScript runtime error...
  8. Replies
    18
    Views
    2,498

    Re: Dialog vs dialog (mfc)

    ::SendMessage (WM_USER_MSG, ...) from A to B.
  9. Thread: a = b; Help?

    by Alin
    Replies
    26
    Views
    2,768

    Re: a = b; Help?

    :d:d:d
  10. Replies
    8
    Views
    1,046

    Re: My First Animated GIF

    very nice, i like it. it could be used in a commercial
  11. Replies
    6
    Views
    970

    Re: CreateDirectory function

    so i don't understand why aren't you designating the full path yourself. something like: L"C:\\Temp\\TestDir\\"
  12. Replies
    4
    Views
    772

    Re: two windows, one tray icon

    huh?
  13. Replies
    3
    Views
    802

    Re: Looking for cruise line from Europe to USA

    oh, come on, maybe he was serious...:D
  14. Replies
    8
    Views
    1,400

    Re: One question of registry (file association)

    i think WM_SETTINGCHANGE could be of help. send it after you've modified the registry.
  15. Replies
    4
    Views
    1,051

    Re: How to Add images in combobox?

    i cant believe how lazy you are
  16. Replies
    6
    Views
    1,048

    Re: Need help with fixing C++ code?

    i only corrected the first if.


    if (((pos_wid >= 210) && (pos_hei <= 297)) || ((pos_wid <= 420) && (pos_hei >= 297)))
    {
    cout << "Use A4" << endl;
    }
  17. Re: Keyboard-Hook - How to correctly interprete upper case?

    have you tried using GetAsyncKeyState, GetKeyState or GetKeyboardState?
  18. Replies
    9
    Views
    6,648

    Re: FolderBrowserDialog in MFC

    4/2 = 2/1 = 2 :d
  19. Replies
    12
    Views
    1,810

    Re: Is this a wise choice?

    check your "how do I...." posts. they'll be a good refresher.
  20. Replies
    12
    Views
    1,810

    Re: Is this a wise choice?

    Xeon,

    I refrained - so far - making any comments, but what the hell happened and why did you left programming in the first place?! I remember when I joined CG in 2002 you were so into it, good at...
  21. Replies
    4
    Views
    1,005

    Re: CEdit Control Question

    the application would know if you associate a member variable with your edit. you can either use class wizard to do this, or do it manually. if you decide to use class wizard, open your dialog that...
  22. Replies
    6
    Views
    1,284

    Re: Help with finding highest and lowest age

    right...well the OP could customize it according to his needs.
  23. Replies
    6
    Views
    1,284

    Re: Help with finding highest and lowest age

    you could remember the age in a vector and just sort the vector. if you can't use the sort function, you could write one of your own.




    #include <vector>
    #include <algorithm>

    int...
  24. Thread: CFileFind

    by Alin
    Replies
    3
    Views
    935

    Re: CFileFind

    search the FAQ's - you'll find your answer
  25. Replies
    16
    Views
    29,340

    Re: Focus Problem in MFC Dialog Project

    we need to understand what is the exact behavior that you are after and what part of that is not working.
Results 1 to 25 of 2000
Page 1 of 80 1 2 3 4





Click Here to Expand Forum to Full Width

Featured