8,966 Posted Topics

Member Avatar for olajyde027
Member Avatar for Jane160768
Member Avatar for pritaeas
0
210
Member Avatar for jrosh

http://msdn.microsoft.com/en-us/library/ms187331.aspx "up to a maximum of 24 hours"

Member Avatar for pritaeas
0
93
Member Avatar for chandub

Try casting you revision_no to a decimal: order by cast(revision_no as decimal)

Member Avatar for pritaeas
0
188
Member Avatar for turpentyne

> This code assumes (as you've written), that the class you're identifying is last in the class list Be careful with such an assumption. As soon as you add/have code changing classes, this may no longer be valid and can lead to strange results.

Member Avatar for chr.s
0
127
Member Avatar for syedn
Member Avatar for pritaeas
0
85
Member Avatar for Helper guy

It depends on what you already know, and what you want to build. So, what's your background?

Member Avatar for mattster
0
159
Member Avatar for tinjuashok
Member Avatar for <M/>
Member Avatar for Assembly Guy
0
429
Member Avatar for efraimo

> i get sometimes talks of Port 80 and one other Port already in use. Most likely because either IIS or Skype is running.

Member Avatar for pritaeas
0
205
Member Avatar for crazymidget01
Member Avatar for LastMitch
0
181
Member Avatar for TimCadieux

`undefined` is Javascript, not PHP. You maybe thinking of `null` but `isset` takes care of that check. What you could do is combine `trim` and `empty`.

Member Avatar for TimCadieux
0
199
Member Avatar for abdulazeem
Member Avatar for ganesh641

The installer is available from the sqlite website. As a tool I use Navicat (paid), but a search will give you plenty of free ones.

Member Avatar for pritaeas
0
150
Member Avatar for ivanichi

What exactly are you trying to achive? It's not clear to me. Your code however indicates that you must be overcomplicating things. Can you explain with a simpler example/flow of what the input is and what the output is?

Member Avatar for ivanichi
0
578
Member Avatar for jethaya

A text area cannot hold HTML content (the table), unless you escape it. What are you trying to achieve?

Member Avatar for jethaya
0
338
Member Avatar for Dazzler123

INSERT INTO PhoneNumbers (idPerson) SELECT id FROM Persons Will insert any/all ID's from Persons into Phonenumbers. INSERT INTO PhoneNumbers (PhoneNumber) VALUES (@PhoneNumber) This one then adds a new record with just the phonenumber.

Member Avatar for pritaeas
0
204
Member Avatar for shailaja04
Member Avatar for ansumariyam88

In the editor's toolbar, click "Files". You should get some "Choose" buttons. If you select a file, it will be automatically uploaded and attached.

Member Avatar for Reverend Jim
0
212
Member Avatar for mbarandao
Member Avatar for riahc3

I really doubt that there are multi-platforms drivers. I haven't seen any although that still doesn't mean there aren't any. Which Delphi are you using?

Member Avatar for pritaeas
0
177
Member Avatar for Buppy

[url]http://james.padolsey.com/javascript/things-you-may-not-know-about-jquery/[/url] The above link shows how you can get to the bound events for all elements, perhaps it can be of use, in combination with the suggestion from stbuchok. Can you explain why you cannot get to the creation code ? Trying to get this working will be really messy.

Member Avatar for kela_wala
0
248
Member Avatar for gaasha
Member Avatar for pritaeas
0
135
Member Avatar for amith_ami

Am sure the API provides you with a search function. I have no access to the documentation, so check there. If you already have code and it's not working, post it here.

Member Avatar for pritaeas
0
226
Member Avatar for bikashjit

> What programming language I need to learn for that That choice is up to you. Pick a server side language your website supports, and/or you are comfortable with.

Member Avatar for kittyshen2013
0
179
Member Avatar for Papa_Don
Member Avatar for amvx86

[MSDN](http://msdn.microsoft.com/en-us/library/windows/desktop/ff818516(v=vs.85).aspx) perhaps? Or something like this [book](http://www.amazon.com/Win32-API-Programming-Visual-Basic/dp/1565926315)? I know it's old but the basics are still the same. Most new books only address .NET

Member Avatar for tinstaafl
0
387
Member Avatar for <M/>

> is that a good thing? Yes. > What do I do now? Either start the services, or disable your firewall block.

Member Avatar for <M/>
0
735
Member Avatar for ABDALSLAM.ALI
Member Avatar for jhai_salvador
1
410
Member Avatar for nisbusiness
Member Avatar for nisbusiness
Member Avatar for pritaeas
0
117
Member Avatar for spowel4

Sounds like a sub-select. SELECT * FROM Stock WHERE invoiceNumber IN ( SELECT invoiceNumber FROM Stock WHERE stockNumber LIKE 'CC%' )

Member Avatar for spowel4
0
152
Member Avatar for otengkwaku

> was i wrong in publishing the code (software)? No. If you think it's ready and well-tested, you should. > when it is even good to publish a code (software) as a finished product. I've never seen a (completely) finished product. > so as developers what do we do? Create …

Member Avatar for snippsat
0
296
Member Avatar for IT_Techno

An integer column has no formatting so the zeroes are useless to it. Is there a reason you need it stored in the database like that? Adding zeroes is just a presentation issue.

Member Avatar for IT_Techno
0
202
Member Avatar for Squidge

Make it easy on yourself: Change the call from `fetchAll` in my class to: while ($row = $statement->fetch(PDO::FETCH_ASSOC)) { $result[] = $row; }

Member Avatar for pritaeas
0
150
Member Avatar for cucolino

You can recreate the MessageDlg by using your own (new) form, so you have complete control over it.

Member Avatar for cucolino
0
232
Member Avatar for bibiki
Member Avatar for tubzz

It defines the link between two tables, 0 or more, or 1 or more. The last one has to have at least 1 matching record.

Member Avatar for tubzz
0
79
Member Avatar for ABDALSLAM.ALI
Member Avatar for ABDALSLAM.ALI
Member Avatar for James singizi

The OOP introduction is in the PHP Tutorial section. That wrapper is a nice start. A shame it hasn't been updated, has potential.

Member Avatar for pritaeas
0
323
Member Avatar for turpentyne

$(function(){ $("#hotspot_details1").hide(); $("#hotspot1,#closer").on("click", function(){ $("#hotspot_details2").hide(); $("#hotspot_details1").toggle('fast', function() { /* Animation complete.*/ }); }); }); Since this part is the same on all I guess, you could make it generic. Although it would be easier to use the class for that: <img id="1" class="hotspots" src="images/transp.gif" style=""> <img id="2" class="hotspots" src="images/hotspot.gif" style=""> …

Member Avatar for pritaeas
0
168
Member Avatar for kimmi_baby

You just need to run this script on your server. Just replace the database names, with the ones you have. You can execute it on the command line or through phpMyAdmin, or whatever you use normally to do database changes.

Member Avatar for alexflp
0
462
Member Avatar for sushants
Member Avatar for savedlema

As to your second question: mysqldump only exports information (hence the "dump" postfix). It was never designed to receive input, that's why it doesn't work.

Member Avatar for savedlema
0
465
Member Avatar for Stuugie
Member Avatar for Stuugie
0
87
Member Avatar for compulove
Member Avatar for wvoke9
Member Avatar for compulove

> Are those server hosting sites secure Define what you mean. Am sure they all provide security (some more than others), but if you install a bad script, than you are to blame, not them.

Member Avatar for crazygal
0
216
Member Avatar for wvoke9
Member Avatar for wvoke9
0
208

The End.