|
Is there any way to force Visual Studio to copy selected code to the clipboard as unformatted text?
When I am copy-pasting code into Word or more often Outlook I have to do it via Notepad to get rid of the formatting...there has to be an easier way!
Started by Richard Ev on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
In Word, and maybe Outlook....
Have a paste option which strips formatting, but what you really need is a copy operation that strips enforcement of that point.)
The application you're using to paste then chooses its preferred format.
|
|
In iPhone Development, generally we use xCode.
Now, we manage different groups within our project.
my Question is how do you copy the entire group (with including files in it) and paste within same project or other project?
Started by sagar on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
To import into the same project, you'll.
Right/Ctrl click on the group you want to copy and select "Reveal in Finder." Select the files you sure to select the "copy these files" check box that pops up.
|
|
Is there a way to copy code from visual studio (C#) and paste it into OneNote, without losing the formatting?
I was able to do this, but only if I copy from VS, paste to Word, copy from Word, and then paste to OneNote.
Started by MedicineMan on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
There is an add-in for Microsoft Visual Studio that allows you to copy source code, syntax.
With this add-in, you can copy from VS and paste HTML directly work.
Highlighting, and line numbers as HTML.
|
Ask your Facebook Friends
|
Hi,
I was just wondering if anyone could help out with how to do the following using vi.
I have a text file and it might contain something like
start of text file: --something1.something2-- --anotherThing1.something2-- end of text file:
If I want to take...
Started by benjipete on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
This is if you want to copy the first word after '--' up to first '.' and append '.' and word found.
|
|
How can I copy and paste in irb (Interactive Ruby Shell) on Windows?
Started by sker on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
For CLI copy/paste:
Ctrl+insert ....
To paste: right-click with no selection.
To paste: Hit: drag to select, right-click to copy.
To copy: Hit alt-space, choose Edit, choose Mark, drag-select the text, hit enter.
|
|
I want to implement copy, cut and paste in my drawing program (copy part of an image that is selected)
I don't know how to start
Any Ideas?
Started by a2m22 on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
For copy (or cut), serializeto copy: ....
The system-wide clipboard , just in case the user copy in one instance on your app and paste in another of the program from a base class that implements the copy & paste.
|
|
Maybe a strange question, but is there a way to do a copy while paste? eg.
you have a mapper where you want to switch mapping direction:
object1.MyProperty = object2.HisProperty;
to
object2.HisProperty = object1.MyProperty;
I know you can to this with...
Started by Mojito71 on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Or, if you use the clipboard....
Move to the end of B and paste
Cut B
Move to the beginning and paste.
Delete to join them back together, it wouldn't be any easier than copy & paste)
However, it's pretty easy with:
Cut part A.
|
|
I want the text in a UITextField (or ideally, a UILabel) to be non-editable, but at the same time give the user the ability to copy and paste it.
Started by subw on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
My final solution)canPerformAction:(SEL)action withSender:(id)sender { if(action == @selector(copy:)) { return YES = YES; return YES; } return NO; } - (void)copy....
Editable property set to NO , and double-tapping-to-copy worked for me.
|
|
Is there any thing that allows you to support copy and paste inside a remote desktop session. this is quite annoying.
Started by oo on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
In the new window click "Drives" -....
Click the Local Resources tab --> under Local Devices and Resources click More .
Assuming you're talking about Windows remote desktop -- before you hit "Connect" click 'options' to expand the RDP connection window .
|
|
I am developing a console application in C#, and was wondering if there was a way to get the "copy-paste" or "mark-paste" functionality into my application, similar or identical to that of the standard Windows command prompt. Is this a wild goose chase...
Started by Simpleton on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Sean pointed out that "copy-paste can be done using cmd.exe's built on the console border....
Want it to?
From what I understand, it is the terminal implementation that supplies the copy/paste to not jump on the conclusion train.
|