The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
29 views

why not using Request.Cookies.Clear() in ASP.NET web forms?

I searched here on the stackoverflow about removing all cookies from site, but couldn't find a single answer suggesting the use of Request.Cookies.Clear() method. What's the difference between: if ...
0
votes
1answer
25 views

Uncheck dynamical checkbox -> remove marker

I really searched everywhere but I can't find my mistake in my code. I have information that is dynamical loaded into a checkbox (I only have one checkbox on my html) because I do not know at advanced ...
3
votes
1answer
47 views

How to remove substring from suffix tree?

I reviewed a lot of literature, but I dont found any information about deleting or insertion substrings into suffix tree. There are only Ukkonen's or McCreight's algorithms for building tree. The ...
-5
votes
1answer
55 views

Remove hover effect after click but not the property [closed]

I am using Javascript not jquery . I made menu by referring to this tutorial: http://line25.com/tutorials/how-to-create-a-pure-css-dropdown-menu Now when I click on any menu item the menu must ...
2
votes
2answers
75 views

how to remove an object by button?

i built two buttons with this values("+" and "-") when i click on "+" it creates a text and combo box, i wanna know how to remove them with "-" button?(by only JavaScript) here's the code: <html ...
1
vote
3answers
31 views

Get only elements that are not repeating in an XML

I have a scenario where the XML doc contains some nodes that are repeating. I want to get rid of all such nodes. Please note that this is not "Removing Duplicates". I want to completely remove all ...
0
votes
0answers
16 views

Remove Rows from TableLayoutPanel [duplicate]

I'm trying to Remove all rows from a TableLayoutPanel(which are added automatically at runtime) but I seem to be getting this Error: Object reference not set to the instance of an object. Here ...
1
vote
2answers
89 views

Simultaneous Sorting/Removing data from a List

Currently I have a list of integers. This list contains index values that point to "active" objects in another, much larger list. If the smaller list of "active" values becomes too large, it triggers ...
1
vote
3answers
99 views

How to loop through checkedlistbox and remove selected items in c#

In my app users can add some item in checkedlistbox, than user selects some element and click the button "Remove". How i can loop through my checkedListBox and remove selected items?
-1
votes
1answer
23 views

Removing javascript from loading in magento website

I have a problem, I have 3 javascripts loaded which I don't use. They delay my website for about a second. Can anyone tell me how I can remove those javascripts from being loaded/looked for? Here ...
0
votes
1answer
134 views

Internet Explorer 10 - Removed Flash element still visible?

I'm using iframes to add Youtube/Vimeo videos on my website. Those iframes are removed dynamically using jQuery's $().remove(). While that works on Chrome/FF/Opera/Safari, it behaves randomly on ...
0
votes
2answers
26 views

Erase Activities from Stack

I there, I already read some questions about this, but none helped me, because what I want to do is lightly different. I have this activities, example: A->B->C->D->E On D I have a button to move to ...
-2
votes
4answers
192 views

Removing .php extension from URLs using .htaccess? [duplicate]

Is it possible to remove the .php part from all of my URLs using a .htaccess file? Two examples: http://url.com/home.php http://url.com/shops.php Become: http://url.com/home/ ...
0
votes
2answers
25 views

String casting error in a Doubly Linked list

I asked a question about this code yesterday which helped me overcome that issue, however now I am having other issues. I am taking a doubly linked list and writing the add, remove, reset, etc. ...
0
votes
1answer
95 views

Doubly Linked List -Removal and Adding

This is a class lab, and within it I am attempting to add, remove, etc. into a doubly linked list. I have what I believe to be correct with what I have. I am having problems figuring out how to remove ...
0
votes
2answers
74 views

draw multiple lines and delete individual line

I can draw multiple lines on the canvas; they are added to the layer using drawScene dlayerA1.add(line); line.getPoints()[0].x = mousePos.x; line.getPoints()[0].y = mousePos.y; line.getPoints()[1].x ...
0
votes
1answer
163 views

Remove horizontal scroll bar on background div

I am using the Supersized jquery plugin to create a slide show of background images and text. My problem is that I need my image to have a set with of 1200px. I have no problem creating the look I ...
1
vote
1answer
49 views

How to remove all folders with foldername X within a directory using osx terminal [closed]

There is a folder named X located within a number of subfolders of root directory Y. I want to delete all folders named X that are present in Y and all of it's subfolders. I want to do this using osx ...
0
votes
0answers
126 views

QSqlTablemodel “unable to delete row” error

I use Qt 4.5.3. I have a table with some field called "field". "field" is NOT NULL field. This table has one record, where 'field' = 0. This table has also primary autoincrement key. QSqlTableModel is ...
0
votes
3answers
76 views

Resign keyboard of textfield present in alertview

I have three text fields on an alertview, I set keyboard as decimalType , - (IBAction)heightMethod:(id)sender { self.utextfield = [[UITextField alloc] initWithFrame:CGRectMake(12.0, 45.0, 260.0, ...
0
votes
1answer
31 views

Cocos2d removing objects in distance (java)

Hi i have sprite which is granade ^^ Problem is when it exploding. It should kill all targets in distance (in this case all on screen) but it kills them randomly. public void Explode(Object sender) ...
2
votes
1answer
59 views

NSMutableArray adding or removing

here i have a mutable array in one vc pass in 2nd vc with some values. I need to change values in self.namesFoodSubCategory problem is it also change values in first vc array. Now if i change it to ...
1
vote
2answers
81 views

Move rows with inf to New matrix in R

So I have an NxN matrix, where some of the rows have inf for values. What I want to do is move them to their own separate matrix. Here is an example Matrix A 1 3 9 4 5 2 inf 6 7 ...
0
votes
1answer
260 views

Cannot remove fragment from ViewPager, why?

I must be missing something but I cannot remove a fragment from my ViewPager. I store the page titles in an ArrayList: Part of ViewPagerActivity.java (which is a FragmentActivity, the main activity): ...
0
votes
1answer
169 views

Recursion String in Java and removing characters

Here is what I have so far, but DrJava doesnt seem to compile it. It is supposed to print out "!olleH".. and I keep getting these errors: cannot find symbol : class Sentence, cannot find symbol : ...
0
votes
0answers
46 views

PintOS - Removing open files

I need a little help on this. I've just started a course, and I'm a little behind and basically I dont know what I'm doing. I'm supposed to explain how PintOS handles the removing of open files. Any ...
0
votes
1answer
41 views

Finding an array item with a certain value, removing it and re-indexing array

I've come up with one solution (which I will post below), but I was wondering if there was a better, more compact maybe, way of doing it? function removeImage($id) { $index; for ($i = 0; $i ...
0
votes
1answer
89 views

remove method sorted dictionary java

I am trying to write the remove method of an sorted dictionary using the binary search method. My dictionary is a position-list, sequenced based dictionary. The search method is as follows: private ...
0
votes
1answer
95 views

Removing object from ArrayList in Java

I have this, where everytime a Bullet reaches the position greater than my screen width, it has to be destroyed. When i try this, the game crashes. "bullet" is my class which contains the i's as ...
0
votes
3answers
106 views

How can I remove a last part of a string with an unknown int?

So, I'm making a file transfer program from one PC in my house to the other. The client can look through the server's files and take what it wants. (Makes it very easy for moving ...
-1
votes
3answers
95 views

C Remove first element in a list

I've got a structure: struct Node { int value; struct Node *next; }; typedef struct Node List; And I've implemented adding items to the list but I've got problem with removing element from ...
2
votes
3answers
113 views

Removing Div tag when screen is at a certain size using jQuery or javascript?

Hi I wanted to know using jQuery or javascript can I remove a certain div tag so that its not displayed at all when the screen gets to a certain size lets say 500px.
1
vote
4answers
156 views

How to remove uncommon elements from two arraylist

How do I remove uncommon elements from ArrayList? The scenario is I have two ArrayList objects: arr1 and arr2. arr2 contains almost all elements of arr1. Now I want to remove such elements from arr1, ...
4
votes
2answers
104 views

Is it not inconsistent for Map to have a remove() method but no removeall()? [duplicate]

Possible Duplicate: why not Map#removeAll(Collection<?>)? I've just read why not Map#removeAll(Collection) ?. I feel that was "the wrong question", causing the issue to be brushed ...
0
votes
1answer
400 views

Ext js 3.4 window add/remove Component error

We are using extjs 3.4. The purpose is to replace a component in a Ext.Window. Even if there is no error when we remove the old and add the new component, when trying doLayout() the error Uncaught ...
0
votes
0answers
151 views

In wordpress, how do I remove “http://” user profile website field? I'm sending the data to a CSV form, and don't need the HTTP prefix

So if you look at WP's user-edit.php, the url field reads like this: <tr> <th><label for="url"><?php _e('Website') ?></label></th> <td><input type="text" ...
0
votes
2answers
77 views

Getting segmentation fault while removing one element in it

This is a code that will remove one actor in a one cast. I make a connection between the movies and their cast. So this code is checking whether movie exists and then it looks its Cast and when it ...
1
vote
1answer
93 views

Kate “tab-spacing character” removal or turn-off

I am using Kate Text Editor for Linux Mint 14. I was wondering if there is any way to remove tab spacing? I mean where ever there is a tab-indent, there is a character >> which doesn't look ...
0
votes
2answers
134 views

Removing words from a string applescript

I have a string "remind me to eat dinner at 5:30" I need to remove every word before "to" and every word after "at" I already wrote a script to get the word number of them toNum and atNum I can't ...
2
votes
2answers
111 views

Trying to remove roman numerals and numbers from a <String> arraylist

I'm trying to remove things like "I." "II." "279" (page numbers and chapters) etc from a text file of the story "robin hood". So far I cant figure out how to get rid of the numbers (the arraylist is a ...
-12
votes
1answer
102 views

How to select image on page [closed]

We have a img in page <div><img src="http://incognita.day.kiev.ua/images/com.png"></div> How to remove it with selector?
0
votes
0answers
466 views

C# WMI : Adding/Removing multiple IP addresses to NIC

My application is C# .net Framework 3.5. The main functionality of the application is: let the user choose a network interface card (NIC) assign to the user selected NIC an IP address (and subnet ...
2
votes
1answer
68 views

Removing text from an undeclared div via CSS

Subj. I've got a module for Joomla (don't blame me for using joomla, it's not me, i'm just helping my friend) with advertisment. The problem is that i can't get source codes for any modules, so I have ...
4
votes
3answers
66 views

Removing parent without clicking on children

I have layer A and layer B inside layer A http://jsfiddle.net/PhZhY/ Is it possible to remove layer A with jQuery function remove() clicking just on on layer A and not on layer B?
0
votes
3answers
789 views

Removing items from JList

I've got a simple Jlist with data from List<String>, Now I want to remove selected item from Jlist. Here is the code: final DefaultListModel<String> model = new DefaultListModel(); final ...
0
votes
0answers
142 views

Issue with removing enemies - Actionscript 3.0

I'm creating a game where you shooting the enemies coming towards you by pressing the spacebar. I am able to kill all the enemies most of the time, but there are several times where I kill the first ...
1
vote
1answer
72 views

Removing lines from vi if uneven amount of matches

I am trying to remove all the words with an odd number of vowels with regex. I tried stuff like [aeoui][^aeoui]*([aeoui][^aeoui]*[aeoui][^aeoui]*)
0
votes
3answers
112 views

How can I remove a list of divs from a parent div?

I have a problem with JavaScript. I need to delete a list of divs from the parent div. So i tried this: var divs = parent.getElementsByTagName("div"); if(divs != null) { for(var v = 0; v < ...
0
votes
2answers
38 views

Javascript: Removing a random string inside a string

I want to remove the number and braces but splicing results in the string between the index taken from the string. I just want it removed leaving me with: "1234 ..... ABCDEFG" var mystring = "1234 ...
0
votes
2answers
51 views

AlertDialog without its stock background

This is what I have tried with: public AlertDialogEx(final Context context, View lytCustom) { // Set your theme here super(context, android.R.style.Theme_Translucent); ...

1 2