<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/">
<channel>
<title>ClipboardFusion RSS: Paste from clipboard a sequence and use Tab to continue pasting</title>
<atom:link href="https://www.clipboardfusion.com/Discussions/RSS/?TopicID=0f011f09-e693-46e2-a7d8-ae11ec857191" rel="self" type="application/rss+xml" />
<link>https://www.clipboardfusion.com/Discussions/RSS/?TopicID=0f011f09-e693-46e2-a7d8-ae11ec857191</link>
<description>ClipboardFusion RSS: Paste from clipboard a sequence and use Tab to continue pasting</description>
<lastBuildDate>Wed, 13 May 2026 13:30:05 GMT</lastBuildDate>
<language>en</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>https://www.clipboardfusion.com/Discussions/RSS/?TopicID=0f011f09-e693-46e2-a7d8-ae11ec857191</generator>
<item>
<title>RE: Paste from clipboard a sequence and use Tab to continue pasting</title>
<link>https://www.clipboardfusion.com/Discussions/View/paste-from-clipboard-a-sequence-and-use-tab-to-continue-pasting/?ID=0f011f09-e693-46e2-a7d8-ae11ec857191#2</link>
<pubDate>Tue, 12 Jan 2021 16:31:03 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/paste-from-clipboard-a-sequence-and-use-tab-to-continue-pasting/?ID=0f011f09-e693-46e2-a7d8-ae11ec857191#2</guid>
<category>ClipboardFusion</category>
<description><![CDATA[Hello,
Can you try increasing the "BFS.ClipboardFusion.GetHistoryText(0);" value by 1 each time you call it, and see if that helps?
Thanks!]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Hello,<br/>
<br/>
Can you try increasing the "BFS.ClipboardFusion.GetHistoryText(0);" value by 1 each time you call it, and see if that helps?<br/>
<br/>
Thanks!
</div>
]]></content:encoded>
</item>
<item>
<title>Paste from clipboard a sequence and use Tab to continue pasting</title>
<link>https://www.clipboardfusion.com/Discussions/View/paste-from-clipboard-a-sequence-and-use-tab-to-continue-pasting/?ID=0f011f09-e693-46e2-a7d8-ae11ec857191</link>
<pubDate>Thu, 07 Jan 2021 15:26:05 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/paste-from-clipboard-a-sequence-and-use-tab-to-continue-pasting/?ID=0f011f09-e693-46e2-a7d8-ae11ec857191</guid>
<category>ClipboardFusion</category>
<description><![CDATA[Hey all. First of all thanks for the help in advance.
I am trying to create a macro to help me fill out forms with text from my clipboard. I would like my text to paste the first value i copied and then press tab to the next entry, then paste the second value i copied and then press tab to the n...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Hey all. First of all thanks for the help in advance.<br/>
<br/>
I am trying to create a macro to help me fill out forms with text from my clipboard. I would like my text to paste the first value i copied and then press tab to the next entry, then paste the second value i copied and then press tab to the next entry, and so on. This is the best i got and so far it will only paste the first and second value.<br/>
<br/>
<div class="col-md-12 BoxWrap"><div class="Box table-responsive"><a name="code" style="width:0; height:0;"></a><h2 class="TableTitle" style="border:0"><div class="TableTitleText">Code</div><div class="TitleButtons"><div class="TableTitleButton"><a href="#" onclick="return false;" data-clipboard-target="#code019e2187c299706bb0e134ee9314ae7e" class="ClipboardCopyControl"><img src="https://www.clipboardfusion.com/MediaCommon/SVGs/FontAwesome/clone.blue.svg" style="box-sizing:border-box;position:relative;overflow:hidden;width:auto;max-width:16px;height:16px;" /><span class="Text">Copy</span></a></div><div class="TableTitleButton"><a href="#" onclick="bfs.util.codeEditorSelectAll('code019e2187c299706bb0e134ee9314ae7eJs'); return false;"><img src="https://www.clipboardfusion.com/MediaCommon/SVGs/FontAwesome/square-check.blue.svg" style="box-sizing:border-box;position:relative;overflow:hidden;width:auto;max-width:16px;height:16px;" /><span class="Text">Select All</span></a></div></div></h2><div class="TableTitleContent table-responsive"><div class="AceEditorWrapper" style="border-top:solid 1px var(--color-default-border);padding:0"><pre id="code019e2187c299706bb0e134ee9314ae7eJs" contenteditable="true" spellcheck="true" class="skiptranslate" style="width:100%; min-height:75px;">using System;
using System.Collections.Generic;

// The 'text' parameter will contain the text from the:
// - Current Clipboard when run by HotKey
// - History Item when run from the History Menu
// The returned string will be:
// - Placed directly on the Clipboard
// - Ignored by ClipboardFusion if it is 'null'
public static class ClipboardFusionHelper
{
public static string ProcessText(string text)
{
// Tell ClipboardFusion to ignore any changes to the Clipboard.
// Depending on your settings, pasting text could modify the history
BFS.ClipboardFusion.PauseClipboardListener();

// Get the first item from the Clipboard History
text = BFS.ClipboardFusion.GetHistoryText(0);

// Paste the text to the active window
BFS.Clipboard.PasteText(text);

// Press the "Tab" button
BFS.Input.SendKeys("{TAB}");

// Get the second item from the Clipboard History
text = BFS.ClipboardFusion.GetHistoryText(1);

// paste the text to the active window
BFS.Clipboard.PasteText(text);

// Press the "Tab" button
BFS.Input.SendKeys("{TAB}");

// Get the third item from the Clipboard History
text = BFS.ClipboardFusion.GetHistoryText(1);

// paste the text to the active window
BFS.Clipboard.PasteText(text);

// Press the "Tab" button
BFS.Input.SendKeys("{TAB}");

// Get the fourth item from the Clipboard History
text = BFS.ClipboardFusion.GetHistoryText(1);

// paste the text to the active window
BFS.Clipboard.PasteText(text);

// Press the "Tab" button
BFS.Input.SendKeys("{TAB}");

// Tell ClipboardFusion to start watching the Clipboard again
BFS.ClipboardFusion.ResumeClipboardListener();

// Tell ClipboardFusion to ignore the return from this Macro
return null;
}
}</pre><textarea id="code019e2187c299706bb0e134ee9314ae7e" name="code019e2187c299706bb0e134ee9314ae7e" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div><br/>
<br/>
Looking forward to hearing back from you : )
</div>
]]></content:encoded>
</item>
</channel>
</rss>