Search:
Type: Posts; User: VictorN
Search:
Search took 0.09 seconds; generated 33 minute(s) ago.
-
Glad you've solved this problem! :thumb:;)
-
Additional info: https://developercommunity.visualstudio.com/t/intellisense-broken-10000-shows-errors-but-compile/341025
-
They show you the places (the lines) where intellisense has found the errors.
Note that sometimes it sucks! ;)
You can switch to show only the build errors though.
-
It's now a very good reason to learn how to debug yor code, debug it and found out what goes wrong and why.
-
I guess you have to implement it yourself. Just see the examples and documentation and repeat output for each attribute you want to.
-
2kaud is correct.
For permissions see:
https://docs.microsoft.com/en-us/dotnet/api/system.security.permissions.fileiopermission?view=dotnet-plat-ext-6.0...
-
See https://docs.microsoft.com/en-us/dotnet/api/system.io.fileattributes?view=net-6.0#examples
-
See https://docs.microsoft.com/en-us/cpp/mfc/reference/cdatetimectrl-class?view=msvc-170#gettime
// assuming your m_Date is of the type CDateTimeCtrl
COleDateTime selectedDateTime;
if...
-
How to automate Excel from C++ without using MFC or #import
How to automate Excel from MFC and Visual C++ 2005 or Visual C++ .NET to fill or obtain data in a range using arrays
Doesn't this...
-
Are you using an excel automaton in your VC++ code?
-
Why not using one list control instead of four list boxes?
-
-
April 30th, 2022, 06:42 AM
https://www.google.com/search?q=TS2304&client=ms-android-samsung-ga-rev1&sxsrf=ALiCzsY3M-dnFBUYK3aiDivBp2DJfVrl5A%3A1651318808193&ei=GCBtYsvBC872gQb826Vo&oq=TS2304&gs_lcp=ChNtb2JpbGUtZ3dzLXdpei1zZXJwE...
-
April 29th, 2022, 01:49 AM
I agree with Igor. The "classic" list control slows down with so many rows.
Consider using the virtual list control.
-
April 26th, 2022, 11:37 PM
Press the Retry button on the Assertion dialog to step in the code causing the failure and understand what was the reason...
-
April 25th, 2022, 03:36 PM
According to the documentation this error means:
Did you check whether the HANDLE hCon is correct/valid?
-
April 25th, 2022, 04:49 AM
It seems to me you can't.
However the could be some (not simple) workarounds:...
-
April 24th, 2022, 01:39 AM
Why do you throw the runtime_error when bytes_read > 0?
//Read and write operation
while(ifs){//infinite loop
bytes_read=getFileContent(fname, vec_str);
if(bytes_read>0)...
-
April 18th, 2022, 02:36 AM
Did you read the sections:
Pausing a Thread and Thread Shutdown
Shutting down a thread from a view or main frame
Thread Shutdown Without Polling (20-Jan-01)
What does not "fit your case in...
-
April 17th, 2022, 03:30 AM
I added CODE tags around your code snippet to make the code readable.
Now we're waiting for your explanation about what you need, what you could not achieve, and so on...
-
April 17th, 2022, 03:26 AM
Don't reinvent the wheel! just check out a great Joe Newcomer's essay about Using Worker Threads
-
April 14th, 2022, 02:37 AM
Debug your code to see/understand what happens inside your getFileContent() function!
-
April 13th, 2022, 11:33 AM
So have you already posted a PM (Private Message) to jamespayne?
-
April 13th, 2022, 05:42 AM
Your problem has nothing to do with the RichTextBox.
It is just simple mathematics. Try to solve it with a peace of paper and a pencil.
Then learn the basics how to work with integer numbers...
-
April 13th, 2022, 01:38 AM
Do the same like with any other assertion messagebox: press a Retry button to step in the code (line) caused this assertion.
Or just find in your installation folder looking like:
this...
|
Click Here to Expand Forum to Full Width
|