2,564 questions
Score of -1
1 answer
145 views
Give iOS app full copy/paste clipboard privileges or entitlement?
I'm attempting to programmatically paste from the iOS system clipboard via:
@MainActor public protocol UIResponderStandardEditActions : NSObjectProtocol {
@available(iOS 3.0, *)
optional func ...
Score of 1
0 answers
43 views
Paste fails temporarily in VSC
While using VSC from time to time the paste option (CTRL+V) stops working.
The strange thing is that if I switch over to a tab of VSC that has the keyboard shortcuts open,
and than switch back Paste - ...
Score of 1
1 answer
138 views
VSCode multiline pasting in integrated terminal powershell
when I try to paste anything multiline with tabs it gets mangled in the VSCode integrated terminal while it works fine if I use an external powershell, for example:
/game/systems/deterministic_rng.lua
...
Score of -1
1 answer
364 views
Copy-paste stops working across Windows after using Visual Studio for a while (No error messages)
I'm facing a frustrating system-wide issue related to copy-paste, which only begins after using Visual Studio for a while.
Problem Description
I open Visual Studio and start working on code (sometimes ...
Score of 0
0 answers
72 views
Python script to loop through column to select specific cell ranges and paste special transpose on next sheet
I am new to scripting and get the basic ideas of looping and the such. I want to loop through a column of a worksheet selection specific cell ranges and paste special transpose on the next sheet.
I ...
Score of 2
1 answer
128 views
Copy Paste to a cell Comment
Is there a way to copy paste into a cell comment? Can only do it from the clipboard, not from a cell or range reference. Or is there perhaps a vba way to call up the info in the clipboard and then ...
Score of 1
1 answer
146 views
Error 1004 or 438 when pasting picture from clipboard
I'm trying to copy a picture from clipboard to a range, then resize it to fit into the range.
The code worked briefly before starting to return errors.
Private Sub CommandButton1_Click()
Dim pct As ...
Score of 0
1 answer
66 views
Copy/paste into Android sheets [closed]
I am having a problem copying from the clipboard into Sheets on Android.
I have an app that can place some data on the clipboard for further analysis, it is in the form of text lines with delimited ...
Score of 0
1 answer
77 views
Pasting text into caret position of last selected control
I've managed to write a JavaScript function that pastes text into the last selected control, no matter what control it is. I've also managed to make the function insert the text at the beginning of ...
Score of 5
4 answers
221 views
How to paste an entire list as one
I have a list called tmp which contains two elements like below.
> tmp
$a
integer(0)
$b
[1] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
[20] ...
Score of 0
1 answer
86 views
Trouble copy/paste with vba in excel
I have two excel documents. I'm trying to write a VBA code to simply copy a bunch of cells from the first workbook to the second workbook. The following code works when it is in a VBA code module, ...
Score of 0
0 answers
49 views
How to combine variables into long string in smart way? [duplicate]
How can variables be combined into a long string in a smart way?
library(tidyverse)
data('diamonds')
This can work, but I have keys in variable names one by one
diamonds %>% mutate(long_string = ...
Score of 0
0 answers
31 views
Pasting data to a column and leave protected cells
I have an Excel column where some cells are locked and others unlocked.
Say my column is B, then B1 to B4 are unlocked, B5 is locked and B6 to B7 is unlocked.
I am copying data from another sheet but ...
Score of 9
1 answer
1215 views
How to paste code into the REPL without adding extra spaces on the left [closed]
I am running Python 3.13.1. When I paste code into the Python REPL, Python adds extra spaces at the beginning of every line after the first.
I wrote this code in Notepad and pasted it into Python.
if ...
Score of 1
1 answer
114 views
copy a row then paste it to another row in Grid using extJS
I display a grid, there are two rows in the grid. I have a button called "Copy", when user click on the Copy button, all the data from first row will copied, then paste it into second row.
...