8,966 Posted Topics

Member Avatar for frank-mitchell
Member Avatar for KoniKodes
Member Avatar for SimonIoa

> I press the </>code and >_Inline code tabs. Neither of them open the dialog box Only `</> Code` should open a dialog. What browser are you using? Any interfering plugins? Apart from that you can paste your stuff, then select all text and press tab to indent as code.

Member Avatar for SimonIoa
0
344
Member Avatar for pritaeas

https://www.humankode.com/security/how-a-bug-in-visual-studio-2015-exposed-my-source-code-on-github-and-cost-me-6500-in-a-few-hours

Member Avatar for jwenting
2
232
Member Avatar for pro-tek
Member Avatar for James_43

What brand of remote? Does it have a special driver? Did you check with the manufacturer?

Member Avatar for James_43
0
122
Member Avatar for boomtifier

How is this different from your other request? We don't provide code. Show your code if you have problems, and people here will help you.

Member Avatar for ddanbe
0
206
Member Avatar for rpv_sen

This line returns an array of rows containing the count: return $row_count = $query->fetchAll(); What you should return is the first entry in that array: $row = $query->fetchAll(); return $row[0][0]; // first row, first column Since you only retrieve one row, this is better IMO: $row_count = 0; if ($row …

Member Avatar for rpv_sen
0
597
Member Avatar for jkon

> I believe that this tutorial should be linked in the "read first" section Just did that btw ;)

Member Avatar for diafol
2
693
Member Avatar for strRusty_gal

Using Javascript/jQuery to do an AJAX call is not mentioned. What exactly is the situation you have? Do you have control over the code? Sounds like that controller code should be in a shared assembly.

Member Avatar for pritaeas
0
368
Member Avatar for mjm906

Am not sure whay you mean by "post in the middle", but perhaps you are looking for a "Torx TR" (or TS).

Member Avatar for mindmergepk
0
287
Member Avatar for basil60

Your file ends with `.html`, try changing it to `.php` to get the php interpreter to parse it.

Member Avatar for diafol
0
128
Member Avatar for blueguy777
Member Avatar for Dinesh_14
Member Avatar for gtel

Put your classes in test.css and put the following in the head of the page you want to use them: <link rel="stylesheet" href="test.css">

Member Avatar for diafol
0
154
Member Avatar for pritaeas

http://blogs.msdn.com/b/cdndevs/archive/2015/08/14/intel-just-open-sourced-stephen-hawking-s-speech-system-and-it-s-a-net-4-5-winforms-app.aspx TL;DR: [GitHub repository](https://github.com/01org/acat).

Member Avatar for Slavi
2
135
Member Avatar for Joe_10

> When the program runs it shows the name place for both name and location. Check what is actually in the database first.

Member Avatar for Joe_10
0
178
Member Avatar for nashmug
Member Avatar for zachattack05

Get a lot of threads on the topic first, so there is a reason to add new (sub)forums. Apart from that, put them in Web Design, HTML and CSS and tag them accordingly.

Member Avatar for Dani
0
910
Member Avatar for SimonIoa
Member Avatar for SimonIoa
0
155
Member Avatar for zachattack05

How are you creating your FileSystemWatchers? Am pretty sure they aren't inserted into the Controls array. Wouldn't it be easier to keep track of them in a separate list?

Member Avatar for zachattack05
0
419
Member Avatar for paul-lucas

require '01.php'; // domain includes might not always work Sender::sendEmails(E_NEW_APPOINTMENT, $ca);

Member Avatar for pritaeas
0
401
Member Avatar for pooran.c

It transforms a regular textarea in HTML into a full blown editor, similar to the one you typed this post in.

Member Avatar for cereal
0
251
Member Avatar for devianleong

floor(53 / 9) returns 5 entire blocks. The remainder is 8 (53 - 45) so C will handle that one.

Member Avatar for cereal
0
143
Member Avatar for infrasquare
Member Avatar for FindNerd
Member Avatar for krofox
Member Avatar for semenmalich

@rubberman, it was downvoted because there have been more questions like this lately serving as a spam trap. The OP will not come back and this thread will just get more replies with spam links (like the one above, which is already edited out). If the OP proves me wrong, …

Member Avatar for gualuska
-1
286
Member Avatar for cyb3r khan
Member Avatar for AntonyRayan

https://dev.mysql.com/doc/refman/5.7/en/select-into.html Scroll down to `SELECT ... INTO OUTFILE`.

Member Avatar for pritaeas
0
108
Member Avatar for chinnasamyiITI
Member Avatar for Raza_3
Member Avatar for phoenix254

http://php.net/manual/en/language.operators.comparison.php Scroll down to "Ternary Operator"

Member Avatar for Tpojka
0
184
Member Avatar for Hazuan Nazri

> this system will be access via their phone What language/platform are you building this phone app in? Accessing the phone's camera should be in the SDK.

Member Avatar for almostbob
0
12K
Member Avatar for davy_yg
Member Avatar for Imam_3
Member Avatar for Jiby_1
Member Avatar for Cindy111
Member Avatar for Cindy111
0
26
Member Avatar for Jiby_1
Member Avatar for powerade661
Member Avatar for JOSheaIV
0
245
Member Avatar for rpv_sen

Did you check if you have an ODBC driver for the database you are trying to connect to?

Member Avatar for rpv_sen
0
3K
Member Avatar for Jiby_1

http://php.net/manual/en/function.mail.php Scroll down. You need to set a header with a content type. By default `mail` sends plain text.

Member Avatar for pritaeas
0
324
Member Avatar for adrianmcdaniel
Member Avatar for Cap'nKirk

`DateTaken` is defined in the inner block of the `try` and `catch`. That means, as soon as the block closes, the variable is out-of-scope. You'll need to define the string before the `try` to be able to use it after. string DateTaken; try { // omitted DateTaken = ascii.GetString(TakenDate.Value, 0, …

Member Avatar for Cap'nKirk
0
322
Member Avatar for ddanbe

Nice example. Any particular reason you use `T` in the first and last three methods, yet `dynamic` in the others?

Member Avatar for JOSheaIV
1
778
Member Avatar for BiBi_2

Looks like XML. Seriously, without any additional information we can only guess what you are doing.

Member Avatar for Aeonix
0
172
Member Avatar for yonca.karagoz
Member Avatar for darren2005

Just a note, this is also popular: background-image: url("//mysite.com/images/logo.jpg"); because it works on both http and https without getting insecure content messages. You may want to check for those too.

Member Avatar for darren2005
0
196
Member Avatar for Curious Gorge
Member Avatar for Curious Gorge
0
145
Member Avatar for bflan

The End.