Re: Error LNK1104 when debugging Programming Software Development by rproffitt … the SYNTAX may appear correct I find myself in Visual Studio setting a debgu break on the LOC and examining the…. Also you have to other issue of an outdated Visual Studio. I could not find documentation on this so it's… Re: Error LNK1104 when debugging Programming Software Development by Mr.M I've recreated a new project and it now doing the same thing. I will have to try creating it on a different pc just to see if the issue is with my pc or. Re: Android Native - How To Request Notification Permissions Programming Mobile Development by Inamullah_1 Great tutorial—thanks for sharing! Just a few quick additions: Starting with Android 13 (API 33), apps must request permission for POST_NOTIFICATIONS at runtime, while older versions allow notifications by default. It’s best to check the Android version before requesting this permission to avoid unnecessary prompts. Also, remember to handle the … Re: Web Services using ASP.NET Programming Web Development by WendyDolan hey I’m actually exploring something similar with ASP.NET and user validation, though i am on a newer version. but the core idea should be the same using a web service to handle login and registration logic sounds super practical. would also love to see an example if anyone has a simple one to share, especially using SQL Server with stored … Re: Error LNK1104 when debugging Programming Software Development by Mr.M I've managed to find the problem but I don't know how to fix this because what it complains with is there. `error c2143: syntax error : missing ')' before ';' ` Here's the code it's points to. `hResult = WFSExecute( hService, WFS_CMD_CDM_DISPENSE, &tDispense, TWO_MINUTES, &lpResult);` Re: Web Services using ASP.NET Programming Web Development by natashasturrock Hey! You’re on the right path — I’ve done this in a few custom .NET development projects using ASP.NET Core with SQL Server. The idea of using a web service to handle login and registration is solid and keeps things clean. Here’s what usually works: Create a stored procedure in SQL Server that takes the email and password as parameters, … Re: Error LNK1104 when debugging Programming Software Development by Mr.M I've checked every line but still, I even commented out the entire code but the problem still persist. What I've just noticed is that when I connect my laptop to an internet connection once Avast AV shows on screen then this error comes. I have to restart the entire computer and disconnect it from the internet then it will run proper. Re: Error LNK1104 when debugging Programming Software Development by Mr.M This is very strange, if I change this code `hResult = WFSExecute( hService, WFS_CMD_CDM_DISPENSE, &tDispense, TWO_MINUTES, &lpResult);` To `hResult = 0;// WFSExecute( hService, WFS_CMD_CDM_DISPENSE, &tDispense, TWO_MINUTES, &lpResult);` The project does run successful but if I remove `0;//` the errors are returned which the … Re: Error LNK1104 when debugging Programming Software Development by rproffitt I'm checking page 57 of https://www.cencenelec.eu/media/CEN-CENELEC/AreasOfWork/CEN%20sectors/Digital%20Society/CWA%20Download%20Area/XFS/16926-1.pdf Your next tasks are to verify each of the passed parameters are valid. Re: Error LNK1104 when debugging Programming Software Development by Mr.M I've checked even with the NCR document it's correct. Page 57 of the document you are referring to has just one code on my end Re: Error LNK1104 when debugging Programming Software Development by rproffitt Remember I can't check that your declarations are correct for the variables you are passing. -> File a ticket to their support. Re: Error LNK1104 when debugging Programming Software Development by rproffitt For clarity. By "correct" you would be printing those variables to the debug output and not just looking at the syntax. If you only look at the LOC then that's a sin tax. 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: Web Services using ASP.NET Programming Web Development by rajshah85412 …: Create a New ASP.NET Web Service Project In Visual Studio 2008: Create a new website project using the "ASP… test. Use the built-in browser test interface in Visual Studio to simulate registration and login. Step 6: Integrate with Your… Re: Error LNK1104 when debugging Programming Software Development by toneewa I've seen this happen from Windows Defender nuking Visual Studio's compile process. Make sure the PC is set to … Re: Error LNK1104 when debugging Programming Software Development by Salem > 1>C:\Users\mypcname\Documents\Visual Studio 2010\Projects\myprojectname\Debug\myprojectname.exe : fatal error LNK1120: 16 … Re: Web Services using ASP.NET Programming Web Development by Dani > Visual Studio 2008? Yes, the OP specified they are using VS 2008. > Also 12 years late. Not only *not* against the rules, but also not discouraged on DaniWeb. That's the beauty of forums that live on for decades. Re: Error LNK1104 when debugging Programming Software Development by Mr.M I tried saving logs and going through it but I don't see where it indicate where's the problem. 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 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 … 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: Cannot run exe from asp.net Programming Web Development by Neil_brown001 … caching or differences in how IIS reads settings versus Visual Studio. Why the port number is different When you run your… site in Visual Studio, it uses a development web server (Kestrel or IIS Express… Re: Cannot run exe from asp.net Programming Web Development by lennyli … caching or differences in how IIS reads settings versus Visual Studio. > > Why the port number is different > When… you run your site in Visual Studio, it uses a development web server (Kestrel or IIS Express…