5,430 Posted Topics
Re: I'd see how it was done at https://github.com/zingazzi/ConvertToRoman | |
Re: That sounds like your homework. Try sharing what you have so far and what you think is broken. | |
Re: What our techs usually find is the range extender has failed. Remember I take it you know how to factory reset and deploy your hardware. Another thing, we do not support extenders. We refit the network with better solutions such as powerline kits with WiFi. | |
Re: Sounds correct as I recall the Integer limits (32767 to -32768) apply to the seek command. You have to ask if QB64 extended those limits or break your data up into more files. | |
Re: Your screenshots don't match what I see at https://docs.microsoft.com/en-us/visualstudio/data-tools/add-new-data-sources?view=vs-2019 I wonder if you have some old VB.NET or you didn't complete the steps at the link noted. | |
Re: For me, this has been all too easy. Did not add any apps. I set the ringtone I want on the iPhone. Why clutter my PC and phone with your app? | |
Re: If only pasting code would result in a VB6 app to work. I'd give yourself time to see if there are any VB6 tutorials on the web but let's write one reason pasting code is likely to do nothing at all. In VB6 you have forms and objects that you … | |
Re: Remember what you mix something very old and new you end up having to test to see if it works. https://github.com/microsoft/mssql-jdbc/releases has me write to try 9.1.1 since Java 15 support was only added in 9.1.0. | |
Re: No big plans. We are keeping our bubble intact but I will pick up a turkey and more to make a Christmas dinner. | |
Re: Tell us what you mean by setup. I see UwAMP already packed in MySQL. > WampServer refers to a solution stack for the Microsoft Windows operating system, created by Romain Bourdon and consisting of the Apache web server, OpenSSL for SSL support, **MySQL** database and PHP programming language. Wikipedia | |
Re: There is no close button noted at https://www.tutorialspoint.com/wxpython/wx_dialog_class.htm Either that or you meant only that top right X? I can't tell from your post. Given only what you wrote so far I am guessing you want no buttons at all. Try: wx.MessageBox('Nothing to see here.', ' ',0) | |
Re: > Tambola is another name for the game of Bingo, Housey, or Housie. - Wikipedia Also, how would getting us to supply you code help with your exam? You would be saddled with someone else's code and unable to stand up to a code reveiw since it wasn't your work. … | |
Re: Sure. Here's one at https://gist.github.com/AhmedEid1995/5b983a984ee9c61dc95f Not sure how that could be used for an exam but hey, code! | |
Re: The resources are compiled into the app if we are talking about the usual Visual Studio C# system. | |
Re: So many nice ones out there. Can you clarify what you play now and what you are looking for? | |
Re: As you've heard before: Show your work. Explain what the issue is. Also, I have doubt about the "pure" part. Did you posit this would not use any libraries or graphics? PS. Also, it's been done before. I looked at https://github.com/fjsj/programming-challenges/blob/master/Minesweeper.c | |
Re: As you've heard before: Show your work. Explain what the issue is. | |
Re: Think about how you do this now. Then automate that in your backend. Remember that ideas about this are within easy reach i.e. research so I won't duplicate that here but note the usual how I tackled such in the past. | |
Re: This area is well done. But there is no fitting answer because we don't know what email services your web host provides. Reveal a bit more about the web site hosting so I can check them out. | |
Re: Just for fun I put something similar in to the online compiler at https://godbolt.org I set the code type to C and the output to MIPS. Example follows: // Note that If is now if. int f (int a, int b, int c, int d) { if ((a + b) … | |
Re: The last MIPS project we had at the office used a C compiler so there would be little to no changes. Maybe you wanted something else but didn't ask. Also, the MIPS C compiler would create an assembler file if need be. | |
Re: So why not https://www.tiny.cloud/docs/integrations/wordpress/ then show your clients your work and see what they think? It doesn't matter what I think as I'm going to say "Oh great, another editor." | |
Re: Hello again! OK, for that APU we always make sure the RAM is dual channel as the graphics and more take a double digit loss when it's single channel. As to over speed, we eject all the old HDDs and slip in the new light-speed-engines called Solid State Drives (SSD.) … | |
Re: Here we are primarily an English forum Google Translate offers me this: > The software writes me an error on the word strndup Maybe someone knows if this varies in versions of Visual Studio and how can this be arranged? If I'm reading https://en.cppreference.com/w/c/experimental/dynamic/strndup correctly you are missing a few … | |
Re: You omitted make, model and year made. Even so, it appears it's not one and done. That is, you may not find a ready to use distro where you install and use it. Examples abound at https://www.google.com/search?&q=Z3735F+linux+touchscreen+support | |
Re: Why not use the Max() function at https://www.freepascal.org/docs-html/current/rtl/math/max.html Also why use else statements? Here's a straight line brute force solution. Try: (psuedo code follows) max := a if (b>max) then max:=b If (c>max) then max:=c writeln('the highest is ', max); | |
Re: I'd start with www.google.com/search?&q=API+for+Deepfake | |
Re: Rather than PHP you could entertain pushing the data around on the other side. Here's a tutorial: https://www.tutorialrepublic.com/javascript-tutorial/javascript-cookies.php | |
Re: Here's a short bit from the web about Powershell oddities in this regard: - backtick to escape instead of \ - regex must be in "double quotes" - must either use single quotes or escapes to have capture groups work in the replacement string There may be more but my … | |
Re: I don't see how to condense all you would need to know in this space. Looking at https://pythoninchemistry.org it appears you spend quite a few months working at this. | |
Re: New or not, when you approach a problem that seems too big, make it smaller. Don't worry about reading 50 files right now. Start with 1 and then grow the solution as you learn. And again, break down the problem to manageable steps. Don't try to read 10 lines, just … | |
Re: I've been told it's important that students must become self-motivating and take charge of their learning. | |
Re: This may vary with some hosting plans but as I read https://answers.uillinois.edu/illinois/page.php?id=91468 it looks complete enough for most webmasters. | |
Re: There are so many today. Many are free. Even I can get the community version of Visual Studio for free and on Linux, so many, and it's been a year but Apple issues a free development kit with ... code editor. I would have to guess why you asked. Tell … | |
Re: I'd start with tutorials. Almost every tutorial at some point ends up with you having to write an application. | |
Re: It appears this is very very similar to the discussion at https://www.daniweb.com/programming/software-development/threads/254864/removing-a-symbol-from-a-string However as I research a bit with https://www.google.com/search?&q=delete+character+from+string+pascal we find that you must also tell which Pascal system you are using since one might use delete or maybe delchars. | |
Here's the screenshot:  Notice the browser tab showing a tag. Here's one that does not work like that: https://www.daniweb.com/programming/software-development/threads/378481/need-algorithm-to-c-code-conversion-assistance The link is https://www.daniweb.com/hardware-and-software/microsoft-windows/threads/533760/please-i-want-to-change-c-to-c I don't see a tag being called out in all tabs so there's something of a randomness there. Not a big deal and you have much … | |
Re: From https://www.daniweb.com/welcome/rules "Do provide evidence of having done some work yourself if posting questions from school or work assignments" Unless this is you asking for quotes on how much, then state that so folk know you are hiring out. | |
Re: One would have to make assumptions on this assignment such as are the digits in some integer and we assume base 10. Assumptions mean solutions could be incorrect. Show your work and don't leave out details such as the digits are in some integer and what base number system is … | |
Re: From https://www.daniweb.com/welcome/rules "Do provide evidence of having done some work yourself if posting questions from school or work assignments" Unless this is you asking for quotes on how much, then state that so folk know you are hiring out. | |
Re: I'm guessing that you haven't been at this long enough. Anyhow if I disregard what you asked about docking I'd explore https://docs.microsoft.com/en-us/windows/win32/shell/taskbar#adding-and-deleting-taskbar-icons-in-the-notification-area and see if I could work with that. | |
Re: That's a poor explanation of what may be someone's homework. One could fulfill this by printing the arrow then the random value. Besides that, where's your code and where are you stuck? I rarely see anyone write your code for you. Maybe some psuedocode but no more unless it's to … | |
Re: This is great. As to practical use this saved hundreds of lives in 1864 when a pump handle was removed. Today it is used to visualize answers to questions such as "nearest location for most customers" and more. As it's one in your arsenal of graphical data presentation it's nice … | |
Re: So many reasons. At the shop we'll try this card in another PC and a shop card in your PC to see if that tells us where the issue is. You omitted your PC details so I can't guess if we can test the PC without the card and run … | |
Re: This is from old memory. Had to load up the old app and recompile with current SP. | |
Re: Odd use of tags there as I might think you want this code in five languages. But this does sound like homework or an assignment. I'm sure you can create the code for the menu so what steps stopped you from moving forward? | |
Re: I recall those had graphic chip failures. As in either the chip or the solder work. It's not a setting, it's hardware. Be sure to try a new CMOS/RTC battery then perform the usual reset as follows then re-test. Remove the power, remove the battery, press and hold the power … | |
Re: The first test is if the USB external keyboard works. If it does that usually means (about 99%) of the time) the laptop keyboard needs to be replaced. Just in case you don't know, on the login screen you can turn on the OSK (On Screen Keyboard) to log in … | |
Re: Please supply full laptop details such as model year, age, complete model number and if there are known issues such as bad battery and drives. Also, if it's past a year old tell me about how you keep the vents and heatsinks clean. |
The End.