drop

IE 5.5 Float Drop in css div layout

Hi, I'm testing a site for a friend and I've got it to work in all browsers, except IE 5.5 (Looks great in Adobe Browser Lab for all Browsers.) You may ask why I care about IE 5.5 - well I'm pretty familiar with IE 5.5 bugs (especially the bug where it counts borders and padding inside the space it needs to display an element) and can ...

Oracle: If Table Exists

I'm writing some migration scripts for an Oracle database, and was hoping Oracle had something similar to MySQL's IF EXISTS construct. Specifically, whenever I want to drop a table in MySQL, I do something like DROP TABLE IF EXISTS `table_name`; This way, if the table doesn't exist, the DROP doesn't produce and error, and the script ...

why do my select boxes reset after appending a new one?

For once, I am getting the intended results in IE6, but not FF (or Chrome). I have a select box (listing locations) which is dynamically generated using JS. I have a button that allows the user to add more of the select boxes, so they can choose more than one location. When the JS code adds the new select box, the already present sele...

drop down menu padding problem in IE

Hello, I have checked this in IE8 and its compatible mode, in firefox this code is working fine but in IE its not indenting as expected. The code is below: Please help! <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"&gt; <html> <head> <meta http-equiv="Content-Type" content="text/html; c...

Cocos2d on application start gives random fps drop?

Hello, I am developing an iphone game using cocos2d and have it set to to show the FPS. Now most of the time the application will start and run at 60 fps, However apparently randomly sometimes the application will start and top at only 40 fps. This does not happen often and seems to happen only when you quit the application and restar...

Drop role in SQL Server database?

I am trying to drop one of the role in my SQL Server database. I dropped all the members from the role and when i tried to drop role i got this error message: Msg 15138, Level 16, State 1, Line 13 The database principal owns a schema in the database, and cannot be dropped. Does anyone know why? I checked the Owned Schema and it only h...

NSIS- Error handling

I have written an installer and uninstaller in NSIS which creates and drops an sql database, which is working fine. I have written some .bat and .sql files to create and drop the database and then just call these files from NSIS script. My problem is if I keep this database open in SQL Server Management Studio and run the uninstaller ide...

Is it possible to set hippie-expand to show up code in a dropdrown menu in Emacs?

Is it possible to set hippie-expand to have a dropdown menu in Emacs? Or does Emacs have any completion/expansion system with dropdown menu? PS: Already tried Company and Auto Complete plugins but their interfere too much with others plugins. ...

Django reset not dropping tables

I just migrated my dev environment from Ubuntu Linux to Mac OSX snow leopard. All of this was working on Linux. On both, I have used MySQL for Django's db. Django's reset function is not issuing drop commands for all of my app's models. Here is my models.py (with the Forum and User object fields removed for brevity): from django.db imp...

How do you drop a column with an unamed default value constraint and unknown indexes

What is a method of determining if there is a default constraint on a column and its name, and the names of any indexes in order to drop them before dropping the column? ...

How do I drop a column with object dependencies in SQL Server 2008?

The error message I'm obtaining when trying to drop a column: The object 'defEmptyString' is dependent on column 'fkKeywordRolleKontakt'. Msg 5074, Level 16, State 1, Line 43 ALTER TABLE DROP COLUMN fkKeywordRolleKontakt failed because one or more objects access this column. I have already tried to find the default constr...

Selectively drop many tables in Access?

I need to drop 175 of 180 tables in Access 2003 (using an Access 2000 format database). The first thing I tried was going to the table list and trying to select all, control-clicking the ones I want to keep, and choosing "Delete". However, it turns out you can only select one at a time. Then I found out a way to get a list of all the ...

ORACLE :Are grants removed when an object is dropped?

Hi, I currently have 2 schemas, A and B. B has a table, and A executes selects inserts and updates on it. In our sql scripts, we have granted permissions to A so it can complete its tasks. grant select on B.thetable to A etc,etc Now, table 'thetable' is dropped and another table is renamed to B at least once a day. rename someot...

Raw Socket Programming

Hi, I want to implement a simple firewall using raw sockets. I found some sniffer samples but I want to know if it is possible to drop unwanted packets using raw sockets. It is very important for me. Please let me know how can I do that? ...

Force drop mysql bypassing foreign key constraint

I'm trying to delete all tables from a database except one, and I end up having the following error: Cannot delete or update a parent row: a foreign key constraint fails Of course I could trial and error to see what those key constraints are and eventually delete all tables but I'd like to know if there is a fast way to force drop al...

jquery hover on one ul at a time

I have my drop menu sliding down nicely but it does it on all ul's in my navigation. I need it to drop the menu for only the hovered ul.I tried to use the "this" element but don't know enough about jQuery to get it to work. Anyone??? Here's the HTML page (edited for simplicity) <div id="main-nav"> <ul><h1><a href="index.cfm">About U...

How to drop oracle user starting with colon (:)

Help! I've used impdp and had a typo - now I've got a user name starting with colon (:) - e.g :my_schema. How can I drop this user? I've tried everything I could think of to escape it, but nothing helps. Edit: To clarify - I know how to drop a user. I'm having difficulty overcoming the special character issue. ...

iPhone: UITableViewCell drop event

hi all whether there are any event from which I handle the drop event of UITableViewCell. Basically I want to do some task when I drop some thing on a cell of UITableView. So i want to know that whether any event is exist for this purpose? ...

how to destroy myself(the div of dragging by me) when i droped.

$("#b").draggable(); $("#map_canvas").droppable({ drop: function() { //alert('dropped'); aFn(); } thanks ...

How to trigger drop in jQuery?

$(item).droppable({ drop: function(event, ui) { console.log("triggered"); } }); I try to call drop by $(item).trigger("drop", [{},{draggable : $(target_item)}]); But it doesn't work, any ideas? ...