Re: Web Services using ASP.NET Programming Web Development by rajshah85412 … answer : You want to: Register new users to your website. Validate (log in) existing users using a web service. You will achieve… from the front-end forms to register or log in users. Re: Error LNK1104 when debugging Programming Software Development by toneewa I've seen this problem before with the .rc and resource.h files, when changing icons. Backup what you have. I remember I had to remove the resource files from the project, and the additional resource (e.g., resource1.h, resource2.h) generated headers from the project folder, when adding a new icon to replace the default. It's probably easier… Re: Error LNK1104 when debugging Programming Software Development by Salem > 1>C:\Users\mypcname\Documents\Visual Studio 2010\Projects\myprojectname\Debug\myprojectname.exe : … Re: How to show visa info based on country selection in a travel form? Programming Web Development by Biiim … the database or PHP code for the actual value. Real users don't mess with the javascript so just be aware… the system and stop it from working but the real users will just use it as you programmed it. I didn… Re: Error LNK1104 when debugging Programming Software Development by rproffitt Since no details such as logs were shared, others can't find Waldo. Re: Error LNK1104 when debugging Programming Software Development by Dani Can you please save the log as a text file and attach it as an attached file here? Much thanks! :) Re: Error LNK1104 when debugging Programming Software Development by Mr.M Here's the log, I had posted it yesterday I don't know what happened to it now or it was removed? Re: Error LNK1104 when debugging Programming Software Development by wwwalker When compiling no relevant libraries have been included for linker to link so the executable won't run as it can't be compiled with missing libraries. In C and C++ code, the library header includes are at the top of the page. E.g.: #include <iostream> Go through each error where code requires a library to be linked and add those … Re: Error LNK1104 when debugging Programming Software Development by rproffitt I followed the build process and when I hit OpenXFS_V0.0.0.5 I went looking for that project to see if folk were having build problems. Where is this OpenXFS project to be found? I worry this is from some Linux project and may not be ready for Win and VS2010. Re: Error LNK1104 when debugging Programming Software Development by toneewa I like the challenge, but hate when errors like these occur. Check for a syntax error on line 2 in starter.h starter.h(2): warning C4067: unexpected tokens following preprocessor directive - expected a newline Hard to say without seeing code. Some cases m_hservice may require you to use the .lib file Advapi32.lib it if it isn't automatically… Re: Error LNK1104 when debugging Programming Software Development by Mr.M I've tried doing the extern to all these variables but still. Let me clarify, the project was running fine, only started experiencing this in few weeks ago. Regarding the question about the OpenXFS project (Library) the library is here and it's linked. What I will do is try commenting out all the code and try debugging and see if it will … Re: Error LNK1104 when debugging Programming Software Development by Salem > Let me clarify, the project was running fine, only started experiencing this in few weeks ago.# https://en.wikipedia.org/wiki/Git Start using it. Every time you make forward progress, you make a commit. Every time you make a mess of it, you revert to the last known good state and try again. Re: Error LNK1104 when debugging Programming Software Development by Dani I will also add that Git is built into almost all IDEs. It's the default version control for Visual Studio 2019 and forward. Are you still using VS 2010? There are some Git plugins for VS 2010 as well: https://stackoverflow.com/questions/16989962/visual-studio-2010-2012-git-plugin Re: Error LNK1104 when debugging Programming Software Development by Mr.M Thanks, I've never used Git before. I've commented out all the code but still. What I think might be producing this problem is the resources. I added a new item then changed the default to a new icon. But I did run the project successfully that time. This is the only thing I suspect might be a result of this problem. How can I clean the … What Are the Key Elements of a Successful Website in 2025? Programming Web Development by Ramesh sharama … to be fast-loading, mobile-friendly, and accessible to all users. Strong user experience (UX), clean navigation, and clear calls to… 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: đź’» What’s the First App You Install on a Fresh Windows Machine? Hardware and Software Microsoft Windows by Yrth … directory on D: (or anywhere else), then go to C:\users\[username], delete the Documents folder (admin permissions required, probably), then… command like so: mklink /j "C:\users\\[username]\Documents" "D:\users\\[username]\Documents" Everything that expects the Documents… Re: Web3 Digital Marketing Agency Digital Media Digital Marketing by Dani … blockchain are *not* synonymous. Web3 is just all about giving users control instead of corporations and social networks retaining all the… other ways, a social network adopting a policy of its users owning their own posts equally achieves that, and is considered… Re: Is linux your daily driver? Hardware and Software Linux and Unix by trcooke … it fairly strongly, so I guess they're all Linux users now too :) Re: How to enable gpedit on Windows 10 & 11 Hardware and Software Microsoft Windows by AIO_803 Enabling **gpedit.msc** on Windows 10 or 11 (especially Home editions) is useful for gaining more control over system settings. While it’s not officially included in Home versions, there are workarounds—though users should proceed carefully to avoid system issues. Re: What are the key components of an effective email marketing campaign? Digital Media Digital Marketing by Advertising13 … prominent and easy to follow. Mobile-Friendly Design: With many users checking emails on mobile devices, responsive design is critical to… Re: How much anonymity does a VPN really provide? Hardware and Software Information Security by TurisVPN A VPN helps hide your IP and encrypt your internet, so others (like your ISP) can’t see what you do online. But it doesn’t make you totally anonymous. The VPN company can still see your traffic (if they keep logs). Websites can track you with cookies, and if you log in with your real info, they know who you are. So, a VPN is good for privacy … Re: How much anonymity does a VPN really provide? Hardware and Software Information Security by Liam91 A VPN is a tool that keeps your internet connection safe and private. It stops others from seeing what you do online. But a VPN doesn’t make you completely anonymous. To pick a good VPN, check: -How you pay (Bitcoin is more private than a credit card) -If they keep records of your activity (best if they don’t) -If they share IP addresses … Re: What Happened When We Applied Psychology-Backed Tweaks to a Funnel? Digital Media Digital Marketing by graceweb This was a fascinating read, Victor! The way you applied psychological principles like authority bias and loss aversion really shows how impactful small tweaks can be. I especially appreciated the emphasis on emotional storytelling, it’s often overlooked but clearly powerful. Thanks for sharing such actionable insights! Re: What Are the Key Elements of a Successful Website in 2025? Programming Web Development by Reverend Jim Those guidelines have essentially applied to any software with a user interface over the last fifty years. Reminds me of a scene from"Third Rock From the Sun". Don (policeman) talking about a cop's life, ends with "and any day you come home alive is a good day." Tommy replies, "isn't that pretty much a good day for … 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: 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