Search:
Type: Posts; User: zkidkid
Search :
Search took 0.01 seconds.
October 13th, 2010 01:25 AM
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.
:)
October 11th, 2010 09:05 PM
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.
October 11th, 2010 10:17 AM
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.
...
October 7th, 2010 05:13 AM
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...
October 6th, 2010 10:42 AM
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.
October 4th, 2010 09:08 PM
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...
October 4th, 2010 08:54 AM
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...
October 4th, 2010 07:38 AM
I think you can't find out the function parameter if MAP file.
You should find it in cod file.
October 4th, 2010 07:11 AM
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...
October 1st, 2010 02:08 AM
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...
September 30th, 2010 09:40 PM
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;...
September 30th, 2010 10:49 AM
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...
September 7th, 2010 03:16 AM
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 (...
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;
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.
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",...
April 23rd, 2010 04:08 AM
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;
April 23rd, 2010 04:01 AM
bool Insert(tmp)
what is it ?
November 14th, 2009 12:59 AM
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 ?
October 29th, 2009 03:35 AM
would you tell exactly what your problem ?
October 10th, 2009 08:40 PM
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...
October 9th, 2009 10:16 PM
hi,
#include <iostream>
using namespace std;
int main()
{
char message[20];
FILE *test = fopen("test.txt", "w");
cout << "message: ";
October 9th, 2009 10:03 PM
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.
October 9th, 2009 09:58 PM
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++...
September 21st, 2009 04:47 AM
Maybe your program have to run in admin mode.
( right-click and choose Run As Administrator)
Click Here to Expand Forum to Full Width