Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
c++-cli
- Page 1
Re: Optimizing working with big data
Programming
Software Development
20 Hours Ago
by whackksports
Utilizing efficient tools and techniques, such as data filtering, storage solutions, and analytics platforms, is essential for optimizing work with big data. Automating processes, leveraging cloud computing, and ensuring scalability are also required.
Re: How to make an Iphone App?
Programming
Mobile Development
1 Day Ago
by jonathannweyer
… the right programming language, whether it's Swift or Objective-
C
, really depends on your team's experience and long-term…
Re: 💻 What’s the First App You Install on a Fresh Windows Machine?
Hardware and Software
Microsoft Windows
1 Week Ago
by Reverend Jim
…1. My Music B:\My Music 2. My Pictures
C
:\Users\rjdeg\OneDrive\Pictures 3. My Video D:\My… Videos D. Personal
C
:\Users\rjdeg\OneDrive\Documents Note that I numbered the … installed Windows) I had to resort to going to
C
:, renaming the target folder to <folder>.old…
Re: Cannot run exe from asp.net
Programming
Web Development
2 Weeks Ago
by lennyli
…it waited a few seconds, then output the error:
C
:\Users\maxwi>python client.py Traceback (most recent …call last): File "
C
:\Users\maxwi\client.py", line 18, in <…;module> main() ~~~~^^ File "
C
:\Users\maxwi\client.py", line 6, in main client_socket…
Re: 💻 What’s the First App You Install on a Fresh Windows Machine?
Hardware and Software
Microsoft Windows
1 Week Ago
by Reverend Jim
… D is so that I can restore an image to
C
if necessary without losing any user files. With OneDrive active…, anything that goes into My Documents gets stored on
C
. Not only that, but those files get copied to the…
Re: Cannot run exe from asp.net
Programming
Web Development
3 Weeks Ago
by lennyli
… Dim command Dim result ' Path to the executable command = "
C
:\inetpub\wwwroot\ribbons.scr" ' Create a shell object Set…
Re: 💻 What’s the First App You Install on a Fresh Windows Machine?
Hardware and Software
Microsoft Windows
1 Week Ago
by Reverend Jim
First app is Macrium Reflect so I can take an image of the fresh install. Then I repartition to
C
/D, move my user folders (documents, pictures, etc.) to D. Then I take another image. After that I begin installing my base apps before imaging one more time.
Re: which language do i start leaning in 2025
Programming
Software Development
4 Weeks Ago
by retseaz77
Great question! In 2025, some of the most practical and trending languages to learn include: Spanish – widely spoken and super useful for travel and business Mandarin Chinese – huge global economy advantage French – still very relevant in international diplomacy and culture Python (if you meant programming) – still one of the top …
Re: Segmentation Fault in C++ Program – Need Debugging
Programming
Software Development
1 Month Ago
by rproffitt
Thanks for the MVE (minimum viable example). But it's just bad code.
c
,
c
++ and a lot of language won't stop you from going out of bounds.
Segmentation Fault in C++ Program – Need Debugging
Programming
Software Development
1 Month Ago
by YashSmith
I’m getting a segmentation fault in my
C
++ program when trying to access an array element. Here’s …
Re: Segmentation Fault in C++ Program – Need Debugging
Programming
Software Development
1 Month Ago
by Reverend Jim
Don't try to access past the end of the array.
Re: Segmentation Fault in C++ Program – Need Debugging
Programming
Software Development
1 Month Ago
by Dani
You’re creating an array of 5 integers and then trying to access the 11th integer in the array (assuming the indexes start at 0). You’re getting an out of bounds error because you’re trying to access an array element that doesn’t exist. You can access arr[0] up through arr[4].
Re: Segmentation Fault in C++ Program – Need Debugging
Programming
Software Development
1 Month Ago
by Salem
It should be obvious by now from their posting history that the OP is a troll.
Hello everyone, I'm threedslider
Community Center
Say Hello!
2 Months Ago
by threedslider
Hello to all, I am developer of
C
++ (intermediate by self-taught) and I would like to have some friends here to make as fun learning and to exchange some knowledge in
C
++ and Computer graphic, are you agreed on that ? :) Thank you !
Optimizing working with big data
Programming
Software Development
1 Month Ago
by Dani
… one I work with big data with) as well as
c
++ (because I know DaniWeb has a large low level…
c
++ community that is well suited to being able to delve … into depth, and because years ago when I focused on
c
++ myself, I was very focused on efficiency).
Implementing a Dynamic Filter Option in a Web Application
Programming
Software Development
1 Month Ago
by YashSmith
…;Category B</option> <option value="
C
">Category
C
</option> </select> </div…
Re: Show computer name on a label
Programming
Software Development
1 Month Ago
by Salem
…::String ^ You need to convert your char array to a
CLI
string in the first instance, before trying to pass it… onto some other function expecting a
CLI
string. https://learn.microsoft.com/en-us/cpp/extensions/string…
Re: Show computer name on a label
Programming
Software Development
1 Month Ago
by toneewa
…compile, I set the Properties. Configuration Properties->
C
/
C
++->General-> Common Language RunTime Support->…Support (/clr) Configuration Properties->
C
/
C
++->Code Generation-> Enable
C
++ Exceptions-> Yes with SEH …Exceptions (/EHa) Configuration Properties->
C
/
C
++->Code Generation-> Basic Runtime Checks->…
Re: Show computer name on a label
Programming
Software Development
1 Month Ago
by toneewa
…} I changed the Properties. Configuration Properties->
C
/
C
++->General-> Common Language RunTime Support->…Support (/clr) Configuration Properties->
C
/
C
++->Code Generation-> Enable
C
++ Exceptions-> Yes with SEH… Exceptions (/EHa) Configuration Properties->
C
/
C
++->Code Generation-> Basic Runtime Checks->…
Re: which language do i start leaning in 2025
Programming
Software Development
4 Weeks Ago
by Dani
… such as MySQL. I see you also tagged this topic
c
++.
C
++ is a popular language used for non-web related applications…
Re: Show computer name on a label
Programming
Software Development
1 Month Ago
by Mr.M
I'm using Microsoft Visual Studio 2010 (Visual
C
++ Windows Form Project). Regarding the test yes it doe compile/…
Re: Show computer name on a label
Programming
Software Development
1 Month Ago
by Mr.M
… it was something so simple, I'm not sure why
C
++ programmers were unable to pick this up. Basically I need…
Re: Optimizing working with big data
Programming
Software Development
1 Month Ago
by Salem
My first thoughts would be 1. What is large? Are we in the TB range or mere handfuls of GB? 2. How often do you need to do this? Is it once a day, once a month, or just once.
Re: Optimizing working with big data
Programming
Software Development
1 Month Ago
by Dani
> What is large? Are we in the TB range or mere handfuls of GB? For the sake of argument, let's use my use case and say dozens of gigs and millions of rows. > How often do you need to do this? Is it once a day, once a month, or just once. For me, the most important is real-time read and write performance to tables with millions of …
Re: Hello everyone, I'm threedslider
Community Center
Say Hello!
2 Months Ago
by Dani
Hi and welcome!! What got you interested in computer vision?
Re: Hello everyone, I'm threedslider
Community Center
Say Hello!
2 Months Ago
by threedslider
I am searching also for other peoples in computer graphics and share their knowledge as well :)
Re: How to Implement Lazy Loading for Faster Web Portals
Programming
Web Development
2 Months Ago
by jkon
… audits for metrics like LCP, Speed Index, CLS, e.t.
c
. those issues will also affect real Chrome users, ultimately having…
Re: How to Implement Lazy Loading for Faster Web Portals
Programming
Web Development
2 Months Ago
by Dani
… audits for metrics like LCP, Speed Index, CLS, e.t.
c
. those issues will also affect real Chrome users, ultimately having…
Re: How to Implement Lazy Loading for Faster Web Portals
Programming
Web Development
1 Month Ago
by Dani
… audits for metrics like LCP, Speed Index, CLS, e.t.
c
. those issues will also affect real Chrome users, ultimately having…
Re: How Can I Hookup My Mobile Phones To My PC Monitor ?
Hardware and Software
Hardware
Mobile and Wearables
1 Month Ago
by Fitmovers
If you want to connect your Samsung Galaxy A9 to your Dell E1916HV monitor, you'll need a USB-
C
to HDMI adapter (if your phone supports HDMI output). Since your phone has only USB ports, check if it supports Samsung DeX or screen mirroring via an MHL adapter. If your monitor only has VGA input, you might also need an HDMI to VGA converter.
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC