drop

how to clear the wireshark filter combo contents

Does anyone know how to clear the filter drop down (combo) contents in Wireshark? Are the contents stored in a file somewhere? For the life of me, I can't figure this out. And, the Wireshark help file only tells me "The entries in the pull down list will remain available even after a program restart." ...

django drop down menu public template error

Hello, My public template grabs data from Postgres to a drop down menu. The template displays the data in the drop down menu. When the selection is activated the following error occurs: commodity() takes exactly 2 arguments (1 given) The template code, views and URL are here: http://dpaste.com/109411/ Thank you, Ana ...

php dropdown menu population

I'm trying to write a php script that will populate a second drop down menu based on the selection of the a primary drop down menu. i would like to use jquery to do all the non-page refresh stuff. but every thing that i find that exists out there is hard to understand and modify, do you know of anything that was well written and easy to ...

What happens to an existing DB2 view, if the table is dropped ?

If we have created a view on an existing DB2 table and then drop the table. What will happen to the view ? ...

WPF FileDrop Event: just allow a specific file extension

Hi there, I have a WPF Control and I want to drop a specific file from my desktop to this control. This is not a heavy part but I would like to check the file extension to allow or disallow the dropping. What is the best way to solve this problem? Thanks! ...

Drop shadow on a div container?

I have a searchbox with auto-suggest that pops a div up underneath it with multiple search string suggestions (like google). Is it possible to have drop shadow on the auto-suggest box with CSS or will I need a script of some sort? I tried a background image but the number of suggests can vary from 1 to 10 or 15. I'd prefer something t...

Open string in app per drag'n'drop on icon

Hey! My idea: I select a string/text and drop it on my app's icon. My app comes up and does fancy things with the string. Now my question is how I can do it that I can drop it on the app, how I can notify my app and how my app gets the string. Any suggestions? Thanks for answering and any idea! :) ...

Rails migrations: Undo default setting for a column

Hi Stack Overflow Community! I have the problem, that I have an migration in Rails that sets up a default setting for a column, like this example: def self.up add_column :column_name, :bought_at, :datetime, :default => Time.now end Suppose, I like to drop that default settings in a later migration, how do I do that with using rails...

Does dropping a table in MySQL also drop the indexes?

It's not explicitly mentioned in the documentation (http://dev.mysql.com/doc/refman/6.0/en/drop-table.html). I ask because I just saw a curious database migration in a Rails project where the developer was removing all the indexes before dropping the table, and that seemed unnecessary. ...

Flash AS3 drop shadows don't show up when changing height & width

In as3 I'm creating a drop shadow, which works fine. But when I change the height or width of the object (mcWhiteBorder) the drop shadow does not appear at all. Any ideas? var mcWhiteBorder:whiteBorder = new whiteBorder(); var dropShadow:DropShadowFilter = new DropShadowFilter(); dropShadow.distance = 1; dropShadow.alpha = .2; dropShado...

Drop packet with libpcap

Is it possible to have libpcap remove a packet instead of just sniff it as it passes through? I'm wanting to intercept each packet and encapsulate it into a new packet along with measurement data, but both packets (mine and the original) both reach the destination. Many thanks ...

database table will not drop (or show it's inputed data)

hi, if i apply a sql query statement to this table "select * from context.tablename", all i see is the "Executing query.." message and nothing else hapens. I also can not truncate or drop this table. It prevents me from even dropping vhole database. Is it possible, that this problem is caused by inserted data into this table??? I'm usi...

Is there a MySQL command to implement something like "drop tables except t1,b2"?

I want to keep t1,t2 and drop all other tables. ...

How to drop unique in MySQL?

Create Table: CREATE TABLE `fuinfo` ( `fid` int(10) unsigned NOT NULL, `name` varchar(40) NOT NULL, `email` varchar(128) NOT NULL, UNIQUE KEY `email` (`email`), UNIQUE KEY `fid` (`fid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 I want to drop the unique key on email,how? ...

SQL: deleting tables with prefix

Hello, i know how to delete my tables in MySQL, DROP TABLE but now i need to know how to delete my tables who all have the prefix myprefix_ How to? --I NEED TO DO THIS IN PHPMYADMIN, IN A BROWSER. NO TERMINAL STUFF PLEASE. BATCH STUFF IS ALWAYS APRECIATED.-- ...

Editable Dropdown?

I have a php page with 4 text boxes, each need a "drop down" when the text boxes have the focus. Clicking the options would populate the (editable) text box(es) and close the drop down. The text boxes are of course part of html forms. How can I do this inline with javascript or ajax using minimal code? ...

jQuery getting value from a drop down selected

hi, traditionally we write var value = $("#drop-down-id").val(); to get the value. IN my case, some of the options contains multiple words with spaces like "Allow All","Internet Users" etc. What I am getting in VALUE is only "Allow" that is, jquery is trimming off words after the white space.. Is there any other way to solve this? ...

How to drop all user tables?

How can I drop all user tables in oracle? I have problem with constraints. When I disable all it is still no possible. ...

How to drop a list of SQL Server tables, ignoring constraints?

I have a list of half a dozen MSSQL 2008 tables that I would like to remove at once from my database. The data has been entirely migrated to new tables. There is no reference in the new tables to the old tables. The problem being that old tables comes with loads of inner FK constraints that have been autogenerated by a tool (aspnet_regs...

javascript if drop down selected then set value of text box

Hi I've spent some time searching around for this, but can't seem to get it all worked out. I have a shipping drop down and I want to split off the type of shipping and the amount selected and put them into two separate hidden fields. (I am using text fields at the moment for easier testing) For example- if they choose from the first ...