drop

php multiple select drop down

here is my mysql and php code layout: I have 3 tables tableA stores unique "person" information tableB stores unique "places" information tableC stores not unique information about a person and places they have "beenTo". here is how i layed out my form: -one big form to insert into "person" tableA; "beenTo" tableC in the form, a per...

Adobe AIR system tray drop target

Hi there, I would like to make a system tray icon from Adobe AIR app a drop target. Is this even possible ? Digging hard, but without success so far. Thanks ...

DROP TABLE fails for temp table

I have a client application that creates a temp table, the performs a bulk insert into the temp table, then executes some SQL using the table before deleting it. Pseudo-code: open connection begin transaction CREATE TABLE #Temp ([Id] int NOT NULL) bulk insert 500 rows into #Temp UPDATE [OtherTable] SET [Status]=0 WHERE [Id] IN (SELECT ...

drop/truncate and rollback segment

I know that drop removes the data as well as the table structure whereas truncate retains table structure. Does drop/truncate write to roll back segment ? ...

editable dropdown in jquery.

i have a requirement where in the name of the patient will be searched by the doctor ..there may be multiple patients with same name also..so when he starts searching he must get a drop down of all the patients with matching names he has typed.and he must be able to select from it and he must be still able to type new new search and drop...

floated div drops when height of above DIV is greater than X

hi css: .listingContainer { margin:auto; overflow:hidden; padding:0 0 16px 16px; width:660px; } .listingItem { float:left; margin:0 2% 3% 3%; min-height:250px; width:44.999%; } html: <div class="listingContainer"> <div class="listingItem"> <p>Some Content</p> </div> <div class="listin...

Script to drop an index if it exists that works in SQL Server 2005 AND SQL Server Compact 3.5

I have an application with a rather long chain of upgrade scripts. The application works in SQL Server 2005 - I'm trying to upgrade it so it will also work in SQL Compact 3.5 Part of the script involves dropping old indexes if they exist. I REALLY want to have one script that can handle both scenarios. I've been having a lot of success...

What is the purpose of WCF reliable session?

The documentation around this topic is poor. I use WCF services with NetTcpBinding hosted in Windows service. The problem is that a session is dropped when it is inactive for some time. What I need is the session which is always alive. Is WCF reliable session something that can help? Or I can just play with timeout settings? ...

Drag/Drop image url in IE

I have a requirement in our web app. to allow users to drag an image from an external site and drop it in a text editor they have open in our app. This is, as you'd expect, to let them embed the image in the document (its a rich text editor). In IE 8 this functionality appears to be broken. If I drag/drop, IE uses a relative URL for the...

C#, introduce a DragOver delay

In my application I catch a DragOver event and then perform an action. I'd like to wait for half a second before performing the action, the action should not be performed after that delay if the drag operation has ended. The only way I could think of to implement this feature is something like this: Function DragOver Event If TimerT...

jQuery Drag and Drop Checking Question

i am new to using jQuery and I just want to know how I can check whether a draggable object has been removed from the droppable object. Example, i have a dog and I dragged it to a doghouse which has a lightbulb that will light up indicating that the dog is there. When i drag the dog out of the doghouse, the lightbulb should go off again...

Prevent DataGridDragDropTarget from Showing "Drag Shadow"

Hi, is it possible to prevent the Silverlight Toolkit DataGridDragDropTarget from starting a drag-action? What I whant is to use one DataGrid only as DragSource and another one only as DropTarget. And the DropTarget-only-DataGrid should not show this "StartDragShadow" when pressing and moving the mouse over an item. Thanks! Steven ...

How to drag item out from Iframe and drop onto parent

Hi, I have a folder tree view on the left page which was in a tag, left page was the iframe container which contain the file list, when I want to drag the files out from the iframe, I got a headache. no matter the containment option was set to 'parent' or 'window', I just can't drag out elements in the iframe container can any one h...

Adding elements to dropdownlist through javascript

Am unable to add elements to a dropdown list via Javascript. The below piece of code works in IE and Chrome, but not in firefox. ddlId.add(new Option("",0)); In firefox, I keep getting an 'Not enough arguments' exception. Any idea on how to resolve it? Thanks ...

retain drop down value page posting back to itself asp.net

I have an aspx page that has... if (!IsPostBack) { PopulateBrand(); in the Page_Load. This PopulateBrand() simply populates my drop down. That works great and on post back it retains the value. The problem I'm having is that there is also a link on the page that is posting back some parameters to this page. What is h...

WPF drag cursor in default cursors

I'd like to use the default drag mouse cursor on mouse-over a UIElement to indicate a control is draggable. The cursor that looks like an arrow and a FocusVisual rectangle with an overlapping plus sign inside a rectangle. Basically, the cursor that is used when setting DragDropEffects.Copy during a drag operation. However I'd like to...

Resolution problem with drop down menu

http://www.israelnumber.com/new2/ the drop down menu on small resolution is hidden and a scroll bar appears , how can i move the menu to hidden menu to the left? tnx ...

Enforce SQL Server to drop a database

When I'm using Management Studio Express to drop a database there is an checkbox "Close existing connections." which close open database and enforce it to drop. How can i drop a database programmatic by closing open connections and check it's ever exists before? ...

jQuery drag/drop unbinds child links

Hi, I want a draggable div to include a clickable link. Everything works fine until i drag and drop the div. The link inside seems to unbind after drag/drop. Anyone? Thanks! Dirk ...

TSQL need to return last day of month only, how do I drop year, month & time?

I am writing a User defined function in TSQL trying to get the last day of the month regardless of the date input. I am struggling with this as I am a newbie. Any help will be very much appreciated. Here is my function: Alter Function dbo.FN_Get_Last_Day_in_Month2 (@FN_InputDt Datetime) Returns smalldatetime as Begin Declare @Resu...