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. Is anyone using ChatGPT in French for programming tasks? Programming by kakasi63 …-speaking devs. I’ve also used it to debug PHP code and translate error messages with pretty accurate explanations. There’s… Re: Crosshair has a vertical and horizontal line to view the value of the axis. Programming Software Development by rproffitt Sorry but I only have VS2008 and VS2022 now. But for a real-time crosshair that moves with the mouse, showing its position along the X and Y axis I asked ChatGPT and it appears to only need less than 20 lines of code that respond to Chart1_MouseMove(). Re: Crosshair has a vertical and horizontal line to view the value of the axis. Programming Software Development by Dani … with AI is to give it very short bits of code to write at a time. If you ask it to… 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: How do I make my code jump back to a previous line? Programming by Dani Organizing code into functions is always important for readability and also to be able to reuse parts of your code as your app gets bigger. Thank you for posting your updated code to share with others :) How do I make my code jump back to a previous line? Programming by trueriver …. Right now, I set the variable to 0 but the code was after the loop. How do I fix this? import… print("Please log in") time.sleep(1) #Login code while n == 0: if incorrectLogin is True: User_input = input("… Re: How do I make my code jump back to a previous line? Programming by trueriver updated my code... everything is fixed :) i made functions import time import sys #… Re: How do I make my code jump back to a previous line? Programming by woooee if sysInfo.lower() in ["exit", "Exit", "EXIT"]: since sysinfo is now lower(), it will never be equal to "Exit" or "EXIT" Re: Dynamic Properties in PHP 8.2 Programming Web Development by Dani … a whim defeats the purpose of organizing and structuring your code by having the class in the first place. Nevertheless, I… User object or something of that sort. However, if your code requires a quick way of creating and working with a… should suffice. Doing a cursory glance at some of my code, I've used this in places where an object is… Re: Need Coding Help With A Project Programming Software Development by Dani … one should ever be made to feel dumb for any code they post, no matter how wrong it might be. I… up and ask their own questions or post their own code for fear of being made to look stupid. > I… Dynamic Properties in PHP 8.2 Programming Web Development by Dani … and sort through and refactor a lot of old, crusty code that was not written by you, there's an easy… Re: Convert jQuery to native Javascript Programming Web Development by polcreation > I know that this is probably a hopeless question, but are there any automated scripts that would *reliably* and *automagically* convert my thousands upon thousands of lines of jQuery code into native Javascript? Maybe try Haxe.org Safely upload a file Programming Web Development by Dani Here's a quick bit of code to upload a file in PHP. Re: How to show visa info based on country selection in a travel form? Programming Web Development by Dani … it appropriately. Can you please provide the Javascript code as well as PHP code that is buggy so that we can help… is most likely because of a bug in the PHP code. If the DOM doesn't reflect the new message, then… PHP instead of PHP utilizing a database? Please provide your code :) Re: Error LNK1104 when debugging Programming Software Development by toneewa … - expected a newline Hard to say without seeing code. Some cases m_hservice may require you to use the…quot;\n"; std::cout << "Raw Version Code: " << std::hex << m_dwRVersion …for 'wuauserv'. Service Version: 1.6.10 Raw Version Code: 1060a Failed to start service. Error: 1056 //already … Re: Error LNK1104 when debugging Programming Software Development by wwwalker …'t be compiled with missing libraries. In C and C++ code, the library header includes are at the top of the….g.: #include <iostream> Go through each error where code requires a library to be linked and add those includes… and hopefully you have linked all relevant libraries for your code to compile and a valid .exe file will be generated… Re: Error LNK1104 when debugging Programming Software Development by Mr.M …. What I will do is try commenting out all the code and try debugging and see if it will debug and… if it does I will uncomment one line of code at a time and see if I will figure out… Re: How to show visa info based on country selection in a travel form? Programming Web Development by Biiim …'] = true;` then populate the form based on a selected country code) but it is up to you as long as you… saving the PHP script always checks the database or PHP code for the actual value. Real users don't mess with…="h6 mb-0 input-group-text">Phone Code</p> <input type='text' id='phone'/>… 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 Salem …@@$$Q3GA) You need to define these symbols somewhere in your code for it to compile an executable. Re: Error LNK1104 when debugging Programming Software Development by Mr.M … never used Git before. I've commented out all the code but still. What I think might be producing this problem… Re: Error LNK1104 when debugging Programming Software Development by toneewa … easier to just start a new project and copy the code and redo the library with the default icon and practice… Re: Handling Performance Issues in TreeView for Large MLM Networks Programming Software Development by Reverend Jim Two possible ways to handle this: 1. Populate the tree in a separate thread 2. Only populate sub-nodes as required to view You can do option 2 by putting the "populate directly under this node" code in the event that gets triggered when you select a node. Re: Important web design and development techniques? Digital Media by Eckert …, follow SEO best practices, optimize images, and write clean, maintainable code. Also, using version control (like Git) is a must. Keep… Re: How to connect to the Pinterest API using PHP? Programming Web Development by geekinformatic Hey! If you're using the CakePHP framework, you can connect to the Pinterest API with cURL and OAuth integration. Just follow Pinterest’s API docs for endpoints and token handling. Re: Need Coding Help With A Project Programming Software Development by Enzo_3 I was working on a similar assignment where I had to compute the average of numbers from a text file using higher-order functions like map() and reduce(). I was really stuck on how to incorporate them meaningfully, but I finally figured it out. Here's how I approached it using Python: from functools import reduce with open('… Re: Need Coding Help With A Project Programming Software Development by Reverend Jim I don't know why you would use `reduce` and `lambda` when you could just do sum(numbers) And the directive >You should make use of two higher-order functions (i.e., map and reduce, or something else) to simplify the design. is self-contradictory as using `map` and `reduce` instead of `sum` does not simplify the design. It … Re: Need Coding Help With A Project Programming Software Development by Reverend Jim >Why put them down? Please explain to me how anything I said was a put down. If someone told me their methof of counting cows was "count the number of legs and divide by four", I would point out that it would be simpler just to count the number of cows. If I said "That's stupid, just count the cows", then that would be a … Re: Dynamic Properties in PHP 8.2 Programming Web Development by Dani Oh, and an important bit I forgot to mention: PHP's built-in stdClass has the `#[AllowDynamicProperties]` attribute already added. In fact, you can see in the [PHP docs](https://www.php.net/manual/en/class.stdclass.php) that the definition of the stdClass is "a generic empty class with dynamic properties." That means that you can always …