8,966 Posted Topics

Member Avatar for Faisal_10
Member Avatar for mrhankey
Member Avatar for janicemurby
Member Avatar for Sagar_7
Member Avatar for pritaeas
0
187
Member Avatar for deniseaddy

Usually, you will add the web service reference locally in Visual Studio. When you publish your website (for deployment) all relevant files will be created for use on the web server (including everything needed for the WSDL). The only thing you have to do is backup and replace all old …

Member Avatar for pritaeas
0
774
Member Avatar for Kosikfl
Member Avatar for westsiderailway
Member Avatar for Simon_4

Are you perhaps looking for a masonry layout? http://www.bootply.com/tagged/masonry

Member Avatar for pritaeas
0
241
Member Avatar for Aeonix

`/--(.*?)--/` and `/\+\+(.*?)\+\+/` should do it. Do you need them in one? `--(.*?)--|\+\+(.*?)\+\+`

Member Avatar for Aeonix
0
270
Member Avatar for AntonyRayan

Your query appears correct. If you are not getting what you need prepare a sqlfiddle for us to work with, and tell us what output you expect.

Member Avatar for pritaeas
0
161
Member Avatar for davidbcn

The above works, but it may get you blocked as a spam sender. Why can't you just add all your recipients as BCC, and send it to yourself? I see MailChimp mentioned in your of your functions. Why not use that to send your e-mails instead?

Member Avatar for davidbcn
0
131
Member Avatar for AntonyRayan

http://www.brianshowalter.com/calendar_tables It shows you how to insert dates within a date range by using a query. You can use that part to do what you want. However, I strongly recommend using a date table as described in the post.

Member Avatar for pritaeas
0
164
Member Avatar for PerplexedB

> is there a native method? I don't think so. I think you'll have to loop through your columns and rows and create the array from there.

Member Avatar for Martin_10
0
2K
Member Avatar for zachattack05

Have you tried it? Parameter names for private methods shouldn't really matter. I tried to locate it on MSDN, but haven't found it yet.

Member Avatar for ddanbe
0
298
Member Avatar for Dani
Member Avatar for pritaeas

