Tagged Questions
The removing tag has no wiki summary.
8
votes
4answers
378 views
C# event removal syntax
I am confused by the syntax for removing event handlers in C#.
Something += new MyHandler(HandleSomething); // add
Something -= new MyHandler(HandleSomething); // remove
The "new" creates a new ...
5
votes
7answers
9k views
How to replace multiple newlines in a row with one newline using Ruby
I have a script written in ruby. I need to remove any duplicate newlines (e.g.)
\n
\n
\n
to
\n
My current attempt worked (or rather not) using
str.gsub!(/\n\n/, "\n")
Which gave me no change ...
3
votes
1answer
144 views
How can I remove metadata from a JPEG image in Java?
I'm trying to remove metadata from a .jpg file and replace it with nothing. Can anyone provide an example of how I might do this?
2
votes
0answers
153 views
Problem with blank space at the bottom of JQuery tabs
I am using JQuery tabs in my page, and have successfully managed to place the tabs below the content using some borrowed CSS settings/script.
My page has a side bar on the left side, and a menu ...
2
votes
5answers
202 views
Trim any zeros at the beginning of a string using PHP
Users will be filling a field in with numbers relating to their account. Unfortunately some users will have zeroes prefixed to the beginning of the number to make up a six digit number (e.g. 000123, ...
2
votes
6answers
296 views
JQuery Removing all , except matched rows
I am trying to remove all the rows from a table EXCEPT the matched rows:
This code removes the rows that I in fact want to keep -
$("table#traffic").each(function() {
$("td:contains('" + ...
1
vote
4answers
50 views
How do I remove data that was installed as part of an iPhone App I'm devleoping?
I'm developing an iPhone application that's particularly large, and contains loads of videos. (Not my fault, it's on behalf of a client).
I tried to run it on my iPhone, via XCode, not remembering ...
1
vote
1answer
109 views
Removing Debugger installed Visual Studio 2010 Addin
I was trying a test project for creating a visual studio addin in C#.
The addin created some item in the standard toolbar and attached some functionality to it. while I was trying to debug the Addin ...
1
vote
3answers
274 views
Remove every second element from an array and rearange keys?
How should I remove every second element from an array like this (using nothing but the built in Array functions in PHP):
$array = array('first', 'second', 'third', 'fourth', 'fifth', 'sixth', ...
1
vote
1answer
102 views
Removing an item from a many-to-many association in NHibernate
I have a one-directional many-to-many association: the ListDefinition class has the Columns property of type IList, while a column can be part of several ListDefinition-s. The problem is, whenever I ...
1
vote
2answers
98 views
remove unwanted styles from objects using jquery (or php)?
I was wondering if there was any way of removing unwanted style attributes from objects (p, ul, li etc), as for some reason my client has decided to copy/paste information from word into a wysiwyg and ...
1
vote
1answer
133 views
Components are not longer resizable after moving
My question relates to swing programming. I want to enlarge a component (component x) by removing it from its parent panel (component a) and adding it in one of component a's parent (component b). ...
0
votes
1answer
49 views
Bash script removing files unexpectedly
I have this script that I'm running to rename all the files in a folder to "1.png", "2.png", etc, but sometimes it will completely erase (or move the file somewhere else, I have no idea what's ...
0
votes
1answer
83 views
Replacing/removing a base64 encoded image and link from web page or CSS
I am using the web/wap script (wapdesire) which has base64-encoded images in the background of index.php. I am trying to locate the images so that I can remove/delete one, but I can't get a physical ...
0
votes
2answers
90 views
Removing “from” in WP eCommerce
In the product page listing on Wordpress' eCommerce plugin, the prices are listed as "from.." no matter if there's only one price. This gives a bad impression to the customer because it signals that ...
0
votes
2answers
127 views
Python: Deleting specific strings from file
I have a data file (un-structed messy file) from which I have to scrub specific list of strings (delete strings).
Here is what I am doing but with no result:
infile = r"messy_data_file.txt"
outfile ...
0
votes
1answer
104 views
removing items from the JLIST
When the delete button is pressed a runtime error occurs, and the item doesn't delete until the the channelTitleJList (left side of the JScrollPane is pressed again).
Why doesn't the RemoveAction ...
0
votes
2answers
532 views
Removing movieclips of an array from the stage
I need to remove every object that is part of an array from the stage. What I have right now only removes one of the objects.
this.removeChild(enemyList.splice(0)[0]);
I've tried several variations ...
0
votes
1answer
212 views
Windows CMD: Determine which application is using a file
This isn't really a programming question...
Are there any ways to determine which application is currently using a file? I've been infected with one of those autorun.inf viruses. When I try to delete ...
0
votes
0answers
241 views
Removing White spaces in table in RDLC report reportviewer
I want to reduce the white spaces inside a table in between columns. Anyone help on this please...
0
votes
2answers
168 views
Removing array-objects from DisplayList
I'm working on a game for the iPhone using flash, and since memory is crucial i want to clean up displayObjects not needed. All the objects i need to delete is MovieClips taken from some array to ...
0
votes
1answer
382 views
Remove class,id attributes of all tags in given html posted
I have a fck editor in which the user enters some text. And in the code i want to strip the class,id attributes of the text posted. I know this can be done through regular expressions
And i have ...
0
votes
2answers
70 views
How to remove or hide videofile extn in qt
I am having one insert button from which I can select video files either from phone memory or memory card.but all the files are coming with name and extn(.3gp).
How I will remove this or hide this ...