April 18th, 2013 03:14 AM
Hi gurus.
I'm working with track points. I need separate the original track in parts that are not duplicate. I'm looking for algorithm to solve examples like these:
Example 1: if target is...
October 5th, 2012 02:58 AM
Hi gurus.
I’m having a trouble with ADO. I have this code (below), it works fine in a developer machine (Windows 7 and Visual studio 10) but compiled program not works under Windows Server 2003...
April 30th, 2012 06:14 PM
From MSDN: http://msdn.microsoft.com/en-us/library/sxtz2fa8(v=vs.80).aspx
int main( void )
{
int i;
unsigned int number;
double max = 100.0;
...
April 30th, 2012 04:50 PM
I created few threads. Now I create 500 threads and the program crass.
I change the code and use the Critical Section. This is my code now:
#define NTHREADS 500
#define MAXCADENA 10...
April 30th, 2012 04:00 PM
Hi again.
Now I'm trying to write a example of critical sections but it's not work. why?
NOTE: main function only call Inicio function.
#define NTHREADS 500
#define MAXCADENA 10
April 30th, 2012 03:19 PM
April 30th, 2012 02:35 PM
I'am thinking about synchronization and I begin with this code with the purpose to change it latter to insert a semaphore for example but this code not work fine... I think the trouble is with the...
November 25th, 2009 05:24 AM
Hi.
I need to put in a CListCtrl about 300.000 items but it is very slow.
There are some way to work properly with this number of items?
Now I am working in a loop as follow:
1.- Read...
August 28th, 2009 02:01 AM
Hi!
Perhaps the ask is not very clear...
Step 1.- Read BMP file:
IN .H FILE:
class CTrasformaDlg : public CDialog
August 28th, 2009 01:40 AM
Other way: use
BOOL PathFileExists(
LPCTSTR pszPath
);
to know if the file exists.
Regards!