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
9
votes
1 answer

Swift / Enable Editing Mode in View Controller

Because of UI elements, I created View Controller with a TableView inside. But I can't enable editing mode. I tried several methods without Solution. But with using TableView Controller there are no problems. What I tried: override func…
mostworld77
  • 427
  • 4
  • 7
  • 27
9
votes
2 answers

Powershell - how do I edit an existing property in a custom object

I looking for way how update noteproperty in existing psobject, for example I have system.array of psobjects ($a): Group Assigment ----- --------- Group1 …
idMaxCZ
  • 93
  • 1
  • 1
  • 5
9
votes
7 answers

tcpdf edit footer

How do I edit a footer using tcpdf? I want to add current date & time at the footer. Please help.
lv949
  • 91
  • 1
  • 1
  • 3
9
votes
1 answer

Delete a dimension in a NetCDF file

I have a netCDF file with 8 variables and 4 dimensions: latitude (dim: 26), longitude (dim:17), time (dim: a lot) and level (dim:1, pressure level). In order to use it in a specific program I need to have only 3 dimensions: latitude, longitude and…
Douie
  • 201
  • 4
  • 11
9
votes
3 answers

Edit pdf page using pdfbox

How can i edit a pdf page with java and pdfbox by writing in a specific position that i know already in pixels ? I tried this but it overwrites : PDDocument document = null; try { document = PDDocument.load(new File("/x/x/x/mypdf.pdf")); …
Monssef
  • 162
  • 1
  • 2
  • 12
9
votes
3 answers

Edit woocommerce Login register page

I am using woocommerce for an eCommerce website. I want to add one more field in Login Regiser page. On this page there are three fields in registration (Email, Password and Re-enter password) and I want to add one more field for phone number. Can…
user1321381
  • 91
  • 1
  • 1
  • 3
9
votes
3 answers

Is it possible to edit a binary file using Windows command line?

Is there a way in Windows to edit a binary file, from the command line? i.e. a way that could be written into a batch file? I want to be able to edit a single byte, at a known position, in an existing file. This existing question[1] is solved, but…
sam
  • 1,116
  • 2
  • 14
  • 19
9
votes
2 answers

Open & Edit PDF files in Android App with APIs

Okay, this is the first time I'm handling pdf in android. What I have: Editable PDF File with 2 pages (Forms to be exact, with brackets to tick, fields to comment etc.) What I need to do: Store the PDF some where is the sd card (so that users do…
Annabel
  • 430
  • 2
  • 8
  • 20
9
votes
6 answers

How do I use 'placeholder text' in a win32 edit control?

Take a look at the top-right of the Stack Overflow site. The search box has some text in it saying "search". When you click within it, the text disappears. I want to do something similar to this - if a win32 edit control is empty (i.e. has no text),…
Colen
  • 13,428
  • 21
  • 78
  • 107
9
votes
1 answer

How to convert indentation from 2 spaces to 4 spaces

Possible Duplicate: HOWTO: Fix Python Indentation I have Python library where only 2 spaces indentation was used. I need automated way to convert all files to 4 spaces indentation. Is there any tool/script/editor for that? Plz don't suggest…
Pavel Paulau
  • 786
  • 2
  • 7
  • 19
9
votes
3 answers

Why shouldn't django settings be altered at runtime?

The django docs clearly states You shouldn't alter settings in your applications at runtime. Here's the link to that statement My question is, why is this so? I want to add applications dynamically at runtime, and add databases at runtime, both of…
iancoleman
  • 2,766
  • 2
  • 19
  • 17
9
votes
4 answers

In-place editing of a subitem in a TListView

I have a ListView with 3 columns and would like to edit the third column, aka Subitem[1]. If I set ListView.ReadOnly to False, it allows me to edit the caption of the selected item. Is there an easy way to do the same thing for the subitem? I would…
Aaron
  • 896
  • 3
  • 11
  • 22
9
votes
2 answers

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…
Corrine
  • 193
  • 2
  • 5
  • 11
8
votes
1 answer

Custom edit control win32

I finally managed to get my syntax highlighting done using richedit and iczelion's tutorials. Now that i find it, it certainly is not fast enough. I am thinking of taking this one step ahead: a custom edit control. But i do not know how to go about…
devjeetroy
  • 1,855
  • 6
  • 26
  • 43
8
votes
4 answers

Gridview disable edit on 1 column asp.net

I am using a gridview Edit to edit the values i have in my gridview, when i press edit, all columns can be edited, i would like that one of the columns is not allowed to be edited. Is there any way i can do this? Thiss is my aspx code:
Karl
  • 781
  • 2
  • 9
  • 26