CodeGuru Home
VC++ / MFC / C++
.NET / C#
Visual Basic
VB Forums
Developer.com
Register
Help
Remember Me?
Forum
What's New?
Activity Stream
New Posts
New Events
Mark Forums Read
Advanced Search
Home
Activity Stream
If this is your first visit, be sure to check out the
FAQ
by clicking the link above. You may have to
register
or
Login
before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.
Activity Stream
Filter
Sort By
Time
Show
Recent
Recent
Popular
Popular
Anytime
Anytime
Last 7 Days
Last 7 Days
Last 30 Days
Last 30 Days
All
All
Photos
Photos
Forum
Forums
New Activity (
)
Please reload this page to view the 200+ new activity items that have been created.
Older Activity
Yesterday,
03:24 PM
gabriellewilson36cb
replied to a thread
how to add the ability to calculate GPA of every stored student in this code
in
C++ (Non Visual C++ Issues)
was it fixed? what was the problem in it?
see more
8 replies | 2097 view(s)
June 23rd, 2022,
12:20 PM
VictorN
replied to a thread
WinAPI, Working with text
in
C++ and WinAPI
1. What type (class) of the "child window" are you using? For instance, if it is a STATIC control then it is impossible to select/highlight a text...
see more
1 replies | 224 view(s)
June 23rd, 2022,
05:05 AM
Tom_H
started a thread
WinAPI, Working with text
in
C++ and WinAPI
Hello, I am somewhat new to both C++ and Win32 (also to this forum), Currently I am stuck with a program and don't know the approach to take. I...
see more
1 replies | 224 view(s)
June 22nd, 2022,
10:13 AM
spxhypcan
started a thread
Software Engineer C++ needed
in
Open Positions (Jobs)
A German AgTech company is looking for a C++ Software Engineer! Your mission: → Take control of our spectral sensor and custom automation...
see more
0 replies | 132 view(s)
June 22nd, 2022,
06:30 AM
upsilon
replied to a thread
Best web dev language 2020
in
General Developer Topics
There are a lot of pre-written functionalities in web development, like frameworks, that include standardized coding practices and end-to-end...
see more
8 replies | 8774 view(s)
June 20th, 2022,
04:36 AM
Congruentsoft
replied to a thread
needs to convert C++ code to JAVA
in
Java Programming
There are many converters available in the market but I will suggest you take help from an experienced Java Development Company.
see more
15 replies | 1025 view(s)
June 20th, 2022,
04:35 AM
Congruentsoft
replied to a thread
Creating a Continuous Integration for .Net Using Azure DevOps
in
ASP.NET
That's a piece of helpful information. In such a situation I believe in DevOps Consulting Services and Azure consulting services can be a big help!
see more
1 replies | 1467 view(s)
June 20th, 2022,
01:21 AM
JacqualineLindsey
replied to a thread
Hello!
in
General Discussion / Chit Chat
Hello Everyone, I am Jacqualine. I have just registered in the forum. Would love to know you all and be a part of this forum.
see more
4 replies | 2934 view(s)
June 16th, 2022,
06:39 PM
den_yera
replied to a thread
[RESOLVED] can i convert a string into a math expression?
in
C++ (Non Visual C++ Issues)
Thanks for post!
see more
21 replies | 8049 view(s)
June 14th, 2022,
03:30 AM
2kaud
replied to a thread
Which is better method to start learn C++?
in
C++ (Non Visual C++ Issues)
The best on-line free resource to learn C++ is https://www.learncpp.com/ For a book, IMO the best to learn from is Ivor Horton's Beginning C++:...
see more
1 replies | 164 view(s)
June 13th, 2022,
01:45 PM
MarkIden
started a thread
Which is better method to start learn C++?
in
C++ (Non Visual C++ Issues)
I have 3 variant to start . First variant , it's to buy books on C++ and study by myself . Second variant , it's take any online course from here...
see more
1 replies | 164 view(s)
June 13th, 2022,
03:22 AM
2kaud
replied to a thread
help with hobby programming in C++
in
Visual C++ Programming
Sorry my bad - I blame not enough coffee! When I was going through the original code I misread one line and used 8 instead of v.size() - 1. I've...
see more
10 replies | 673 view(s)
June 12th, 2022,
12:28 PM
wiwbiz
replied to a thread
help with hobby programming in C++
in
Visual C++ Programming
As I see it, the code is too much altered. It's not only giving -ve coordinates, but out of bound too. None of the values for i,j in a can be less...
see more
10 replies | 673 view(s)
June 12th, 2022,
12:03 PM
2kaud
replied to a thread
help with hobby programming in C++
in
Visual C++ Programming
As an example of using std::unordered_set consider: #include <iostream> #include <unordered_set> struct Pos { int i {}; int j {};
see more
10 replies | 673 view(s)
June 12th, 2022,
11:43 AM
2kaud
replied to a thread
help with hobby programming in C++
in
Visual C++ Programming
You need to maintain a container of already visited locations. I'd suggest a std::unordered_set ...
see more
10 replies | 673 view(s)
June 12th, 2022,
10:52 AM
2kaud
replied to a thread
help with hobby programming in C++
in
Visual C++ Programming
Then you need to use the debugger to trace through the code to see where is the issue. When I ran the code, I was getting -ve values for moved to...
see more
10 replies | 673 view(s)
June 12th, 2022,
10:09 AM
wiwbiz
replied to a thread
help with hobby programming in C++
in
Visual C++ Programming
There is a check for that as well. From code itself, the value of k=5 is only possible if some conditions are met, which in this case is from this...
see more
10 replies | 673 view(s)
June 12th, 2022,
09:53 AM
wiwbiz
replied to a thread
help with hobby programming in C++
in
Visual C++ Programming
Thank you for the reply. 1. There is no task. I am just beginner, and trying to learn through book exercise problems. 2. As you might have...
see more
10 replies | 673 view(s)
June 12th, 2022,
09:46 AM
wiwbiz
replied to a thread
help with hobby programming in C++
in
Visual C++ Programming
Thank you for replying. But same problem persists with your code as well as I tried it. As mentioned in the comments in code itself, this...
see more
10 replies | 673 view(s)
June 12th, 2022,
04:10 AM
2kaud
replied to a thread
help with hobby programming in C++
in
Visual C++ Programming
There are various issues with variables being defined at global or function level and then at local scope level. As a start, this revised c++...
see more
10 replies | 673 view(s)
June 12th, 2022,
02:43 AM
VictorN
replied to a thread
help with hobby programming in C++
in
Visual C++ Programming
1. What task are you trying to solve with this code? 2. Define "with some glitch".
see more
10 replies | 673 view(s)
June 11th, 2022,
01:35 PM
wiwbiz
started a thread
help with hobby programming in C++
in
Visual C++ Programming
I am posting the C++ code I worked on . It is working, but with some glitch, and with slow execution. I need help with code optimization. Thanks. ...
see more
10 replies | 673 view(s)
June 11th, 2022,
04:31 AM
2kaud
replied to a thread
Implicit type conversion and time measurement.
in
Visual C++ Programming
The original question was When signed/unsigned operations are mixed, the signed will always be 'promoted' to unsigned. Then the operation is...
see more
5 replies | 328 view(s)
More Activity
No More Results
No Recent Activity
Click Here to Expand Forum to Full Width
Featured
*
The Best Reasons to Target Windows 8
Learn some of the best reasons why you should seriously consider bringing your Android mobile development expertise to bear on the Windows 8 platform.
*
Porting from Android to Windows 8: The Real Story
Do you have an Android application? How hard would it really be to port to Windows 8?
*
Guide to Porting Android Applications to Windows 8
If you've already built for Android, learn what do you really need to know to port your application to Windows Phone 8.
*
HTML5 Development Center
Our portal for articles, videos, and news on HTML5, CSS3, and JavaScript
*
Windows App Gallery
See the Windows 8.x apps we've spotlighted or submit your own app to the gallery!