to modify (a computer file) by, for example, deleting, inserting, moving, or copying text.
1
vote
2answers
36 views
How to comment/uncomment Python code in Vim
I wish to have a single command to toggle commenting in a line / block of python code.
I am using the following code in my .vimrc file:
" (un-)commenting
" comment line, selection with Ctrl-N,Ctrl-N
...
1
vote
1answer
8 views
Formatting code inconsistency
public static bool IsAwesome { get { return true; } }
public static bool IsAwesome { get { return true; } }
My question is: why does the second one work while the first one doesn't? I used the ...
-1
votes
0answers
13 views
Eclipse plugin that updates edit view(and buffer)
I am trying to create an Eclipse plugin, that would require to update current edit buffer. What would be extension point used for this plugin. Actually this is not an editor plugin, it should update ...
1
vote
1answer
53 views
tile edit view wrong context for vocabularies
I have a persistent tile that has a choice field:
subjects = schema.List(
title=_(u"Subjects"),
value_type=schema.Choice(
vocabulary='my.subjects'
),
)
but this is failing on ...
0
votes
1answer
39 views
cakephp - datepicker bootstrap not populate when use a edit action
I'm using a datepicker for bootstrap in my application. Here is my HTML code:
<div class="input-append date pull-right" id="dp3" data-date-format="dd-mm-yyyy">
<input name="dataregisto" ...
1
vote
0answers
31 views
Ajax script to Edit records in MVC3 don't working
Hello I was doing tutorial from this page here I was mostly copying
http://ricardocovo.com/2011/04/03/asp-mvc3-editing-records-with-jqueryui-dialogs-and-ajaxforms/
And It's don't working and I ...
0
votes
3answers
32 views
iOS - how to implement crop image like default photo album?
The default crop function in iPhone photo album
Does any one know how to implement this? I want to crop it before Use button is tapped.
0
votes
1answer
14 views
simple_form - how to specify form's action attribute
I am using simple_form gem and have a ordinary rails scaffold which is working perfectly - I am able to update/create/destroy records.
When I add the views in application <%= yield %> a issue ...
2
votes
2answers
37 views
How to edit data sets in R for multiple criteria?
Say I have a large set of data in R that has variables latitude, longitude, magnitude, and depth (for earthquakes) and I want to create a new data set that includes data for all the variables but only ...
0
votes
1answer
26 views
Android EditText: How do I get rid of the graphical glitches?
When I create an EditText in a standard-activity using the following setContentView with the following View:
public final class TestView extends LinearLayout {
public TestView(Context context) {
...
0
votes
1answer
17 views
Generating a video with web technologies from a template?
I am looking to create a system that will let a user create a video based on say an after effects file, or any others ( a premade template) but it would populate the users information in it instead. I ...
0
votes
0answers
24 views
SharePoint. For the same list item should be one user in edit mode others users in display mode. Code-behind
I have a task:
When one user open list item on Edit in SharePoint others if try to open the same list item will see display form and delete button should be disabled.
Anybody knows how to do this by ...
0
votes
1answer
33 views
I have a .dll that I want to edit with the source code. Which files would I need to edit?
I only want to edit a function in the .dll.
I have these following file types: .c, .h, .lib, .def, and the actual .dll.
Say I want to change a function's parameters from 1 to 2 variables, which ...
0
votes
0answers
19 views
Edit Header Node TreeView
I have a problem with changing the header node of a treeview because I have no idea how to do ...
In particular I have this class:
class Categoria : TreeViewItem
{
public int ID { get; ...
0
votes
3answers
36 views
find and edit a txt file with a batch program
I want to edit a txt file with a batch script.
I have looked online and tried to adjust some examples to suit my needs.
However I have no programing skills and have not been able to get my program to ...
-1
votes
0answers
13 views
Trim video uploaded on youtube [closed]
Is there a way to cut video uploaded on Youtube(Vimeo or another video service) using api.
I need to be able to show only exact part of video. The other can be cutted or hidden.
I was searching ...
-2
votes
0answers
25 views
edit picture and save android [closed]
So I'm building an application that takes a picture and then opens it in the next activity in this activity I want to paste something on the picture but what is the best way to do it? And how can I ...
0
votes
1answer
21 views
Rails: Use same partial for creating and editing nested items
I followed the Getting Started With Rails tutorial to set up a simple blog with comments.
I went to apply it to my own scenario: histories with history items. Everything was more or less fine until I ...
0
votes
1answer
28 views
Alfresco: Show “edit metadata”-popup after upload
We want the user to be able to edit the metadata after uploading a file to Alfresco. Ideally, we would also like this to work when uploading multiple files (for example through Flash or through ...
0
votes
1answer
19 views
Why can't my client through his login update the calendar on his page that we created for him via Joomla?
We are having some trouble with a website we recently developed for a client of ours. He is a DJ. For his page, we added a tab that contains a calendar where he can post his events.
Using the admin ...
0
votes
1answer
30 views
Adding Nodes to Existing XML
The problem i was having is the Root XML was being produced every time it writes to the XML.
The Main issue was setting up Child and Defining the Root. From the help of Łza
I now understand the Root ...
0
votes
3answers
35 views
edit html content in JEditorPane
I really need your help as I'm trying for one month now to do something using various approaches... unsuccessfully.
I have a JTextPane containing a html text with images, etc. This works perfectly.
...
0
votes
0answers
13 views
Netbeans text transformation: run custom java program (instead of macro) to edit or transform text
Is there simple way to "transform highlighted text" in the Netbeans editor? For example, I want to highlight text in Netbeans and feed that text to a java program, and get the output of the java ...
2
votes
1answer
36 views
Datagrid: User cannot edit or select a row
I am using a Datagrid in WPF to display rows of users returned from a LINQ-SQL expression in a List:
private void admin_tab_GotFocus(object sender, RoutedEventArgs e)
{
if ...
0
votes
2answers
61 views
Is it possible to edit .Config file using a batch script
Here some part of the .config file that I have:
<cs.components>
<clear/>
<cs.component name="Security"/>
<cs.configitems>
...
-2
votes
2answers
49 views
PHP mysql edit database entries
so i have two php file the first one
<?php
include"db.inc.php";//database connection
$order = "SELECT * FROM notes";
$result = mysql_query($order);
while ...
0
votes
0answers
8 views
How to display a UINavigationBar within a UITabBarController that works with MoreNavigationController
So I have around 10 UIViewControllers within a UITabBarController app that I have created. Since the number of UIViewControllers is large, I automatically see the MoreNavigationController appear.
...
0
votes
1answer
110 views
Edit Views in Laravel 4
Being new to Laravel 4, I'd like your advice on something please.
I'm creating an edit view for the edit method of a resource controller, and was wondering how you handle getting the correct data ...
0
votes
0answers
18 views
add / edit page best behavior
I'm trying to implement an add/edit page in my project, this page is supposed to show empty fields when the Query string has no id element, otherwise its supposed to show the object of the id in the ...
0
votes
1answer
22 views
Easier way to edit multiple HTML files in Xcode?
I have multiple HTML files in Xcode that I want to replace below:
<style type="text/css">
with
<style type="text/css">
@font-face {
font-family: MyFont;
...
-1
votes
1answer
46 views
How to read and edit an xml file inside a zip without extracting
hi all as the title says I need to read, modify and then write from/to an xml file in a zip I need to do this for lots if files as the xml is kind of an index for what the zip is for. any help would ...
1
vote
2answers
63 views
perl how to change url in text file
how in the specified file change the end of the url address ".pl" to ".en" and the penultimate ".com" to ".org"
for example:
http://www.addres.pl
change to:
http://www.addres.en
and if in addres ...
0
votes
0answers
27 views
Wordpress restrict edit, but allow preview for custom post status
Hello I am developing wordpress site with Edit Flow plugin, so I can create custom post statuses to manage author and contributor posts more easily.
So I have created costum post status and I got ...
-1
votes
0answers
23 views
How can I pass all variables of grid row when editing jquery grid in struts2?
I am using strust2 jquery grid plugin. And I want my grid be editable. I can inline edit it but in the post request I see only one parameter (which I'm editing in a moment). How can I send all other ...
0
votes
0answers
14 views
MFC Find Menu Not Working
This is weird! In the Release build of my MFC application (but not debug) the find menu doesn't open the find dialog if I go through the menu itself. But the Ctrl+F accelerator does work. It's like ...
0
votes
2answers
27 views
Edit a string in a file
Is possible to edit a string in a file programmatically?
For example, i've a file named /sdcard/myfile that contains:
somestrings
otherstrings=lajd
ecc... abcdefghilmondj conf=300
I want replace ...
0
votes
1answer
48 views
Writing to file in javascript. not working
Hello i have had problems with my html/javascript code:
function rf()
{
var fs,file;
fs = new ActiveXObject('Scripting.FileSystemObject');
file = ...
-1
votes
1answer
131 views
how to dynamically edit the bind data in sql using mvc3 web grid
i am new to mvc.. i have a task that, i have to bind data from existing table in sql using asp.net mvc3(Razor) Web Grid .. now i have to edit the data in webGrid.. i dont know how the edit operation ...
0
votes
1answer
33 views
My edit page doesnt edit the rows [closed]
I have 2 buttons on my table which delete and edit data from the table, (data from the database) the delete button works well but the edit isnt working.. It runs like it is working but when I list the ...
0
votes
0answers
9 views
Ruby gem for “revision marks” text comparison
I'm looking for a gem that accepts two chunks of text as strings and returns a "marked up" string showing edits that must be applied to the first in order to get the second. Stackoveflow does this ...
-5
votes
1answer
19 views
PHP - How can I run a function if the content in a txt file has been changed? [closed]
How can I run a function if/when the content in a txt file has been changed?
How? Any suggestions?
2
votes
1answer
65 views
How can I edit the code from url and save to .html file on desktop
Teacher ask me to write java to read html file from school web and cut all unneeded parts (everything that don't need in that web page), left only the announcement part at the center of the website ...
0
votes
1answer
31 views
Change in Wordpress Title
May be it is a unreal question. But i want to know that is there any way to change automatically "-" to "," in wordpress post title?
i.e. :
if someone add a new post with this title = ...
0
votes
2answers
45 views
file IO with defaultdict
I'm attempting to:
load dictionary
update/change the dictionary
save
(repeat)
Problem: I want to work with just 1 dictionary (players_scores)
but the defaultdict expression creates a completely ...
1
vote
2answers
43 views
How do I add code to thousands of html files without a header or footer?
Does anyone know an easy way to go in and apply code to about 16,000 individiual static hard-coded HTML pages? Situation: my client has an ecommerce site with over 16,000 product pages, but instead of ...
0
votes
1answer
32 views
Edit List in PropertyGrid
I have a PropertyGrid (winform) that contains a list of positions.
private ValuesCollection _position1 = new ValuesCollection();
public ValuesCollection Position1
{
get { return _position1; }
...
1
vote
3answers
83 views
How to replace a string in the host file using batch?
I'm trying to write a batch file to find and replace an IP address in the hosts file.
I did a bit of research and found this, but it doesn't seem to work. I get the final echo of "Done." but it ...
0
votes
0answers
9 views
Http Request Time Out Iphone
Below is the site works fine when i send request form my local development machine but throws request times out when i request it form my iphone. How long will the compiler waits after the request has ...
0
votes
0answers
49 views
How to access Android manifest generated by Sencha Touch native packager
I am using Sencha Touch 2 and Sencha Cmd 3.1.0.256 and Sencha Architect 2.2 to package my app for Android.
I would like to edit the AndroidManifest.xml to add some settings but the Sencha packager ...
0
votes
0answers
67 views
How to change the menu and context menu's themes?
I'm making an Android application with a normal and floating context menu, but its background is white, and when I click on it, the selection color is the default orange of olders Android versions.
...
