8,966 Posted Topics

Member Avatar for Rajiv_2
Member Avatar for rafia t

We do not provide ready source code. Show what you have so far. You didn't even specify the language you're using.

Member Avatar for Reverend Jim
0
256
Member Avatar for Maikel

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.

Member Avatar for Maikel
0
141
Member Avatar for gann1

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?

Member Avatar for gann1
0
81
Member Avatar for rpv_sen

> 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 = …

Member Avatar for rpv_sen
0
9K
Member Avatar for vishal_isharani

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 …

Member Avatar for pritaeas
0
373
Member Avatar for MiketheBook

If that is so, then please post a bug report in the feedback forum. Add specifics so Dani can try to reproduce the issue.

Member Avatar for sonipat
0
491
Member Avatar for Ghast
Member Avatar for Ghast
0
126
Member Avatar for vb.n
Member Avatar for vb.n
0
252
Member Avatar for සශික
Member Avatar for සශික
0
361
Member Avatar for hallianonline
Member Avatar for Herbert_1
Member Avatar for pritaeas
0
218
Member Avatar for kieky

This [SO thread](http://stackoverflow.com/questions/10100406/moving-a-team-project-from-one-collection-to-another) might help.

Member Avatar for pritaeas
0
96
Member Avatar for Latrell_vie

> 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.

Member Avatar for Latrell_vie
0
178
Member Avatar for Ts91

Did you check what the `password_verify` function actually does? Do you have the correct hash stored in your user record?

Member Avatar for Ts91
0
182
Member Avatar for Bas_1
Member Avatar for shakayu

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.

Member Avatar for diafol
0
1K
Member Avatar for Louis_4

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"*

Member Avatar for Raul Perez
0
175
Member Avatar for Stefce

In the first snippet, change: $sender_tickets = array($ticket_id); to: $sender_tickets[] = $ticket_id; and swap lines 21 and 22.

Member Avatar for Stefce
0
152
Member Avatar for deboararo

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"*

Member Avatar for rubberman
0
89
Member Avatar for Sandeep_16

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"*

Member Avatar for JamesCherrill
0
238
Member Avatar for Veexe
Member Avatar for basit_3
Member Avatar for jessmark

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"*

Member Avatar for pritaeas
0
83
Member Avatar for rpv_sen

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.

Member Avatar for pritaeas
0
1K
Member Avatar for Suzie999

`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 …

Member Avatar for Suzie999
0
338
Member Avatar for vivosmith
Member Avatar for Sonic1980

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.

Member Avatar for tinstaafl
0
705
Member Avatar for mexabet
Member Avatar for mexabet
0
330
Member Avatar for සශික

You are missing quotes for one, try this: SELECT * FROM expenses WHERE datee BETWEEN '2016-01-01' and '2016-09-01';

Member Avatar for සශික
0
124
Member Avatar for Bensirpent07

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.

Member Avatar for Bensirpent07
0
173
Member Avatar for PinoyDev

using System.Web.UI.WebControls; private void Load_Childrean_byTypeID(int TypeID, Repeater repeatername) { }

Member Avatar for pritaeas
0
190
Member Avatar for bLuEmEzzy

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 …

Member Avatar for pritaeas
0
220
Member Avatar for AntonyRayan

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`

Member Avatar for diafol
0
237
Member Avatar for azegurb
Member Avatar for azegurb
0
324
Member Avatar for kingspartan300
Member Avatar for PsychicTide

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); } });

Member Avatar for PsychicTide
1
289
Member Avatar for ZER09

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

Member Avatar for ZER09
0
364
Member Avatar for janicemurby
Member Avatar for princessxeira

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"*

Member Avatar for pritaeas
0
59
Member Avatar for Hamza_13

> 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.

Member Avatar for JOSheaIV
0
652
Member Avatar for Aarthini

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"*

Member Avatar for pritaeas
-1
61
Member Avatar for Paul7

> 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++.

Member Avatar for rubberman
0
145
Member Avatar for abhi10kumar
Member Avatar for Mr.M
Member Avatar for tinstaafl
0
213
Member Avatar for Gautam_2
Member Avatar for Stuugie

> 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.

Member Avatar for jkon
0
284
Member Avatar for Fiorentino01^

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.

Member Avatar for pritaeas
0
113
Member Avatar for benard16
Member Avatar for yugabharathi24
0
160
Member Avatar for csshacker

The End.