Re: Error LNK1104 when debugging Programming Software Development by rproffitt Since the file is not generated, try a full compile. Be sure you change to Debug for this build. You usually can't debug what you didn't compile. Example: There were compile or build errors which stopped the creation of the .exe file. But no mention of compile errors so I wouldn't write about that here. Re: Error LNK1104 when debugging Programming Software Development by rproffitt Here's a page about how to create and view your VS log files to point you to where or why the compile failed. https://learn.microsoft.com/en-us/visualstudio/ide/how-to-view-save-and-configure-build-log-files?view=vs-2022 Re: C++ College Prank Programming Software Development by cirol Pranks can be fun, but fake viruses might cause real worry and problems. It’s best to use your skills in ways that don’t upset or confuse others. Re: Optimizing working with big data Programming Software Development by ThinkWriteGrow > What are some best practices for optimizing memory management when working with large datasets? > > I am tagging this topic both with php (because that is my language of choice, and the 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… Error LNK1104 when debugging Programming Software Development by Mr.M Hi DW, I'm getting this error when I try to debug, it says it can't open `"c:\users\myusername\Documents\Visual Studio 2010\Projects\myprojectname\debug\myprojectname.exe"` How can I solve this? Re: Error LNK1104 when debugging Programming Software Development by rproffitt Given only this I won't be able to do more than comment how I use the Visual Studio system to debug my app. 1. I open the project. 2. I set the build to "Debug". 3. I set breakpoints on lines of code I suspect to be problematic. 4. I run the app while in Visual Studio. That's usually enough to track down what I did wrong. Re: Error LNK1104 when debugging Programming Software Development by Dani When you browse the file system, does that file exist and is it accessible by the logged-in user? (Sorry, no VS experience.) Re: Error LNK1104 when debugging Programming Software Development by Mr.M @rproffitt I tried that with no luck Re: Optimizing working with big data Programming Software Development 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: 💻 What’s the First App You Install on a Fresh Windows Machine? Hardware and Software Microsoft Windows by Reverend Jim >I'm quite sure that you can, if I remember correctly? Before OneDrive it was easily done. Not anymore. Microsoft is slightly brain dead. Locations for shell folders are stored in the registry. You'd think they'd all be under "Shell Folders", but not all of them are. And you'd think they would have consistent names. But here are … Re: 💻 What’s the First App You Install on a Fresh Windows Machine? Hardware and Software Microsoft Windows by Reverend Jim Further note: Because Microsoft insists on crammine OneDrive down our throats, moving the My Documents is damn near impossible. I've found the easiuest way is to initially set up my computer using a Microsoft Account (something they have also made it almost impossibole to avoid), then create a local admin account and always log on with that. That … Re: Remove Qemu/kvm snashots Hardware and Software Linux and Unix by Dani Salem linked to it (thank you!), but it seems succinct enough that I'm going to include it here in case the link were to disappear in the future. # qemu-img snapshot [ -l | -a snapshot | -c snapshot | -d snapshot ] filename -l: lists all snapshots -a: reverts the image to the snapshot -c: creates a snapshot -d: deletes the snapshot Re: Getting in touch with Cloudflare billing Hardware and Software Cloud-based Apps by toneewa If you have the enterprise plan you should have an emergency phone option under support. Cloudflare also has a 24/7 Emergency Hotline at +1 (866)-325-4810. There's a Live Chat option for Business. Call their sales number and get some answers. +1 (888) 99 FLARE A disputed charge back on a C/C always gets their attention, and billing would … Re: Getting in touch with Cloudflare billing Hardware and Software Cloud-based Apps by Dani > If you have the enterprise plan you should have an emergency phone option under support. Cloudflare also has a 24/7 Emergency Hotline at +1 (866)-325-4810. There's a Live Chat option for Business. Call their sales number and get some answers. +1 (888) 99 FLARE > > A disputed charge back on a C/C always gets their attention, and … Re: 💻 What’s the First App You Install on a Fresh Windows Machine? Hardware and Software Microsoft Windows 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: How to make an Iphone App? Programming Mobile Development by jonathannweyer One thing to keep in mind when planning an iOS app is the hardware and software constraints specific to Apple’s ecosystem, like limited background tasking or stricter App Store guidelines. Picking the right programming language, whether it's Swift or Objective-C, really depends on your team's experience and long-term plans. Also, if you're building… Re: how can I build or make new programming language Programming by Dani You could ask [this guy](https://www.daniweb.com/profiles/1010298/bjarne-stroustrup-31) ;) [Here's the full interview](https://www.daniweb.com/programming/software-development/interviews/313564/interview-with-bjarne-stroustrup-creator-of-c) Re: Anti-Hotlinking Script for WP on Apache (.htaccess) - Linkspam Prevention Programming Web Development by Dani CDNs such as Cloudflare offer hotlink protection via a toggle switch you could enable. But, yeah, the primary benefit of hotlink protection is that a website doesn't upload images to *your* site, and then include them in their own site without having to pay for the bandwidth of hosting the images. Just make sure that if you turn on hotlink … Re: Segmentation Fault in C++ Program – Need Debugging Programming Software Development 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 by YashSmith I’m getting a segmentation fault in my C++ program when trying to access an array element. Here’s my code: #include <iostream> using namespace std; int main() { int arr[5]; cout << arr[10]; // Accessing out-of-bounds index return 0; } How can I prevent this memory access issue? Re: Segmentation Fault in C++ Program – Need Debugging Programming Software Development 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 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 by Salem It should be obvious by now from their posting history that the OP is a troll. Optimizing working with big data Programming Software Development by Dani What are some best practices for optimizing memory management when working with large datasets? I am tagging this topic both with php (because that is my language of choice, and the 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 this topic … Implementing a Dynamic Filter Option in a Web Application Programming Software Development by YashSmith If you want to add a dynamic filtering option in your web application, here’s a simple and effective solution using React. This filter allows users to search by keyword, set minimum and maximum values, and filter by category. import React, { useState } from "react"; const DataFilter = ({ data }) => { const [… Re: Show computer name on a label Programming Software Development by toneewa For VS2010 project support in VS2022, to compile your example I did the following: Created header stdafx.h: #pragma once #include <iostream> #include <fstream> #include <sstream> #include <string> #include <Windows.h> #include <WinSock.h> #include <msclr/… Re: Show computer name on a label Programming Software Development by toneewa To get the VS2010 Visual C++ Windows Forms with VS2022 to work, I did the following: With your Visual Studio Installer make sure the .NET Desktop Development and Desktop Development with C++ workloads are installed. Created mr_m.h #pragma once #include <windows.h> using namespace System; using namespace System::… Re: Show computer name on a label Programming Software Development by Mr.M I'm using Microsoft Visual Studio 2010 (Visual C++ Windows Form Project). Regarding the test yes it doe compile/build/run with no error. Here are the includes #include "stdafx.h" #include <iostream> #include <fstream> #include <sstream> #include <string> #include <Windows.h>… Re: Show computer name on a label Programming Software Development by Mr.M I've managed to find a solution on my own and it was something so simple, I'm not sure why C++ programmers were unable to pick this up. Basically I need to output `ComputerName` using `gcnew String()` so it be `label9->Text = gcnew String(ComputerName);` Thanks to everyone who tried hepling. I will try to find out what does this means and … Re: Optimizing working with big data Programming Software Development 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.