5,430 Posted Topics
Re: If you want to have others do assignments like this then it's posted as a for-hire post along with payment rates. Copy pasting homework is not going to get folk to help you out. What may work is to share where you are stuck such as: "Here's my code but … | |
Re: You seem to have forgetten to share code, links and more. Pretty much like you went to the Ford repair shop but you own a Tesla but didn't bring the car? | |
Re: If I were building today I'd look at PCMR https://www.reddit.com/r/PCMasterRace/wiki/builds for the basic machine (there's Intel and AMD builds.) Then because you want to play UHD 4K video I'd tweak those up to say at least the RTX 2060. Why? https://www.reddit.com/r/nvidia/comments/9qeu7f/gtx_1060_6gb_watching_4k_movies/ Another thing is that I'd never build such with … | |
Re: If this was mine I'd step back to see what this code does and then write it in the language and methods of my choice. As I read through your code dump it doesn't look terribly complex and may be as simple as 1. Present a menu. 2. Get a … | |
Re: Since this is not homework, why not use the web and go get a working app with source code? https://www.google.com/search?client=opera&q=Phone+book+project+using+linked+list seems to find them. | |
Re: Your request is unclear and you didn't share your code so far with what error you received. If this is a request to write your app for you be sure to publish the full specification and payment rates. | |
Re: Generic answer: Iterate over the table shown and total up what you want then display as you wish. There are thousands of discussions about picking up what's in that table so that can't be the issue or block. | |
Re: While you didn't show your work, no manager would limit themselves to C++. Today if I were to do this I'd not code up this in C++ but create a web page with the usual server backend maybe with MySQL, Python and such. This way the system would scale and … | |
Re: I'm not absolutely sure that line 6 with ZXC is a unicode string. It might need to be prefixed with the letter u as this example: `ZXC = u"m’a réveillé"` | |
![]() | Re: Light bulbs work differently so it's not a good analogy. Maybe a chain is a better one as one bad link and the chain fails to do its job. I've purposely not started a lesson on computer architecture here. |
Re: That's nearly 100 lines of code, and I don't see "last" or "text" so you'll have to point out what text you are asking about along with the line number. | |
Re: Try again. | |
Re: For line 28, try another way such as noted at http://www.cplusplus.com/reference/istream/istream/getline/ | |
Re: You have over 100 lines of uncommented code. There may be files involved. Why not use a nice IDE you can debug in? I'm running into students that attempt to use the command line and come back worse for wear. | |
Re: https://www.google.com/search?q=submit+html+without+server looks to find the priors but let's go with no server. Rather than submit, why not tackle this with passing the value in the URL? https://www.w3schools.com/nodejs/nodejs_url.asp shows how to parse that URL and get what you passed along. | |
Re: Tell more about how they logged into the database. | |
Re: You must know by now that "Resizing images without loss of quality" is not possible. Decrease the pixel count and you lose pixels. Increase the pixel count and the new pixels have to be created by code or guessing. As such I take it you thought there was something that … | |
Re: Too vague a question. But let's try this. Forget the IP for a moment and if you want to know the unique PC or device, look up it's MAC address which for most setups is static. Now if some newbie IT staff thinks this is a solid solution to tracking … | |
Re: Since the base C++ as we know it libraries are not about the GUI you have to decide which OS and library you want to use. Or if you are on Windows you can go get the free community version of Visual Studio and start a graphical C++ app. Then … | |
Re: We changed to WD in 2015 and no infections so far. Now this doesn't work for a few that torrent apps and disable WD so if you have someone that pushes their luck then they will have issues no matter which antivirus system they use. | |
Re: Can you clear up which line that you feel should show an image and does not? I might guess the line with Grass.jpg but as others replied "There is a lot of code without any explanation." I have to agree. I'd also want to know if this code is from … | |
Re: Welcome. Always nice to see where folk are from. Sunny San Diego, USA here. | |
Re: Amaresh_1, that's not how it works. You buried your question in some 8+ year old dead discussion. If you want folk to get in there, don't bury your questions like this. | |
Re: I hear you. My son's job at Whole Wallet (Foods) has him exposed to so much. Only 25 and still not accepting how he needs to get more proactive with the hand washing as well as using hand sanitizer regularly. Before this job, rarely a sniffle. Now it's every few … | |
Re: Yes. The programmer reads the code, and either writes the new app or tries to convert it line by line. Said programmer would have to work at it but once in a while you find one that is looking for a cheap fast exit. | |
Re: Sadly the app appears to have fake reviews. Why are you endorsing this? | |
Re: I'm going to write that for a few apps we did this was not an option since we used Bluetooth with the serial port profile and we had to turn back to native development. That is we ended up with apps using Android Studio and Visual Studio (Windows.) If you … | |
Re: Here's the research on that. Pick over priors at https://www.google.com/search?q=Arduino+Accelerometer%3A+detect+braking%2F+deceleration 1. You have to filter the input (some call this averaging.) 2. Since we can't be sure of orientation you implement the [Pythagorean Theorem](https://www.google.com/search?q=pythagorean+theorem) (such is on the web and appears to be taught in 9th grade so I won't … | |
Re: Frankly I'd unplug what you use now and plug in a replacement as it appears the plugin you have broke. https://www.google.com/search?q=Plugins+to+Enable+Social+Media+oAuth+login+in+WordPress | |
Re: Line 2 at the end did say "Binary". Is there any mystery here Shaggy? | |
Re: This doesn't look better than your other post at https://www.daniweb.com/programming/threads/521271/how-to-retrieve-id-from-listview1-mysql What's the difference between this post and that one? In case folk don't know, asking again so quickly won't speed up getting answers. | |
Re: Did you replace said HDD? Sometimes we find oddly failing drives and the owner didn't replace them. Also, be sure to look at the S.M.A.R.T. values. If you find 01 and 07 out in the thousands (raw value) then the drive has issues. This is well discussed so I see … | |
Re: I'll take this is a task and not homework. So my research would be as follows. 1. https://www.google.com/search?q=write+ppm+file+c%2B%2B 2. From 1, I see a favorite site ROSETTACODE. That's https://rosettacode.org/wiki/Bitmap/Write_a_PPM_file 3. I might skip a direct write to PPM and consider scripting my data to GNUPLOT which would open the door … | |
Re: I'd use a search for this search system. Example: https://www.google.com/search?q=search+bar+using+javascript%2C+html+and+css+without+database There are videos and code to explore. | |
Re: How about a 10 part Video on how to create a Hotel Managemnet program in Netbeans? Yes, it's true. Start at https://www.youtube.com/watch?v=VxrzKcBAAI4 | |
Re: So you're telling everyone that the site you linked to is a [GARBAGE SCOW](https://en.wikipedia.org/wiki/Garbage_scow)? Nod to https://www.youtube.com/watch?v=tMrzdKzQTf8 It's your first post so did you spam? | |
Re: I have a friend in Vancouver BC and he assures me there are many many such agencies in Toronto. Because you are there I have to ask one question. Are you reporting that such are so unfriendly as to not return your calls and emails? | |
Re: I don't see you ask a question (most use the question mark.) So break down the problem to manageable steps. For example you have lst_stu_names so why not find the number of entries in that array? https://www.google.com/search?q=How+do+you+find+the+number+of+elements+in+a+list+in+Python%3F seems clear to me. Remember you have to write the code. And do … | |
Re: If it's yours, why isn't this in your profile so this platform works for you? | |
Re: "Do not post editorial articles that may be published elsewhere" As posted this feels like spam. Also, AI is still not here. Can you show me AI? Machine learning and such but where's the AI? | |
Re: So much left unwritten. Go read https://www.daniweb.com/programming/web-development/threads/436218/how-to-insert-multiple-select-option-in-each-row-of-mysql | |
Re: First, you would be writing the script and code. Some folk land on programming forums and want to have the code written for them. If you are putting up a job then you need to put the job up on the freelance coding boards. With that out of the way … | |
Re: Not enough detail. However I've seen malware do that. The PC was hacked, not the web site. | |
Re: Time to share what error you saw and what line number since VB's IDE and runtime tells that. | |
Re: Let's cover a few items. 1. Passwords. If you store passwords in the old bad way of plain text then you deserve the grief and trouble. This area is well discussed and there is no longer any excuse to leak passwords. 2. URLs. Since you don't control what's on other … | |
Re: The best reason to pick up the gauntlet is you need some app. That said I've turned to Python for many reasons now. | |
| |
Re: Line 11 looks odd to me. I used the following to test and it appears to do exactly as you coded, not as you asked above. Why did you i += START? import java.util.Scanner; // Import the Scanner class public class MyClass { public static void main(String[] args) { final … | |
Re: AFAIK, not something Edge does. Another reason I don't use Edge. https://www.tenforums.com/general-support/85925-local-files-ms-edge.html notes we can open a file from WFE (Windows File Explorer.) I've also dragged and dropped a file onto Edge and that worked. | |
Re: I have to write I think that's how those other apps function. Very few apps agree on what to do with meta data. I see this also is answered "No" and maybe at https://askubuntu.com/questions/131003/rhythmbox-and-metadata The maybe is for the file types MP3, OGG but not FLAC. Even plugins don't fix … |
The End.