In response to [this thread](https://www.daniweb.com/programming/web-development/threads/499762/jquery-for-dropdown-textbox) I've decided to paste the linked example as a code snippet (updated to html5/jQuery2).

Member Avatar for diafol
2
339
Member Avatar for Thomasio

Your code is connecting every run of the loop. This may cause connection issues, as you are not explicitly closing/clearing your object. Best way to do this is something like this: [CODE] // Settings that do not change before the loop $mail = new PHPMailer(); $mail->IsSMTP(); $mail->Host = "..."; // …

Member Avatar for cereal
0
502
Member Avatar for ravi142

The first link is different from the second (in the reply). Did you make a typo when submitting?

Member Avatar for Zueas
0
744
Member Avatar for overwraith

Been using Telerik at various companies, so IMO it's widely used. My experiences are mixed. As long as you use their stuff in a straightforward way, everything is nice and shiny. As soon as you need something more advanced or customized problems are arising. The help forum is only helpful …

Member Avatar for overwraith
0
291
Member Avatar for gogs85

Closed. Continue here: https://www.daniweb.com/programming/web-development/threads/500929/ajax-post-data-in-mysql

Member Avatar for pritaeas
0
303
Member Avatar for UK-1991
Member Avatar for UK-1991
0
255
Member Avatar for amith_ami

Hard to tell definitely from the above code, but it might be possible to create a `INSERT INTO () SELECT` which does all that work at once. If you create a SqlFiddle with some sample data and your actual queries people might be able to help you out.

Member Avatar for diafol
0
243
Member Avatar for Riteman

If you use a composite PK in your users table, your auto increment will work as expected.

Member Avatar for Taywin
0
209
Member Avatar for pritaeas

I have a MultiView in a part of a WebForms page (within a RadPane which is a Telerik component). It contains two Views, an overview and a detail view. When switching between them, the scrollbar position is kept, but I would like to force it to the top. All options …

Member Avatar for pritaeas
0
356
Member Avatar for Dani
Member Avatar for diafol
0
377
Member Avatar for azegurb

You're code is flawed. `xhr.ResponseText` may not have a value right after sending because the request is asynchronous. Read more [here](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/Using_XMLHttpRequest).

Member Avatar for Taywin
0
277
Member Avatar for Saboor880

> what is difference between sql server and sql server management studio? SQL Server is the actual database server. SQL Server Management Studio is a GUI to simplify creating tables, running queries etc.

Member Avatar for JOSheaIV
0
343
Member Avatar for iamthwee

Depends on your level I guess. Codeigniter is a good start, Laravel is much better designed (using modern features as IoC) IMO. From what I've learned in C# coding mechanics, Laravel is the better fit.

Member Avatar for diafol
0
766
Member Avatar for shashigowda

$keyword = mysql_real_escape_string( trim($_POST['keyword'])); $keywords = split(' ', $keyword); foreach ($word in $keywords) $queryKeyword[] = "'%$word%'"; $where = implode(' OR keyword LIKE ', $queryKeyword); $sql = "SELECT title FROM search WHERE keyword LIKE $where";

Member Avatar for pritaeas
0
2K
Member Avatar for Deva Kaur

> is there any codings involved?? in scanner Usually not. If you have a keyboard wedge scanner as rproffitt said, you can only configure them if you need to. You can set it to end with CRLF for example, but in most cases you don't need to change this.

Member Avatar for pritaeas
0
346
Member Avatar for Simon180

Here is a more recent example: http://stackoverflow.com/questions/18122219/aes-crypt-delphi-php-corrupted-output

Member Avatar for Simon180
0
1K
Member Avatar for davy_yg
Member Avatar for perez-martin

If they don't support it, then only refreshing the chart can work (but not recommended). However, I think this question is more suited to be asked to Shield support.

Member Avatar for baker-thomas
0
254
Member Avatar for SirMahlon

So just keep row count in a variable, and use that to determine when to insert your ad.

Member Avatar for SirMahlon
0
218
Member Avatar for pritaeas

Hi. We're looking into building an easy to use audio player to use at parties. BPM Studio works great, but most people don't know it and have trouble using it. So far I've found [NAudio](https://naudio.codeplex.com), which makes playing mp3's easy. I'm looking for something I can use so I can …

Member Avatar for qingshan05
0
438
Member Avatar for bLuEmEzzy

$disabled = $stat =='a' ? 'disabled' : ''; echo "<select name='name' id='name' $disabled>";

Member Avatar for bLuEmEzzy
0
2K
Member Avatar for blueguy777

Your quotes are wrong, MySQL needs single quotes: $values = "('$mobile', '$routeID', 'INVALID')";

Member Avatar for pritaeas
0
251
Member Avatar for Jack_14
Member Avatar for pritaeas
0
274
Member Avatar for UK-1991
Member Avatar for UK-1991
0
431
Member Avatar for hwoarang69

It gets easier if your keywords column would be changed to a link table where each keyword is linked separately. If have written a tagging example for PHP/MySQL that can be implemented in SQL Server: https://www.daniweb.com/programming/web-development/code/460663/article-tagging-example

Member Avatar for pritaeas
0
1K
Member Avatar for jana_2
Member Avatar for jeffersonalomia

A file is unlikely to have all those content-types. It cannot be an mp4 AND a pdf. You need code to choose just one. You might also want to set the correct content-length. See the example: http://php.net/readfile

Member Avatar for jeffersonalomia
0
463
Member Avatar for Ventech_IT
Member Avatar for LibraryCode
Member Avatar for UK-1991

> Add a friend button is not working What exactly is not working? Next time please write your question with some punctuation. It's very hard to read.

Member Avatar for pritaeas
0
362
Member Avatar for london-G

> There is something wrong What is it supposed to do, and what isn't it doing exactly?

Member Avatar for london-G
0
174
Member Avatar for Dani

> But how do you tell it that the username column should update? You shouldn't. In a normalized database the member name should not be repeated. If you do want to update it, create an update trigger on the members table.

Member Avatar for cereal
1
327
Member Avatar for IntegratedTweak

I think he means the Geek's Lounge. It's gone, just post under Community Center.

Member Avatar for Dani
0
876
Member Avatar for davy_yg

Check what gentlemedia showed you, because your version is not identical.

Member Avatar for gentlemedia
0
231
Member Avatar for dtpp

Not sure there is one, because asp.net is designed to run in a browser. Why run a browser in a browser. Put html in a div or iframe (depending on what you have) and you're good to go.

Member Avatar for pritaeas
0
317

The End.