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

Search:

Type: Posts; User: neo_the_1

Page 1 of 15 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    3
    Views
    890

    Re: Windows positioning

    Thank you Victor for replying. Always a pleasure.
    I gave a list as an example but actually, I use ... an html dialog that shows a list of items. I navigate to a generated html and render it to show...
  2. Replies
    3
    Views
    890

    Windows positioning

    Hi guys,

    I have a situation that I fail to resolve.
    A scrollable list view with lots of entries, and now I want to position a static on a single record someplace in the middle of the items.
    I...
  3. Replies
    4
    Views
    708

    Re: Window is not animating

    Animation that is just like any regular task bar application that is minimized \ maximized.

    Thanks mate !
  4. Replies
    4
    Views
    708

    Re: Window is not animating

    Not sure if this will do. What I'm missing is minimize\restore animation and it's the result (I think) of the fact that the window is not showing on the task bar (I want it to be a pure system tray...
  5. Replies
    4
    Views
    708

    Window is not animating

    Hi ..

    I have a system tray application, which is folding \ unfolding when clicking the system tray icon.
    But it's done without the window animation that we get when we click an application on the...
  6. Replies
    1
    Views
    1,867

    Duplicate resource id's

    Hi ...

    Not long ago I was asked 'how mfc deals with duplicate resource id's ?'.
    Then and now I still don't know the answer ...

    Your help is appreciated.
    Thanks
  7. Replies
    1
    Views
    662

    Detecting Internet connectivity

    Hi ...

    I'm looking for a way to detect Internet connectivity.
    I thought to use URLDownloadToFile on a small file that is on my website and test the return value but not sure if this is effective....
  8. Replies
    1
    Views
    2,637

    DrawItem vs OnPaint

    Hi guys,

    Not long ago I was asked about the differences between OnDraw and OnPaint and had no idea what to answer.

    Now this question is stack in my mind so I've decided to ask the pros here.
    ...
  9. Can I use an Email address as a file name ?

    Is it valid ?

    Thanks
  10. Replies
    6
    Views
    2,526

    Re: CStdioFile fail to write unicode strings

    Thanks Mr. exception,

    I found this one: http://www.codeguru.com/cpp/cpp/cpp_mfc/files/article.php/c9169/

    It's working but it makes me nervous...
    I need something rock solid, 100% safe and...
  11. Replies
    6
    Views
    2,526

    CStdioFile fail to write unicode strings

    Hi guys...

    I'm doing a very simple job of writing lines of strings to an CStdioFile. Simple.
    Problem is that when I try to write Unicode strings, the file is ending completely messed.

    I think...
  12. Replies
    1
    Views
    658

    MapViewOfFile

    Hi guys ...

    I'm looking for a fast way to create and write to a file, C++\MFC way.
    Does the above function is good for the job ?

    Thanks
  13. Replies
    2
    Views
    740

    Re: CString Replace question

    Interesting .. I'll test this code soon.
    Thanks
  14. Replies
    2
    Views
    740

    CString Replace question

    Hi ...

    Currently I'm using CString::Replace and it's working fine.
    Problem is that I'm doing it 10 times on the same string (very long one).

    So what I'm looking for is a way to find\replace...
  15. Replies
    5
    Views
    5,508

    SetTimer minimum interval

    Hi ...

    I remember a time that the minimum interval for the CWnd::SetTimer was 55ms.
    Is it still the same ? what is the minimum for XP, VISTA and Win7 ?

    Thanks
  16. Replies
    5
    Views
    1,739

    Re: Disabling wait cursor for an application

    Some more info may help ..

    My app is CDHtmlDialog based, which means it loads an html page.
    I recently added an iframe to this html page and then this cursor appeared.
    The cursor is indicating...
  17. Replies
    5
    Views
    1,739

    Re: Disabling wait cursor for an application

    This I know ...
    As I said, there is a thread that is out of my reach that causes the wait cursor.
    Is there a way to disable or control the wait cursor ?

    Thanks
  18. Replies
    5
    Views
    1,739

    Disabling wait cursor for an application

    Hi ...

    I have a background thread that is not in my reach. This thread is generating
    a wait cursor that is very annoying and disturbing.

    Is there anything I can do about that ?
    Maybe...
  19. Replies
    5
    Views
    1,699

    Windows 7 tray

    Hi guys,

    By default Windows 7 will hide tray icons and you'll need to make them visible by selection.
    I'd like to force my tray icon to be visible .. any idea how it can be done ?

    Thanks
  20. Replies
    1
    Views
    727

    unicode menu items

    hello,

    i'm trying to create some menu items with languages like japanese korean and chinese but it doesn't seem to work.

    it there any resource setting that i'm missing ?
    any idea how to make...
  21. Replies
    0
    Views
    592

    need help with CMemFile

    hi guys,

    can you please help me moving this code snippet to CMemFile ?



    CStdioFile fo;
    if( fo.Open( szTargetFile, CFile::modeCreate | CFile::modeReadWrite ) ) {

    fo.WriteString(...
  22. is HW_PROFILE_INFO::szHwProfileGuid is unique ?

    hello,

    need your help to know if i can use HW_PROFILE_INFO::szHwProfileGuid as a unique id for a pc.

    thanks in advance
  23. Replies
    2
    Views
    1,503

    Re: generating user unique id

    thanks Codeplug,

    i used to use diskid32 in the past. this is so old .. but working :)
    i need this key to encrypt a file in a manner that will block this file from working on a different pc.
  24. Replies
    2
    Views
    1,503

    generating user unique id

    hello,

    i used to rely on WMI for generating unique user id (hard drive serial).
    this is not working smooth on Windows 7 so here i an here looking for an alternative.

    any ideas ?

    appreciate,...
  25. Replies
    0
    Views
    676

    DrawFocusRect question

    hello,

    i'm trying to implement an application that remove all focus rects from all of its controls.
    i think it involves DrawItem and ODS_FOCUS \ ODS_NOFOCUSRECT states but i'm not sure.

    help...
Results 1 to 25 of 374
Page 1 of 15 1 2 3 4





Click Here to Expand Forum to Full Width

Featured