|
So around 4:30, while I was in the bathroom, my BF asks me to please leave the bedroom door closed. No problem. Then he goes out the door. I thought that maybe he was going on a walk so I thought nothing of it. When I came out of the bathroom and into...
Started by 3nhvn1onearth on
, 11 posts
by 7 people.
Answer Snippets (Read the full thread at cafemom):
And remember to breath ....
See if a firend of his can Check local bars .
Hope you find something out soon Posted on CafeMom Mobile Deep breath, first call his firends, then hospitals and local jails .
I'd be sick with worry.
How long has he been gone? Wow.
|
|
Right now I'm using Jeditable for edit-in-place functionality. Jeditable has some nice options, but (as far as I know), it doesn't allow you to trigger editing except by clicking the element in question.
I.e., suppose my element has id comment . With ...
Started by Horace Loeb on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Use code like:
$('#id-for-text').click(function(){ $('#comment').trigger('click'); }); Based on your comments above you could do this:
var editFn = (function(){ return $('#comment').click; })(); $('#id-for-text').click... .
Check out jQuery's trigger method.
|
|
I doubt I'll ever become an expert C programmer, but I decided to check out the K&R book to sharpen my skills and see what supposedly one of the best programming language books is like. I requested a copy of the second edition through my library, but ...
Started by Doomie on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
(The language changed and the book reflects that.)
Should I insist on getting the second edition?
IMO yes....
Are there significant differences between the editions?
Yes.
Is the first edition good to learn from?
If you're an historian.
|
Ask your Facebook Friends
|
Hello everyone,
I am developing (using C# + VSTS 2008 + IIS 7.0 + SQL Server 2008 Express edition + ASP.Net + x64) a web application, small scale (at most 1000 users and at most 20 concurrent users on the web site, and database size within 1G bytes).
...
Started by George2 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Here's a comparison of the different editions....
But if all you're doing is hosting a web site, why not go with Server 2008 Web Edition for even less money.
Standard would be fine.
You definitely don't need Enterprise just to host a website .
|
|
I'm trying to test Coldfusion for learning purposes, but I really don't know what is the aditional features that the non-free Enterprise Edition add to the free Developer Edition.
Thanks!
Started by denica001 on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
|
|
Suppose I'm editing a very long and messy HTML file. With my cursor at an open tag, is there a way to jump to it's closing tag?
Started by Steve on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
With ARG, do it that....
(nxml-forward-element &optional ARG) Move forward over one element.
It is bound to C-M-n.
Assuming you're using nxml-mode:
C-M-n runs the command nxml-forward-element, which is an interactive compiled Lisp function in `nxml-mode.el' .
|
|
When you develop web applications, especially ones that deal with a good amount of data management (e.g. contacts, addresses, orders and so forth), do you usually create the interface as in-place edit or make a separate "edit" page (and a view-only page...
Started by Alex on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
For things like settings where the main use for viewing the page is to edit it, inline makes sense, they hit an edit button The same page is shown but with editable fields and cancel / submit buttons field to show, which is set by....
|
|
I've seen references to the ability (in VS08) to jump back and forth between the various places that i've been editing. E.G. I use 'Go to Definition' to inspect a method - what's the keyboard shortcut to return to where I was?
thx
Started by justSteve on
, 5 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
(Also, Ctrl-Tab takes you to the next document.)
Ctrl-- (Ctrl and the minus key) goes back to the place from where the latest navigation... .
You can Go To Definition and then hit Ctrl-Shift-Tab to go back .
Ctrl-Shift-Tab takes you to the previous document.
|
|
By default, when you create a local database cache using the wizard provided by Visual Studio 2008, it will create a SQL Server Compact edition database for you, and provide you synchronization capability between the cache and remote SQL Server using ...
Answer Snippets (Read the full thread at stackoverflow):
Only thing I'd warn though is that SQL Server can take up some extra RAM (200 - 500 megs) and it's not always going to be obvious to your users why their... .
You can have the installer install SQL Server Express onto their computers .
Yeah, you can do that.
|
|
Possible Duplicate:
How to switch between Windows 7 Editions?
I have Windows 7 Ultimate RTM installed on my laptop. It's currently on a 30 day trial (I'm an MSDN subscriber through work). Well, at work we now have Windows 7 Enterprise available (this ...
Started by Mick on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
It is....
I have yet to see a hack or workaround to do this either and I suspect we won't see one, as there probably isn't a huge demand for this type of thing .
Unfortunately there is no official or supported way to do this besides a format and reinstall .
|