8,966 Posted Topics
Re: Please elaborate on what you are trying to do? | |
Re: We do not provide ready source code. Show what you have so far. You didn't even specify the language you're using. | |
Re: Welcome to DaniWeb. > Are there Dutch Python users on this forum? (For easier communication) Forum language is English, so do not post questions in Dutch. When using private messages you're free to do as you please, language wise. | |
Re: I can't live without Resharper (if you program C# that is). Beyond Compare is another favourite of mine when doing (version) comparisons. Looking for anything in specific, or for a particular language? | |
Re: > If i change the OFF status to ON, its getting a value is OFF That's because you get the value at the time of your click, and not the new value. So, just change your check: var checkStatus = this.checked ? 'OFF' : 'ON'; or use: var checkStatus = … | |
Re: Just make a php script that does what you need. Then add a line in your crontab on your hosting server to execute the file on an interval of your choosing. Which of those parts do you have an issue with? If it's your email script, post it and tell … | |
Re: If that is so, then please post a bug report in the feedback forum. Add specifics so Dani can try to reproduce the issue. | |
Re: https://msdn.microsoft.com/en-us/library/hxwfzt61.aspx | |
Re: Looks like base64 encoding. Where did you get this? | |
![]() | Re: So you get duplicate records? You might want to have a look at DISTINCT ![]() |
Re: Can't you just remove the WHERE condition? | |
Re: Can you elaborate on what you are trying and what exactly isn't working? | |
Re: This [SO thread](http://stackoverflow.com/questions/10100406/moving-a-team-project-from-one-collection-to-another) might help. | |
Re: > but it doesnt work What doesn't work? Do you have an admin page that executes a delete query? Do you have code? Do you get an error? Be specific. | |
Re: Did you check what the `password_verify` function actually does? Do you have the correct hash stored in your user record? | |
Re: Line 13 has a k after the curly brace. Remove it. ![]() | |
Re: That's a little vague. Guide to using CI, or more info on your waiting list (which requires much more information), or both? CI tutorials are all over the web, searching does wonders. ![]() | |
Re: Read [our rules](https://www.daniweb.com/community/rules) (which you agreed to when signing up), especially: *"Do provide evidence of having done some work yourself if posting questions from school or work assignments"* | |
Re: In the first snippet, change: $sender_tickets = array($ticket_id); to: $sender_tickets[] = $ticket_id; and swap lines 21 and 22. | |
Re: Read [our rules](https://www.daniweb.com/community/rules) (which you agreed to when signing up), especially: *"Do provide evidence of having done some work yourself if posting questions from school or work assignments"* | |
Re: Read [our rules](https://www.daniweb.com/community/rules) (which you agreed to when signing up), especially: *"Do provide evidence of having done some work yourself if posting questions from school or work assignments"* | |
Re: What programming language are you using? | |
Re: Read [our rules](https://www.daniweb.com/community/rules) (which you agreed to when signing up), especially: *"Do provide evidence of having done some work yourself if posting questions from school or work assignments"* | |
Re: Instead of trying to time your code with a sleep (giving the possible issues that arise, mentioned above), you might want to look into [Quartz for .NET](http://www.quartz-scheduler.net). I've used it in several service scenarios and is very stable and easy to use. | |
Re: `virtual` and `override` is what you are looking for: namespace nSpace { class Base { public virtual void Print(object val) { Console.WriteLine("Printing a " + val.GetType()); } } class Class1 : Base { public string val = "1"; public override void Print() { Print(val); } } class Class2 : Base … | |
| |
Re: What kind of differences do you want to see? For example you can use Linq's Except() to get a cross section of the two. | |
Re: Apparently your custom function returns null instead of a PDO statement object instance. | |
![]() | Re: You are missing quotes for one, try this: SELECT * FROM expenses WHERE datee BETWEEN '2016-01-01' and '2016-09-01'; ![]() |
Re: There is a distinction here: .* means take as many characters you can before moving on to the next part. .*? means take as few characters you can before moving on to the next part. The difference is easily checked when there are many closing divs within your source string. | |
Re: using System.Web.UI.WebControls; private void Load_Childrean_byTypeID(int TypeID, Repeater repeatername) { } | |
Re: To create barcodes, you can use jQuery for example: http://barcode-coder.com/en/barcode-online-generator-2.html To read them, you usually use a scanner. The simplest is a keyboard wedge scanner, which acts like a keyboard when plugged in. You scan the barcode and it sends the data as a string, just as you would have … | |
Re: Have a look here: http://php.net/manual/en/function.date.php date('d/m/Y', $yourBirthDate); date('F', $yourBirthDate); http://php.net/manual/en/class.numberformatter.php `NumberFormatter::SPELLOUT` ![]() | |
Re: What exactly do you mean by "when i mouseover the slide it crashes"? | |
Re: Your checkbox id is `top-1` and the associated radiobutton id is `top-all-1`. Wouldn't a simple replace be simpler: $('.toppingChecked').change(function() { if (this.checked) { var id = $(this).prop('id').replace('top-', 'top-all-'); $(id).prop("checked", true); } }); | |
Re: Here is [a nice example](http://www.databasejournal.com/features/mysql/article.php/3382171/Transactions-in-MySQL.htm). Here is the link in text, it's incorrectly flagged as inaccessible: www.databasejournal.com/features/mysql/article.php/3382171/Transactions-in-MySQL.htm | |
Re: On line 8 add: echo $delete; And shows us what it outputs. ![]() | |
Re: Read [our rules](https://www.daniweb.com/community/rules) (which you agreed to when signing up), especially: *"Do provide evidence of having done some work yourself if posting questions from school or work assignments"* | |
Re: > i cant use calendar control Correct. You can't use THAT one. There are many third party calendars available, there has to be one that will suit your needs. | |
Re: Read [our rules](https://www.daniweb.com/community/rules) (which you agreed to when signing up), especially: *"Do provide evidence of having done some work yourself if posting questions from school or work assignments"* | |
Re: > What do i need to install as system environment so that i could work with my computer having just Windows https://msdn.microsoft.com/en-us/library/60k1461a.aspx Download and install Visual Studio 2015 Community edition. Choose custom setup and select C++. | |
Re: Sure there is, see ardav's answer. | |
Re: `AllocSysString()` is not a method of `wchar_t`, but of `BSTR` IIRC. | |
Re: Do `print_r($top_ratings);` and show the output here. | |
Re: > I'll see what comes of it all and not worry about things that I can't control. That's the best way to get started. The theory of what you learn and what is actually used in the workplace is quite different ;) Good luck with your search. | |
Re: Is this an issue you have with DaniWeb? If so, can you please give some more information what steps you took and when/how it fails. | |
Re: > how to divide a web page Show an example of what you want to achieve first. | |
Re: [url]http://www.codeplex.com/PHPExcel/[/url] ![]() |
The End.