Click here to Skip to main content
15,886,362 members

Comments by Pascal-78 (Top 75 by date)

Pascal-78 6-Dec-19 9:54am View    
Deleted
According to the data, the output is correct. The array with the number of items per sections gives a total number of 6 (1+2+3). May be the number of sections is incorrect
Pascal-78 17-Apr-18 11:52am View    
The time difference is a pointer difference! It will not give the right time.
Your code displays the start time twice!, and it displays the milliseconds without the seconds.
For time arithmetics, you should convert your SYSTEMTIME to FILETIME then to ULARGE_INTEGER and do arithmetics using the last type.
You should start by getting a good time measurement first
Pascal-78 18-Aug-17 5:50am View    
Did you try the LockWindowUpdate method to avoid window-flashing? It may also speed-up a little (because insertion of new item in the list will not start a new redraw).
Pascal-78 22-Jul-16 5:32am View    
Like Richard said, without code it is just a guess:
I assume the 3 classes are in the same project, if yes, it is not a missing reference problem. What is the declaration of the static method? Is it private, public, protected, or internal ? without any specification it is private and not accessible outside the class itself. Use internal or public to allow access from outside the class.
Pascal-78 19-Nov-15 11:55am View    
I do not see any VARIANT in your code. RequestDataVal seems to be a managed object. Can you provide the GetRequestData prototype (or the source code if it is a wrapper you have done for the dll).