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
Today,
09:03 AM
VictorN
replied to a thread
Android Studio 2022.3.1 reports error The emulator process for AVD xxx has terminated
in
Wireless/Mobile Development
Didn't Google help you?
see more
1 replies | 37 view(s)
Today,
07:56 AM
salem_c
replied to a thread
Sqlite / C++
in
Visual C++ Programming
At a guess, not all the wrappers are the same. Try breaking the requests up. void ClegisView::OnBnClickedButton() { querySQL = "DELETE...
see more
3 replies | 344 view(s)
Today,
04:32 AM
dongtrien
started a thread
Visual Studio Code on win7 reports error: (node:6732) UnhandledPromiseRejectionWarnin
in
Wireless/Mobile Development
Visual Studio Code on win7 reports error: (node:6732) UnhandledPromiseRejectionWarning ? Installing Visual Studio Code on win7 64bit when running...
see more
0 replies | 63 view(s)
Today,
04:24 AM
dongtrien
started a thread
Android Studio 2022.3.1 reports error The emulator process for AVD xxx has terminated
in
Wireless/Mobile Development
I installed Android Studio 2022.3.1 on win10 pro, created a virtual machine successfully, but when running I got an error: Device Manager "The...
see more
1 replies | 37 view(s)
Yesterday,
04:34 PM
apfal
replied to a thread
Sqlite / C++
in
Visual C++ Programming
Thank you for the answer I receive the following error messsage "database table is locked" As I have said, the statement only executes the two...
see more
3 replies | 344 view(s)
Yesterday,
12:56 PM
salem_c
replied to a thread
Sqlite / C++
in
Visual C++ Programming
https://www.sqlite.org/c3ref/exec.html 1. It returns a result. You should examine the result to see if it tells you anything. 2. err is a...
see more
3 replies | 344 view(s)
Yesterday,
10:33 AM
apfal
started a thread
Sqlite / C++
in
Visual C++ Programming
I've created an sqlite application with Visual Studio C++, which works correctly. However, I cannot reorder indexes, after deleting a record -...
see more
3 replies | 344 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 | 3013 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 | 3013 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 | 1011 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 | 1157 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 | 2212 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 | 1157 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 | 2212 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 | 3013 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 | 3013 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 | 3013 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 | 3013 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 | 3013 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 | 3013 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 | 12572 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 | 12572 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 | 2637 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 | 2802 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 | 1705 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!