8,966 Posted Topics
Re: Basically you are building Google Alerts, but for more sources and with more restrictions. You'll need to integrate with news sources, or search engine APIs to extract the information you'd want to see. You need to build a service type application that runs daily and intelligently. > Is this technically … | |
Re: Before other people start whining, can you please fix your HTML, the snippet has unclosed tags (probably a copy/paste issue). | |
Re: Line 5 and 6 defines: type: "Get", data: { "code": data }, so line 3 should be: $d_f = $_GET['code']; | |
Re: Can you show the code that is returning the XML? | |
Re: Next time, create a new thread, instead of replying to a 6 year old thread. Add a div (or other container to your page) and set the left or right border with CSS. | |
Re: What is the PQDatabase class? Does it automatically connect? Add error handling, it might be a connection error or something else database related. | |
Re: The following should match: /[\w ]+/ or: /^[\w ]+$/ You are missing a repeater, so your regex only checks the first character (J). The regex above matches one or more word characters or a space. | |
Re: You might not get an answer, since this post is 6 years old, and he hasn't posted since. | |
Re: > it is an alternative to SQL Server No. It is a MySQL database client administration tool, so in order to use it you need access to a MySQL server. If you don't have one, it needs to be installed as well. ![]() | |
Re: The files need to be put together in a project, so VS knows they belong together. | |
Re: This is a seven year old thread, and the user hasn't been active in five. You probably won't get an answer. | |
Re: What does `adminfrm.php` do? What exactly happens, and what should happen? Any errors? | |
Re: > I am still getting a Sql error Which one? Type is a reserved word. Put backticks around it. | |
Re: Why do you reference the guarantor by name, and not by ID? | |
Re: Looks like you need to register for an account (according to their dev docs). | |
Re: > it is failing to save the new record Do you get an error/exception? Perhaps forgot to install something? | |
Re: http://php.net/array_intersect The result of the intersect of both arrays, should be an array identical to `array("newemail", "firstPassword", "secondPassword")` So, if you do an `array_diff()` on those two next, you should have an empty array. Hope it makes sense. | |
Re: > So I am 12 You just violated our Terms of Service, which state you need to be over 13. | |
Re: What exactly are you looking for? Something like Xamarin? | |
| |
Re: All your image boxes are in the Controls array of your form. If you loop that instead, it can work. | |
Re: You display the entire div. Either use: alert($('#allcountries option:selected').val()); or: alert($('#allcountries option:selected').text()); It's strange that allcountries is a `div` and not a `select` | |
Re: http://www.theregister.co.uk/2015/04/02/truecrypt_security_audit/ | |
Re: > What is wrong with this? If there are no new messages, it defaults to showing an archive of old messages, as opposed to giving you an error message saying nothing new exists. Agreed. The problem with this is that when you click on your Message Inbox or Active Conversations … | |
Re: Have a look at this [SO thread](http://stackoverflow.com/questions/2563918/create-a-cumulative-sum-column-in-mysql). Am sure it will get you started. If not, come back and explain your problem. | |
Re: Can you not zip the files using the password? Zip has built-in support for encrypting it's contents. You'd need the original password though. If you cannot decrypt them, I doubt it's possible. | |
Re: https://github.com/angular/angular/milestones Check out the open bugs, and decide whether or not you want to take the chance. It should be stable enough or there wouldn't have been a Release Candidate. | |
Re: Why not load your content with Javascript/jQuery instead? | |
Re: > how to display multiple images in a row Next time start a new discussion thread instead of replying to an old one. Please explain clearly what you want, what you have and what isn't working. | |
Re: There are several on microsoftvirtualacademy.com | |
Re: https://en.wikipedia.org/wiki/Floating_point#Accuracy_problems | |
Re: > forecolor mu value of stocks in listview in a column stocks In C# this works for SubItems. Am sure you can convert it to what you need in VB.NET: lvItem.UseItemStyleForSubItems = false; lvItem.SubItems[2].BackColor = Color.Orange; // 2 should be the right column index | |
Re: http://php.net/manual/en/function.file-get-contents.php get_file_contents is not a function, and you do not need line 14. $mytextfile = file_get_contents("../images/comments.txt"); | |
Re: Have a look at [this example](http://culttt.com/2012/10/01/roll-your-own-pdo-php-class/). | |
Re: As opposed to XML, [JSON](http://www.newtonsoft.com/json) is another option. Both are easy to read when debugging, JSON is only a little less bulky. | |
Re: The last unanswered, from 6 hours ago (as of this writing) is hardly something to worry about. It might be urgent for you, but everyone here has stuff to do and devote their free time answering. So be a little patient. Not sure about the other one. | |
Re: Just download the new version and link it, or link directly to the [online version](https://code.jquery.com/jquery/). I wonder why you are still using such an old version, the latest is 3.1.0 | |
Re: Add the `MONTH()` part to your select clause, so you can use an `IF()` to determine your calculation when the start and finish month is different. | |
Re: [Get Ready to Work with MSXML (C/C++) on MSDN](https://msdn.microsoft.com/en-us/library/ms765540(v=vs.85).aspx) has samples too. |
The End.