5,430 Posted Topics
Re: I take it John is not a programmer. I think John would pull up Excel or if not having that go get Libre Office and make a spreadsheet to create the report. No programming is required here. | |
![]() | Re: Let's cover it for now. http://www.howtogeek.com/210921/how-to-disable-your-webcam-and-why-you-should/ For Apples you rarely install an antivirus but do need to scan for bad things. http://www.apple.com/shop/question/answers/mac/do-i-need-an-antivirus-program-for-my-macbook-pro/Q7HU22X2K27JTAF7J kicks that around a little but if you are not being proactive about this, eventually something sneaks in. |
Re: http://php.net/manual/en/function.password-hash.php notes it's already in PHP. Use another function name. | |
Re: Since the input is usually ASCII or text, no conversion is needed. But I wonder if you are wondering how to take "10" and return "ten"? http://www.cprogramming.com/challenges/integer-to-english-sol.html seems to be pretty short. | |
Re: Old fashioned here. At the office we have a collecton of phones, tablets and usually, if we wrote it write it looks fine on the 4 inch phone, 7 inch and 10 inch tablets then it's fine on other Androids. So far we've avoided the online things ( https://www.google.com/#q=online+android+emulator ) … | |
Re: http://bytes.com/topic/visual-basic-net/answers/931046-how-get-dynamically-created-label-clicked notes how to add the handler and ID what clicked. I wonder if you think you write a handler per unique control. When I create say a bunch of buttons I create one handler for that bunch. If I make something else, then another handler. But that's only 2 … | |
Re: This sounds like a job for Squid. You can read more at https://en.wikipedia.org/wiki/Squid_%28software%29 With Squid instead of what you appear to be using, I never had to reconfigure browsers. | |
Re: Read http://programmers.stackexchange.com/questions/201175/should-i-use-parentheses-in-logical-statements-even-where-not-necessary falls pretty much in-line with how I think and code. Without the parentheses you must know how your language works. There are purists that can go either way. I want it clear in the code what I wanted to say. | |
Re: One more thing to check out. Is the file printui.dll in the usual Windows folders? The old SFC /SCANNOW may or may not bring it back. | |
I didn't see anyone bring up how VW and other companies have lost their integrity. We know those that code "bad things" may lack a moral compass but when I've worked in large groups or companies not once was there any question about doing the job in a dishonest way. … | |
Re: https://docs.python.org/2/library/urllib.html notes more work for you when proxies are involved. | |
Re: Look at the example at https://msdn.microsoft.com/en-us/library/dd492144.aspx?f=255&MSPPError=-2147217396 While your code is yours I see problems aplenty that you need to address one by one. I would like to see you 1. Set your countdown variable before you enabled the timer. 2. Just use one countdown variable then convert to HH;MM;SS for … | |
Re: I'd read http://gsp.com/cgi-bin/man.cgi?section=2&topic=open about that append on your open. | |
Re: Small world. I have my old Office 2003 CD and I look for the setup.exe to run. However I'm just about to run out the door so I'll be back with a note about a specific service patch for Office. (No, it's not for the OS but let's hope it's … | |
Re: In short, you seem to have installed MySQL so that part of the question looks to be yes. As to memory, Windows tends to use all available RAM, even for a trivial thing. There are tomes about this on the web and how memory is freed when needed. I think … | |
Re: There are more than a dozen methods noted at https://en.wikipedia.org/wiki/Methods_of_computing_square_roots While something interesting to explore, which method would you like to find source code for? Given the code has been kicking around for decades, is this something one should write today? | |
Re: Good question. I wonder if http://bytecodeviewer.com/ would let you see this. In the video I see a memory pane show up. | |
Re: How is this different from your other question at https://www.daniweb.com/programming/software-development/threads/500016/network-sniffer-using-c | |
Re: I may be duplicating this issue soon on my Win 8.1 Lenovo y510p Yesterday I ordered one of those caddies to place SSD or HDD into the ODD space. Until then there were incidents where drive letters assigned conflicted with a newly added internal drive in desktops. Mind you this … | |
Re: This looks to be on a prior Daniweb discussion. Try this link: https://www.daniweb.com/programming/software-development/threads/464673/unable-to-pop-out-values-cpu-sim- | |
Re: Before you go too far, consider current sniffers that are open source and working. And even before you do that, for wired networks, many packets will never be seen by your Ethernet card because "Ethernet switches" won't send you packets not sent to you. I've seen folk dive into this … | |
Re: Just one thing. That message is likely the display going into sleep mode. I've seen that when the PC is working fine but the video mode is out of range of the display. The new to PC person reports the PC is going into sleep mode which is a little … | |
Re: Not really. Let's say the barcode is printing (you didn't tell?) One system I had out there started to falter. OK, it worked fine with my Symbolics scanner so a look see found a cheap MIC scanner. I increased the font 2 steps up and the MIC scanner finally worked. … | |
Re: There are web articles about this but now that 10 is released I'd try it with articles after the release date. Why the DVD at all? Why PowerISO? http://blogs.technet.com/b/canitpro/archive/2015/04/02/step-by-step-installing-windows-10-on-oracle-virtualbox.aspx notes a method that uses the .ISO file. Try that method. The brand new HDD would be prepared in the host … | |
Re: I see 2 easy reductions in code. Take the msg, "DO=0x00" and if this is the always case for the string, convert the last srting number into a number. Now you can use a classic switch to set those values. Next, why not set all 5 bit to off, and … | |
Re: Cheat. Write them to a file.csv, bring it into Excel or LibreOffice then... http://exceluser.com/formulas/countifs-frequency-distributions.htm Remember that there many types of Random. Linear, Gaussian, Normal and a few more. I love random for this. Which one do you want? ![]() | |
Re: This doesn't sound simple at all. A quick look at AFWall+ (Android Firewall +) which had source code up at github(?) looks to find it's far from simple. https://github.com/ukanth/afwall looks active. Just 5 days ago. | |
Re: Is this that 2007 model? It's well past it's time. That said I do know some that found it for 120 bucks on a Woot sale. Try the usual. A new CMOS battery and hope. | |
Re: Given that there are such systems today, the short answer is yes. However if you were to write such, do you have the time to create it? If not, then you hunt for tools. | |
Re: I wonder if you are thinking of old friends like TurboC, Visual Studio, etc? gdb is more like this -> http://www.thegeekstuff.com/2010/03/debug-c-program-using-gdb/ I often find folk not know of gdb basics or wish it did more. | |
Re: Did you try simple? That is, open the project and save as in your new location? http://stackoverflow.com/questions/626631/how-to-relocate-visual-studio-project-sln-file covers this in a few angles. | |
Re: This sounds like you want to "emulate a browswer." This isn't a new idea but frankly why bother? You won't gain much except, well, I can't tell why folk do that. More at https://www.google.com/search?hl=en&as_q=emulate+a+browser+in+php | |
Re: Two ideas. 1. Change the value in the first to "apple". 2. Try no value. http://www.w3schools.com/tags/att_option_value.asp writes if you omit value what happens. | |
Re: Here I found many examples. As a Word file contains many elements you have to tell others what you wanted to read. What good is a Word text reader when you want the author field content? Java Word reader looks to be at https://poi.apache.org/ | |
Re: The good news is you used copy and paste. That means you didn't lose files. As to the external I'd try the last hurrahs before last rites. To me this means. 1. Use a zero fill app for the external. This will take some time. After, partition, format and try … | |
Re: I'd start with the PICkit 2 Starter Kit since it comes with 12 lessons. There are too many web pages on PIC's so I'll give a node to the starter kit and this link. http://www.talkingelectronics.com/projects/StartHereWithF628/StartHereF628-P1.html | |
Re: This looks like intextual.com to me. Since it's commercial ware, they should answer your queries. | |
Re: I'm thinking rotate. There's HTML and CSS for that. Longer answer at http://stackoverflow.com/questions/20061774/rotate-an-image-in-image-source-in-html | |
Re: While I've seen live code systems in the past you want it for VS. Take a gander at VS Anywhere. | |
Re: Did you check prior answers like http://forums.asp.net/t/1846158.aspx?accept+input+only+number+with+2+decimal+javascript | |
Re: So OX? It appears you can host it on your server. http://oxpedia.org/wiki/index.php?title=AppSuite:Main_Page_AppSuite#quickinstall | |
Re: To dive into this one you need to look at the line where it fails. Is it an access issue or something else. https://msdn.microsoft.com/en-us/library/2kk9bxk9%28v=vs.110%29.aspx?cs-save-lang=1&cs-lang=vb#code-snippet-1 is about the SetValue but you wrote "access" which could mean something else. What function failed and what exception was thrown? | |
Re: About line 13? You may have to catch the exceptions to see what it is. https://msdn.microsoft.com/en-us/library/hf9z3s65%28v=vs.110%29.aspx looks complete as to the code you need to add. | |
Re: The thing is that your random sequence may be the same on each run. I don't see a setseed in there. See example and why at http://stackoverflow.com/questions/5533191/java-random-always-returns-the-same-number-when-i-set-the-seed There are other errors but your question is muddy. | |
Re: I'd open the drive case but not the drive. That is, I always try these in a new case on something I keep in my PC Medic Kit. It's this thing: http://www.amazon.com/SANOXY®-Adapter-Converter-Optical-External/dp/B001OORMVQ/ | |
Re: This looks like a job for (fanfare music) VirtualRouter. Since hijacking occurs here's the link. https://virtualrouter.codeplex.com/ Since you want to share your WiFi connection, this alone may do fine without adding more gear. | |
Re: This looks to not handle the new line. This was discussed before at http://stackoverflow.com/questions/20108334/traverse-file-line-by-line-using-fscanf | |
Re: altjen, why didn't you start with https://www.google.com/search?q=youtube+video+downloader+in+vb as I did that and found source code and more. I can't guess why you would do this as YT downloaders are plentiful. That is, wouldn't you want to hone your skills in a new area rather than yet another YT downloader? | |
Re: Why not use what you know? Since browsers can use local files with .html you could use what you know today. As to the clicker, I'm going to share I own a Satechi ST-BTRM1 which you could use or something else then your code does the usual on event to … | |
Re: My first thought is GnuPlot. But as to library? Such may depend on your choice of C. https://www.google.com/#q=visual+studio+gnuplot seems to show folk using it in Visual Studio. |
The End.