5,430 Posted Topics
Re: This is likely to not fix it but I had it happen and it did. Mind you that the code looked right but I had to use the Clean then Rebuild options in the menu of Visual Studio. Remember I don't claim this will fix it as folk have a … | |
Re: Doesn't look odd to me at all. 10 10010 should be 00010 10010 as that's the same value. If you are implementing a protocol, your protocol will implement a short frame message as well. Again, it's your protocol. Add to it if it's coming up short. | |
Re: Let's keep an eye on those other folk asking this question too. 1. https://stackoverflow.com/questions/47163149/convert-comma-separated-query-in-linq-entity 2. https://www.codeproject.com/Questions/1214320/How-to-convert-comma-separated-SQL-query-in-linq-e 3. https://stackoverflow.com/questions/47177546/converted-sql-query-to-linq-but-not-getting-any-result Item 3 seems to have the best reply. | |
Re: Welcome. You need to show your work so far. This is more about you sharing what stopped you than members writing your code for you. Read https://www.daniweb.com/programming/threads/435023/read-this-before-posting-a-question where this is explained in detail. Let's dissect step 1. That could be in simple .DB statements or the assignment asked you to … | |
Re: Not the wrong place but it appears you can pick over priors for the basics such as [https://www.google.com/search?q=java+source+to+take+words+from+a+list+(or+three)+to+create+a+random+sentence](https://www.google.com/search?q=java+source+to+take+words+from+a+list+(or+three)+to+create+a+random+sentence) This still means you get to deal with the Android front end to your app but the sentence, random and more is out there for you to re-use. | |
Re: So 2.35 seconds? Is this on a SSD or HDD? I've found payback to be good enough that a move to SSD and more RAM is worth it. I don't see anything outstanding in the code that would make a big difference. | |
Re: I read this twice and can't find what you really wanted to accomplish. Also, watch https://www.youtube.com/watch?v=-5wpm-gesOY | |
Re: @S. The best tools are what you can wield and create results. Now I'm not an expert on Android Studio but I will share that I'm up to my neck using AS. Let me share the story as much as I can due to client agreements. The client is one … | |
Re: " exclude a sub-folder from the source from being included in the symbolic link ? " That's going to be very tricky. You would have to tweak ownership and permissions just so (sorry no, I bow out on that) and disallow the user access to that subfolder. This is so … | |
Re: The example at https://www.w3schools.com/php/func_date_date_format.asp looks very close. | |
Re: This looks oddly similar to what we read at [https://msdn.microsoft.com/en-us/library/system.diagnostics.process.machinename(v=vs.110).aspx?cs-save-lang=1&cs-lang=vb#code-snippet-1](https://msdn.microsoft.com/en-us/library/system.diagnostics.process.machinename(v=vs.110).aspx?cs-save-lang=1&cs-lang=vb#code-snippet-1) But today's SECURITY MODELS should cause this to fail. That's vaguely hinted at the link with this line: > for full trust for the immediate caller. This member cannot be used by partially trusted code. So my bet is this … | |
Re: I was going to look at this but the code looks incomplete. Or I just missed where the socket is opened. I wanted to see if you used TCP or UDP. If UDP your code won't handle a lost packet so there's that. A lot more code on both end … | |
Re: To abubaker+2. I took a quick look at http://php.net/manual/en/function.mysql-connect.php and find it's deprecated. While you are working your site and code, read what this means. And about injection to this, don't pass up prior discussions like https://stackoverflow.com/questions/15024222/php-how-to-prevent-sql-injection-for-this-code | |
Re: @overwraith. It's a two way street. There are some that demand support but all this is volunteer like other forums. I see you dumped a lot of code so folk may shy away. Be precise with what is broken. Keep it short. Also, read https://www.daniweb.com/programming/threads/435023/read-this-before-posting-a-question I think your post may … | |
Re: I'm going with yes but stop short of writing the dissertaion and all that would have to be installed, configured to make this as easy as you appear to want it. So, sure, yes. You have quite the work ahead of you to do this. Or maybe you need more … | |
Re: Your problem description needs work. Maybe you wanted to write: 1. Count the number of whale occurances in the text unless preceeded by the word "thee". But you didn't write that so as it stands the word count would be zero's if I took your words literally. | |
Re: So I took an extra step to check out the downloads page for TinyMCE and found 3 installers. I am left to wonder what you used here on what target system. Also, it appears to be trial ware. I see that in your error message and at their site. But … | |
Re: Just a thought. Isn't this a little wordy? For example the if statement if(gasInTank == gasNeeded) and such. Couldn't that be a one liner like: return (gasInTank == gasNeeded); I could be wrong but I am working an android app that went to China, India and back home that is … | |
Re: While you have your code, to print labels usually has us installing a printer driver and helper API from the printer maker. Example: https://blog.jayway.com/2013/03/11/label-printing-in-your-net-application-with-a-dymo-labelwriter-450/ | |
Re: Let's watch https://stackoverflow.com/questions/47072700/global-currency-converter too. | |
Re: Why does this look similar or same as https://www.daniweb.com/programming/software-development/threads/510309/substring-counter#post2228065 | |
Re: So what happens when... You put that file on some FAT32 formatted memory stick. There are no permissions in that file system. Sorry if I don't get into file permissions here. Sort of a well done topic so let's find a quick fix. | |
Re: By Google do you mean Gmail? Why not us Thunderbird to go get all those emails and then export to CSV and then write your own parser? Remember this is a coding forum so programmers may think like that. | |
Re: I think you need to add if this is the usual homework assignment. Which was: > Implement the perfect hashed data structure and provide Java application that demonstrates that its four basic operation methods function properly. Your application should store nodes for a stadium ticket application where the ticket numbers … | |
Re: While I don't see the end of the while loop, it appears to me it will do one last print before exit. You could fix that and move on. Such as line 16 change it to if (active) print ..... Seems easy to polish up. | |
Re: I think a lot of this will depend on the size of your new job/ad/biz content company. If you look at your competitors like Monster, LinkedIn and so on, they have invested a lot of time in their product (their web site, apps and sales force.) I'm going to give … | |
Re: I'm reading line 11 where you put content into the variable "text" and line 12 where you call out "txt". To me this looks incorrect. I might be wrong. | |
Re: That sounds like a neat idea. I think you'll be busy for months implementing this and getting it all bugged out. But I'm going with advice here. Break down the problem into manageable doable chunks. You have your high level goal but now you get to break it down into … | |
Re: It appears you are in a course that just handed you an assignment or "homework." The course should work its way up to this moment. That is, if you weren't paying attention before, what you are assigned may be Greek to you. Go back over the material before this to … | |
Re: Creating a database in VB.net is documented at [https://technet.microsoft.com/en-us/library/ms162576(v=sql.90).aspx](https://technet.microsoft.com/en-us/library/ms162576(v=sql.90).aspx) A very short example is there. | |
Re: It seems protected in a good way. Hard to crack. I see I kicked it around before at https://www.daniweb.com/hardware-and-software/mac-os-x/threads/506144/converting-ismv-file-to-mp4 | |
Re: This is a rabbit hole. How deep you want to go is up to you. For me I found log rotation to suffice and here's the link I used to refresh my memory on this subject. But there are many rabbit holes here. That is, MySQL has more than one … | |
Re: By "this address just won't work properly." do you mean their email address are your company or are you trying to pick up their mail on an external server? Why I ask is you can find folk talking about TLS and Outlook 365 breakage. > The TLS implementation in 2003 … | |
Re: Just for this I opened that URL in Opera and the image had a video play button on the left rainbow effect. Maybe that's not a PNG at all? | |
Re: The news I'm reading is "Mozilla intends to remove support for most NPAPI plugins in Firefox by the end of 2016." Except for Flash. This means when you find a broke version you have to bug report it and then use versions that work. Nothing extraordinary is going on here. … | |
Re: This can't be left here without mentioning Microsoft's hilarious fail with this link: http://www.telegraph.co.uk/technology/2016/03/24/microsofts-teen-girl-ai-turns-into-a-hitler-loving-sex-robot-wit/ > "Tay" went from "humans are super cool" to full nazi in <24 hrs and I'm not at all concerned about the future of AI - [Nosgeratu](https://twitter.com/geraldmellor/status/712880710328139776?ref_src=twsrc%5Etfw&ref_url=http%3A%2F%2Fwww.telegraph.co.uk%2Ftechnology%2F2016%2F03%2F24%2Fmicrosofts-teen-girl-ai-turns-into-a-hitler-loving-sex-robot-wit%2F) | |
Re: I thought Microsoft's attempt to put one online was hilarious. Read http://www.telegraph.co.uk/technology/2016/03/24/microsofts-teen-girl-ai-turns-into-a-hitler-loving-sex-robot-wit/ Did they take the time to reveal just how badly they do AI? | |
Re: Duplicate? See answer at https://www.daniweb.com/programming/web-development/threads/510259/are-dynamic-and-dependent-dropdown-possible | |
Re: Why do that? NotePad++ can show you the hex and the ASCII. [See these screens.](https://www.google.com/search?q=notepad%2B%2B+binary+editor&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjkn42N25HXAhUnwVQKHb7TDqYQ_AUICigB&biw=1536&bih=732) PS. VBA is not VB6. As VB6 is rare and dead now, can you clarify? | |
Re: You'll have to reveal more. If you are using the EMAILTO method, it required the PC/Apple have a compatible email client. "For a mailto "submit" to work there has to be a compatible e-mail client. There are millions of PC users who don't (e.g. people with hotmail, gmail, yahoo), and … | |
Re: I think which version PHP matters as I read priors at [https://www.google.com/search?q=preg_replace_callback()%3A+Requires+argument+2](http://www.) You cut off your error message and didn't reveal which PHP version so my guess is you moved to PHP 7. | |
Re: So something like http://www.eecs.qmul.ac.uk/~mmh/ItP/resources/studentdatabase1.html ? That and others are just a google away. Have anyone mentioned Google to you yet? Why I ask is I do occasional run into folk that didn't know about search engines. | |
Re: I worry that you fell into that hole due to using or upgrading VS from some version to VS 2015 COMMUNITY. You see others note this on the web and http://www.anujvarma.com/visual-studio-does-not-display-4-0-or-4-5-framework-option-for-target-framework/ You might have to use other than the Community version of VS or try (I haven't tried) a VS … | |
Re: This sounds like a continuation of the problems you had at https://www.daniweb.com/programming/software-development/threads/510079/c-programming-mysql#post2227467 I think you need to contact the author of that web page and ask if they have a Windows only version. Can you share why it must be C and not C++ or such? | |
Re: Did you try https://www.w3schools.com/php/func_string_number_format.asp | |
Re: There's rules and then there is etiquette. Etiquette says don't crosspost. But to make it a rule is rough as noted above. If you do find them crossposting, you can simply point to the crosspost link and write if you agree with the answers so far. Usually the crossposter figures … | |
Re: In many systems the string resides at some address and here's the trick. Think about how you print that string. You pass the address of where the string is to the print function. Now to skip the first character, add 1 to the address and pass that address to the … | |
Re: In the case of common apps like Tic-Tac-Toe I might defer to https://rosettacode.org/wiki/Tic-tac-toe but if you were to supply other folk's code you would indeed be missing out on the real reason you took the course. I won't tell you why here. | |
Re: This sort of problem has been kicked around since before 1986 and in http://rosettacode.org/wiki/Talk:Word_count you find out you need to define what a word is. Then we can look at the dozens of solutions at https://rosettacode.org/wiki/Word_count and modify the wheel to fit what our task is. If this is homework, … |
The End.