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

Search:

Type: Posts; User: zkidkid

Page 1 of 5 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    8
    Views
    5,063

    Re: How To Implement Mutex In Windows

    hi, thanks for your quick answer.

    Cause it's a question from my friend. He had an interview from Aricent Company. And he asked me for the solution. But I know nothing.

    :)
  2. Replies
    8
    Views
    5,063

    Re: How To Implement Mutex In Windows

    Hey, thank for your quickreply. But you have missunderstood me.

    I just want to implement 3 above functions like CreateMutex,OpenMutex, and ReleaseMutex by myself.
  3. Replies
    8
    Views
    5,063

    How To Implement Mutex In Windows

    Hi all,

    In windows API we have 3 functions to control mutex:
    CreateMutex,OpenMutex, and ReleaseMutex.

    Currently, I want to implement it by myself so I have google it but I found nothing.
    ...
  4. Replies
    6
    Views
    9,571

    Re: [WM6.5] How to show/hide menu automatically

    Hi All,

    Thanks for your all support. I have found the root problem.

    In this case, at my customer framework, they have a background service to handle my menu.

    So I have handled my menu by...
  5. Replies
    5
    Views
    1,525

    Re: Synchronization between multiple threads !

    In this case, I think you could use Mutex to synch between writer thread and reader thread.
    You just release mutex when your writer thread finishes or all of reader threads finish.
  6. Replies
    1
    Views
    841

    Re: [PrefetchAbort] Need a solution

    Hey,

    In my abort message, I see that "RA=79049040(yyy.dll+0x00015040) ".
    But the probem is how to I have map file of yyy.dll ?

    Do they have any article about this problem ?

    Any help is...
  7. Replies
    6
    Views
    9,571

    Re: [WM6.5] How to show/hide menu automatically

    hey,

    I have set its parent. But nothing happens. it's so strange.

    Because I am working in my customer platform, So it's hard to find out the root cause.

    I have doing some tests to process...
  8. Replies
    4
    Views
    3,127

    Re: How to read Vc++ MAP file?

    I think you can't find out the function parameter if MAP file.
    You should find it in cod file.
  9. Replies
    1
    Views
    841

    [PrefetchAbort] Need a solution

    Hi All,
    Currently I am working with window mobile 6.5. After I have a free test ( Automatically), Some errors has occured but this error bellow is so difficult for me to fix. I have no idea although...
  10. Replies
    6
    Views
    9,571

    Re: [WM6.5] How to show/hide menu automatically

    uhm, Nobody can help me ?

    Currently, I am thinking about hiding menu by send to it a virtual key.

    When I use RemoteSpy I found that it will hide menu by sending two command:

    WM_CANCELMODE...
  11. Replies
    6
    Views
    9,571

    Re: [WM6.5] How to show/hide menu automatically

    Hi, thanks for your quick reply.

    But now I am not using MFC framework, It's just my customer framework, and their framework has a message box with a method to DoModal().

    ex:

    ABCMessageBox x;...
  12. Replies
    6
    Views
    9,571

    [WM6.5] How to show/hide menu automatically

    Hi All,

    I have a application.
    In which, I will show a message box when receive a specify message. And this message box should is TopMost.

    It work fine except when user click show menu, my...
  13. [?] [WinMobile6.5] Can't Debug In Real Device

    Hi All,

    I am currently making some application for a OEM.
    I use their framework so I can't excute it in emulator. My application just run in their device.

    Recently, I receive some error (...
  14. [Automation To .Net] Find String In Solution

    Hi All,
    I am making a automation program which auto compile and fix error.
    Now, when I have a problem like this :

    Old Code In VS 2003 or 6.0:


    for(int i = 0; i < 10; ++i)
    {
    cout<<i;
  15. Replies
    2
    Views
    4,490

    Re: [Excel] Find & FindNext Method Problem

    Hi,

    Thanks, I have worked around with google and find this above post.
    My way is the same with him, but it doesn't work.

    I am using Excel 2003.
  16. Replies
    2
    Views
    4,490

    [Excel] Find & FindNext Method Problem

    Hi All,

    I am working with excel, and using this find/findnext method.
    Here is my code :


    Excel.Range rgn;
    Excel.Range usedRange = workSheet.UsedRange;
    rgn = usedRange.Find("mystring",...
  17. Replies
    16
    Views
    1,472

    Re: Need help find error with Binary tree code

    Oh, Something's bad.

    In your BST class you have defined a method :

    bool Insert(const BST &i);

    But when you use it :

    case 1 : cout<<" Enter Number to be inserted : ";
    cin>>tmp;
  18. Replies
    16
    Views
    1,472

    Re: Need help find error with Binary tree code

    bool Insert(tmp)


    what is it ?
  19. Thread: Multi Alarm

    by zkidkid
    Replies
    5
    Views
    1,049

    Re: Multi Alarm

    uhm you can use window service to do this task.

    An other way, in your application you can use TimeTick to do this task.

    A question for you. Can you make a single alarm ?
  20. Replies
    1
    Views
    2,944

    Re: Refresh of Master Page

    would you tell exactly what your problem ?
  21. Replies
    8
    Views
    36,000

    Re: LoadLibrary("*.dll") vs LoadLibraryA(".dll")

    First you could try to use :

    hCodigo = LoadLibrary(TEXT("zlib1.dll"));

    If it don't work, you can use GetLastError() to find what problem is.

    (zlib1.dll) should place at the same folder with...
  22. Replies
    10
    Views
    1,162

    Re: Is this possible?

    hi,


    #include <iostream>
    using namespace std;
    int main()
    {
    char message[20];
    FILE *test = fopen("test.txt", "w");
    cout << "message: ";
  23. Replies
    1
    Views
    4,879

    Re: Need help with 2d array o.O

    m_pBitmapGrid = new Bitmap*[m_iTilesAcross];
    for(int i = 0; i < m_iTilesAcross; ++i)
    m_pBitmapGrid[i] = new Bitmap[m_iTilesAcross];


    Try to use it.
  24. Replies
    10
    Views
    1,162

    Re: Is this possible?

    In C/C++ you can use cin, cout ( in iostream header) to have use input. And you can write your data to file by using ifstream or ofstream (in fstream header).

    Btw, you can read more in C/C++...
  25. Re: Not able to Copy files in System 32 folder Vista...!

    Maybe your program have to run in admin mode.
    ( right-click and choose Run As Administrator)
Results 1 to 25 of 119
Page 1 of 5 1 2 3 4





Click Here to Expand Forum to Full Width

Featured