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
Filter by:
Popular
Last 30 Days
Clear All
New Activity (
)
Please reload this page to view the 200+ new activity items that have been created.
Older Activity
November 10th, 2023,
07:27 AM
zio_mangrovia
started a thread
structure sockaddr
in
Network Programming
What is reason to put data (ip, port) into structure of sockaddr to use connect primitive or bind ? It could to be easier to pass as single...
see more
3 replies | 3985 view(s)
November 8th, 2023,
09:56 AM
nector2014
started a thread
Winsock with VBA failing to connect
in
Visual Basic 6.0 Programming
I need help on the code below, I'm able to start Winsock with VBA library below or initialize , but I'm failing to connect to my local machine with...
see more
2 replies | 3606 view(s)
November 26th, 2023,
03:51 PM
toneym
started a thread
Given a list of sorted lists, return a merged sorted list
in
C++ (Non Visual C++ Issues)
I wrote this naïve code to make a sorted lists out of three sorted lists: import std.compat; using intLst = std::forward_list<int>; intLst...
see more
7 replies | 2349 view(s)
November 8th, 2023,
09:12 AM
zio_mangrovia
started a thread
fflush(stdout)
in
C++ (Non Visual C++ Issues)
If I want to write code for C89 It's necessary to use fflush(stdout) during message print to output ? E.g. with printf("message") .
see more
5 replies | 2634 view(s)
November 8th, 2023,
02:06 AM
J2Int
started a thread
rebuid for ARM
in
Visual C++ Programming
Hi, Got an old project, rebuilt it for Intel using VS2015. How to build the same for ARM?. Got mfc140.lib missing, etc.
see more
0 replies | 2791 view(s)
November 10th, 2023,
07:24 AM
zio_mangrovia
started a thread
network down with socket effects
in
Network Programming
I'm writing network app client/server with tcp persistent connection. If network went down, both client and server socket are kept opened, they are...
see more
5 replies | 2138 view(s)
November 14th, 2023,
09:06 AM
Sergmyr
started a thread
Where is Administration forums.codeguru.com ??
in
General Developer Topics
Where is administration? I'ts important. Thank.
see more
3 replies | 2110 view(s)
November 17th, 2023,
11:57 AM
Sergmyr
started a thread
How to change my password forums.codeguru.com ??
in
General Developer Topics
Can you tell me how can I change my password? What am I doing wrong? Please tell me. Yours faithfully. x
see more
0 replies | 2586 view(s)
November 20th, 2023,
04:50 AM
Nathan D
started a thread
Swagger Integration in Spring Boot: API Documentation Challenges
in
Java Programming
I'm currently working on a Spring Boot project and integrating Swagger for API documentation. While the basic setup is clear, I'm facing challenges...
see more
0 replies | 2399 view(s)
November 16th, 2023,
09:24 AM
Sergmyr
started a thread
How to answer forums.codeguru.com ??
in
General Developer Topics
Can't answer an existing topic, what should I do ?? Maybe I'm doing something wrong? Please tell me. Yours faithfully. *** Post...
see more
2 replies | 1596 view(s)
November 15th, 2023,
10:48 AM
Sergmyr
started a thread
How to create a topic at forums.codeguru.com ??
in
General Developer Topics
Are there any of the moderators? How to create your first post. Yours faithfully.
see more
1 replies | 1201 view(s)
November 28th, 2023,
10:46 PM
OneEyeMan
started a thread
Implicit conversion loses integer precision
in
C++ (Non Visual C++ Issues)
Hi, ALL, I am doing a cross-platform programming using C++ cross-platform library. At one point of time my program needs to read the value from...
see more
1 replies | 1048 view(s)
November 30th, 2023,
12:06 AM
adpulse
started a thread
How to use npm in Windows in VC++
in
Visual C++ Programming
I'm trying to start a server in a window. I want to see the command's results, which is a webpage. But it doesn't show anything anywhere, even if I...
see more
0 replies | 900 view(s)
December 4th, 2023,
08:23 AM
VictorN
replied to a thread
Given a list of sorted lists, return a merged sorted list
in
C++ (Non Visual C++ Issues)
Dear samstonee30, if you will try to spam again then you'll be banned permanently.
see more
7 replies | 2349 view(s)
December 4th, 2023,
08:05 AM
samstonee30
replied to a thread
Given a list of sorted lists, return a merged sorted list
in
C++ (Non Visual C++ Issues)
agree thanks you help me too.
see more
7 replies | 2349 view(s)
November 29th, 2023,
04:46 AM
2kaud
replied to a thread
Implicit conversion loses integer precision
in
C++ (Non Visual C++ Issues)
It looks like for OSX long uses more binary bits than for an int. For Windows int is 32 bit and so is long. For 64 bit you need long long. For OSX...
see more
1 replies | 1048 view(s)
November 29th, 2023,
03:30 AM
Steve R Jones
replied to a thread
Software/business trends reports
in
General Discussion / Chit Chat
Sawyer Blake - Did you happen to notice the DATE that this thread was started?
see more
2 replies | 1870 view(s)
November 28th, 2023,
04:36 AM
Sawyer Blake
replied to a thread
Software/business trends reports
in
General Discussion / Chit Chat
The choice of the right programming language for cross-platform mobile app development depends on various factors such as project requirements,...
see more
2 replies | 1870 view(s)
November 27th, 2023,
11:49 AM
2kaud
replied to a thread
Given a list of sorted lists, return a merged sorted list
in
C++ (Non Visual C++ Issues)
If you have to 'roll your own' merge, then using insert_after as suggested by salem_c above consider: #include <forward_list> #include...
see more
7 replies | 2349 view(s)
November 27th, 2023,
11:19 AM
2kaud
replied to a thread
Given a list of sorted lists, return a merged sorted list
in
C++ (Non Visual C++ Issues)
OK. Then consider: int main() { intLst l1 { 1, 5, 6 }, l2 { 4 }, l3 { 2,3,7,8 }; l1.merge(l2); l1.merge(l3); std::ranges::copy(l1,...
see more
7 replies | 2349 view(s)
November 27th, 2023,
08:29 AM
toneym
replied to a thread
Given a list of sorted lists, return a merged sorted list
in
C++ (Non Visual C++ Issues)
Sorry, I should have said that this is an exercise and using `std::forward_list` is mandatory. @salem Perhaps this way: // ... intLst res;...
see more
7 replies | 2349 view(s)
November 27th, 2023,
05:24 AM
2kaud
replied to a thread
Given a list of sorted lists, return a merged sorted list
in
C++ (Non Visual C++ Issues)
Why use forward_list and not a list? Using a list makes life much easier by allowing use of std::merge. Consider: #include <iostream> #include...
see more
7 replies | 2349 view(s)
November 27th, 2023,
12:30 AM
salem_c
replied to a thread
Given a list of sorted lists, return a merged sorted list
in
C++ (Non Visual C++ Issues)
Why not use insert_after, and save a lot of reversing. https://en.cppreference.com/w/cpp/container/forward_list/insert_after
see more
7 replies | 2349 view(s)
November 21st, 2023,
02:46 AM
Steve R Jones
replied to a thread
attendance monitoring system
in
C++ (Non Visual C++ Issues)
michaelmackay - ALL Companies are concerned about monitoring absences of their employees. And as you know - ALL Companies currently have some sort...
see more
7 replies | 12438 view(s)
November 20th, 2023,
04:12 PM
michaelmackay
replied to a thread
attendance monitoring system
in
C++ (Non Visual C++ Issues)
still no response
see more
7 replies | 12438 view(s)
November 16th, 2023,
10:07 AM
VictorN
replied to a thread
How to answer forums.codeguru.com ??
in
General Developer Topics
Check out this FAQ
see more
2 replies | 1596 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!