Questions tagged [edit]

to modify (a computer file) by, for example, deleting, inserting, moving, or copying text.

Edit can be done as part of coding or changing configuration files.

The tool which is used for editing is called an Editor. Common editors include vi, emacs etc.

3207 questions
4
votes
3 answers

I want to edit part of a line in a text file

BufferedReader br = null; BufferedWriter bw = null; try { br = new BufferedReader(new FileReader(oldFileName)); bw = new BufferedWriter(new FileWriter(tmpFileName)); String line; while ((line = br.readLine()) != null) { if…
ECEMartina
  • 43
  • 3
4
votes
1 answer

File format of Basemap data files

I would like to know the file formats of the following files data files in Matplotlib Basemap toolkit countries*.dat countriesmeta*.dat gshhs*.dat rivers*.dat riversmeta*.dat states*.dat statesmeta*.dat Also I would like to know…
Andy Stow Away
  • 649
  • 1
  • 8
  • 17
4
votes
0 answers

Wordpress - Approve modified posts

I simply want to be able to re-approve my contributor's edits to an already published post. so when they edit a post it gets sent back for approval. is there a way to do this?
Idra
  • 333
  • 1
  • 3
  • 5
4
votes
1 answer

Rotate 3d model XAML c#

I have written a program, which import a 3d model in XAML format:
bbklol
  • 45
  • 5
4
votes
2 answers

How to use a TEdit box to enter password without showing the characters that is bing entered and only showing a *

I want to make an edit box where an user must enter a password. When they enter the password I want the character not to be displayed, and rather an *. Are there any properties that can be set to do this, I know how to set the TEdit to remain blank…
Japster
  • 985
  • 6
  • 19
  • 38
4
votes
2 answers

Java, Swing, getting and changing all input fields

I'm coding an option's pannel, and to be able to add more options faster while I develop the application, I've decided to get all the input's components's in a Frame, I need to load their values from the config and set the corresponding text but it…
Lautaro
  • 362
  • 3
  • 14
3
votes
1 answer

jqGrid - Grouping fields in edit form

It is possible to group some fields in the edit form? I would like to group some fields together, give them a summarizing name and give the group some different background color and maybe even border so the user can navigate more easily. Suppose I…
Tylla
  • 189
  • 2
  • 14
3
votes
6 answers

Editing a .doc in PHP

I am trying to replace strings in a word document by reading the file into a variable $content and then using str_ireplace() to change the string. I can read the content from the file but I str_ireplace() does not seem to be able to replace the…
Joshua Bambrick
  • 2,669
  • 5
  • 27
  • 35
3
votes
2 answers

How to edit Facebook graph object attributes (i.e video title)?

I'm using ruby Koala, and trying to find how can I edit an existing object's attributes via Facebook graph. All I could find at Facebook documentation is: https://developers.facebook.com/docs/opengraph/objects/#update But didn't find it…
Moozly
  • 192
  • 1
  • 9
3
votes
1 answer

Suggestion for AJAX/live edit of a HTML table

I'm looking for a library for live editing of HTML Tables (AJAX submit). I have forms for adding the records, but the thing is, I'm too lazy to create additional forms (or reuse the add forms with additional parameters) for everything that needs to…
ekstrakt
  • 900
  • 1
  • 12
  • 28
3
votes
1 answer

How can i detect the tabbar item changes from Edit in 'More' tabbar item?

I have 6 tab bar items, 4 titles shown directly and other 2 are in 'More'. I have added 'cell background image' on More tableview. Now the problem is, When i click "Edit" button in More tabbar item and change the tab bar items the tableview…
Yuvaraj.M
  • 9,741
  • 16
  • 71
  • 100
3
votes
2 answers

Use Emacs to Edit Googleplus posts

I would like to use emacs to edit googleplus posts. Is there a script that would launch emacs whenever I edit a post? I do not have good javascript skills but I am willing to try if I am pointed to the right direction. I use Chrome as my main…
ewm
  • 213
  • 2
  • 9
3
votes
2 answers

Back, Edit and Add buttons in navigation bar of TableView with Storyboard on iOS

I'm facing some problems in implementing a tableview, with "Back", "Edit" and "Add" buttons on the navigation bar. The tableview is reached by clicking on a row of another tableview, so the "Back" button is added automatically. With the storyboard…
yassassin
  • 3,185
  • 6
  • 28
  • 31
3
votes
6 answers

Can/should I edit the R.java file. If so, how?

So I'm programming a simple calculator in Eclipse for Android 4.0 and I'm trying to stream-line my code and make it as simple as possible. The place I'm trying to clean up is my findViewById()'s. Since I have buttons 0-9 to instantiate I have a…
Dave
  • 33
  • 1
  • 3
3
votes
1 answer

How jqgrid edit operation send to the server the variables?

i thought that jqgrid send, as variables when you edit a row, the columns names but in the grid i created this seems not to work , unless i have made a mistake somewhere in php. In which method the jqgrid send these data to the server ? Here is my…
F.N
  • 401
  • 4
  • 21