edit

Looking for a simple C# numeric edit control

Hello, I am a MFC programmer who is new to C# and am looking for a simple control that will allow number entry and range validation. ...

java mp3/audio editing/trimming library

I am looking for a java library that will allow me to "trim" an audio file so that I can pull out and save X amount of seconds of an audio file. Ideally, I am looking for something that would be like a substr for an audio file. If I want from 123 seconds in to 153 seconds in I would be able to do: coollib.load('bigfile.mp3'); coolli...

Editable Word Document from JSP

Is there a way to create a link in a JSP page to a Microsoft Word document that you can edit and have it post back automatically to the server? I'm using Websphere Portal. Thank you! ...

SharePoint Edit Tasklist Task

Hi, I have SharePoint setup, and for a test I added a Task List, added a few columns, and tested it out. I wanted to modify the task list task page, not the task list page. I can edit the task list page, but I cannot edit the task list task page. I am missing the Edit Page button from site actions on that page. How can I edit the pag...

Edit form doesn't return selected value

I have a webform created in Rails that asks if someone has children or not? If I submit the form, it's able to get inserted into the db. When I edit the form, it doesn't show it ask selected. For example, the field is <%= f.select :have_children, [ ["Yes", 0"], ["No", 1] ] %> Whenever I select "No" and then edit the form again, it sho...

ResourceWriter data formatting

hi everyone i have resx file to update some datas.I can read data over resx via ResXResourceSet object but when i wanna save the data back the saved data format is not clear...how to edit resx files? thanks ResXResourceSet st = new ResXResourceSet(@"thepath"); entries=new List<DictionaryEntry>(); DictionaryEntry curEntry ; ...

Editing a JTable with Vectors

Hi, I'm doing a mini project using JTable. I used the Vector type for the row values. For example, public Vector textData = new Vector();. The problem is when I edit the cells in the JTable, it is editable but not keeping the changed value. That is, when I enter data in 1 cell and move on to next cell, the previous data is not updated....

Can the submission of a rails form avoid navigating away from the current view?

I have a bit of javascript magic going on to create and hide divs on the fly as the user interacts with the page. Each div contains a view of some part of my application and each model instance in these views has an owner. If the person browsing the page is NOT the owner, they just see the data. However, if the user is the owner of th...

DataGridView: Change Edit Control size while editing

Hi all, in the DataGridView I want the cell size to expand according to the string length when I edit the cell. Excel does the same. In the DataGridView, when entering edit mode, a DataGridViewTextBoxEditingControl is placed at the cell position. I tried to change the bounds/size of this control, but result is just a short flicker of m...

What is the best way to edit the middle of an existing flat file?

I have tool that creates variables for a simulation. The current workflow involves hand copying those variables into the simulation input file. The input file is a standard flat file, i.e. not binary or XML. I would like to automate the addition of the variables to the flat input file. The variables copy over existing variables in...

windows forms: textbox with history

hello, does anyone know about a windows forms control that acts like the address bar of a browser? it is just like a textbox, but to the right there is a dropdown menu that shows the history of previously entered text. thanks a lot! ...

Modify a .txt file in Java

I have a text file that I want to edit using Java. It has many thousands of lines. I basically want to iterate through the lines and change/edit/delete some text. This will need to happen quite often. From the solutions I saw on other sites, the general approach seems to be: Open the existing file using a BufferedReader Read each l...

mysql query browser edit button disabled

Has anyone had this problem? I deleted a column in the table editor and then went back to MySql Query Browser but the edit button was disabled. Can't seem to figure it out and I hate MySql's forum format so i decided to ask here. Any help is greatly appreciated! ...

How to edit the SQL Agent Job from within SSMS 2005?

I am trying to edit or view the SQL Agent's job (I am the owner of this job) from SSMS 2005 and I can't find out how to do this. When I am doubleclicking a job or entering job's properties I get empty "New Job" window. Is there some way to correct this behavior? Thanks ...

Rewrite standard controls like edit, combo, etc?

I have a custom control: it's managed code, which subclasses System.Windows.Forms.Control. I want to add things like edit boxes, selection lists, combo boxes, radio buttons and so on to places on this control. An easy way to do this is to simply add instances of these classes to the Controls collection, so that they become child control...

MVC: Set value in autocomplete on Edit

Hi, in our MVC application we use jQuery autocomplete control on several pages. All works fine on Create but I can't make it work on Edit. Effectively, I don't know how to make the autocomplete controls preload the data from model and still behave as an autocomplete in case the user wants to change the value. Also how can I make sure...

How do you add an edit button to each row in a report in Oracle APEX?

I'm using Oracle APEX and I have a report region in a page that displays columns from a SQL query. I want to add edit buttons to the first column of this report so that the user can click on it and edit/review one of the results. How do I add this edit button? Thanks. ...

Rails, Edit page update in a window

I have my code working so that I have a table of businesses. There's a pencil icon you can click on the edit the business information. The edit information comes up in a partial inside of a modal pop up box. The only problem is that once they make the changes they want and click update, it sends them to the 'show' page for that busine...

Django editing in place

I would like to display a list of records from my database, then for each record, have two fields which the user can edit in place without needing to be directed to another page for editing. How do I go about this ...

Batch / Find And Edit Lines in TXT file

I want to create a batch while which finds specific lines in a batch file and are able to edit these lines. Example: //TXT FILE// ex1 ex2 ex3 ex4 i want to let the batch file find 'ex3' and edit this to 'ex5' to let it look like this: ex1 ex2 ex5 ex4 ...