8,966 Posted Topics
Re: > when I click the record the table does not change What exactly do you mean by this? Describe what you expect to happen, but what isn't working. ![]() | |
Re: Are you looking for diagramming solutions or something like Windows Workflow Foundation. | |
Re: Shouldn't you be using something like: {{ reponse.nom }} | |
Re: https://developer.mastercard.com/portal/display/api/Sitemap If you are using a CMS like OpenCart (or others), check for the right plugin. | |
Re: Post your questions in the C and/or C++ forums. | |
Re: If you really want (text) logging (at some point), I can recommend [log4php](http://logging.apache.org/log4php/). | |
![]() | |
Re: Telephone and email are not selected in the query, but the code is trying to get their value on line 82/83. | |
Re: Can you show some code? Do you really have to use [IComparable](http://www.dotnetperls.com/icomparable), perhaps LINQ is enough: yourList.OrderByDescending(item => item.Name); The `CompareTo` method should return -1, 0 or 1 depending on whether the passed object instance is larger, equal or smaller in order. Have a look at the link I showed, … | |
Re: So many examples online. Your request is vague, what exactly are you looking for. ![]() | |
Re: What solved your issue? | |
Re: Double click, then copy from the editbox. | |
Re: Where is your connection? Check for errors to find the issue. $rewards = mysql_query("SELECT * FROM rewards ORDER BY points") or die(mysql_error()); | |
Re: $result = preg_replace('%<head>.*?</head>%sm', '', $subject); This worked for me. http://php.net/manual/en/reference.pcre.pattern.modifiers.php ![]() | |
Re: Is it stored as a VARCHAR? You cannot just increment that. It should be possible to write a stored procedure for it, but usually such a composite ID is stored in separate columns (merged when queried). Usually such IDs are built from an AUTOINCREMENT column. Using MAX is dangerous, it … | |
Re: I haven't uploaded your query dump yet, but one thing that causes an issue is that you are inner joining first on (FieldId = 1) and later on on (FieldId = 2). That second condition is no longer valid, as the first inner join only selects (FieldId = 1). Hence … | |
Re: Remove line 5 and 7, and the `%` on line 8. | |
Re: [url]http://php.net/manual/en/features.file-upload.post-method.php[/url] ![]() | |
Re: Can't you use routing to route all requests to a single ASPX file, that then writes the Response? | |
Re: > However I need to add a progress bar to indicate progress I don't think you can. You are starting a new process, which I doubt is returning progress information. You can start by trying to grab any output. Which application are you starting specifically? | |
Re: If I remove the `height: 12px;` from `.selservice` it shows again. That's because with the padding of 10px, a height of 12px only shows the whitespace of the padding. | |
Re: Using LINQ you can just do: ListBox1.Items.AddRange(lines.Take(10)) You'll need: Imports System.Linq | |
Re: On line 6 replace `","` with a space after SET. | |
Re: Like this? https://www.elbowspace.com/FRHformexample18 | |
Re: We only help you with issues, we don't provide code. So what do you have, and what problem do you have exactly? | |
![]() | |
Re: Can't you just prefix the class with a `\` ? | |
Re: http://betterexplained.com/articles/how-to-optimize-your-site-with-gzip-compression/ Assuming you are running Apache. | |
Re: Sounds more like you want to add Auditing to your database. | |
Re: It can reference SQLite because that can be installed on the phone. If you want to load data, I think you're stuck with creating a webservice, instead of connecting to MySQL directly. | |
Re: https://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_length Depends on how your table is organized. Show an example. | |
Re: Taken from here: http://social.technet.microsoft.com/wiki/contents/articles/11608.e-book-gallery-for-microsoft-technologies.aspx Specifically: http://social.technet.microsoft.com/wiki/contents/articles/11608.e-book-gallery-for-microsoft-technologies.aspx#IntrotoASP.NETMVC4withVisualStudio%28Beta%29 | |
Re: Check for XAMPP or WAMPServer. Both packages install a full stack. | |
Re: What are you doing with `'Lesson 3'` ? If you inject this into a query without escaping, your query will fail. ![]() | |
Re: Missing semi-colon on line 16. | |
Re: I think you should have the category check first, but add that there is no ID set. In the else you can check the IDs. if (is_product_category() == "powders" and get_the_ID() == -1) // or whatever it returns for a category { echo do_shortcode('[smartslider2 slider="14"]'); } else { switch (get_the_ID()) … | |
Re: Can you explain what you mean? | |
Re: Note that Excel might be using an OADate. If that's the case use: DateTime myDate = DateTime.FromOADate(yourExcelOADate); | |
The End.