Click here to Skip to main content
15,899,314 members
Home / Discussions / C#
   

C#

 
GeneralRe: multiple selection in datagrid Pin
sreejith ss nair19-Sep-04 21:35
sreejith ss nair19-Sep-04 21:35 
GeneralRe: multiple selection in datagrid Pin
Sudee19-Sep-04 23:28
Sudee19-Sep-04 23:28 
QuestionHow to detect "play some particular .wav file" event? Pin
RodionMrt19-Sep-04 15:09
RodionMrt19-Sep-04 15:09 
AnswerRe: How to detect "play some particular .wav file" event? Pin
Christian Graus19-Sep-04 16:00
protectorChristian Graus19-Sep-04 16:00 
GeneralThats easy, thanks! ) Pin
RodionMrt19-Sep-04 16:31
RodionMrt19-Sep-04 16:31 
GeneralPasting to anbd from clipboard Pin
RomanD19-Sep-04 13:55
RomanD19-Sep-04 13:55 
GeneralRe: Pasting to anbd from clipboard Pin
Nick Parker19-Sep-04 17:05
protectorNick Parker19-Sep-04 17:05 
GeneralRe: Pasting to anbd from clipboard Pin
Anonymous/RomanD19-Sep-04 18:01
sussAnonymous/RomanD19-Sep-04 18:01 
I got it to copy, my question is that why it still looses format.

Storing Info:
IDataObject d = Clipboard.GetDataObject();
//d.SetData(DataFormats.Rtf, true, richTextBox1.Text);
// d.SetData(DataFormats.Rtf, richTextBox1.Rtf);
Clipboard.SetText(richTextBox1.Text, TextDataFormat.Rtf);


Retriving info:
foreach (Word.Shape bkMark in aDoc.Shapes)
{
if (bkMark.TextFrame.TextRange.Text.Contains("heading"))
{

// bkMark.TextFrame.TextRange.Paste();
bkMark.TextFrame.TextRange.Text = Clipboard.GetText(TextDataFormat.Rtf).ToString();
//Clipboard.GetDataObject().GetData(DataFormats.Text).ToString();
//
//

}

}
GeneralRe: Pasting to anbd from clipboard Pin
mav.northwind19-Sep-04 22:28
mav.northwind19-Sep-04 22:28 
GeneralUsing WinAPI Pin
busio19-Sep-04 9:44
busio19-Sep-04 9:44 
GeneralRe: Using WinAPI Pin
S Sansanwal19-Sep-04 11:15
S Sansanwal19-Sep-04 11:15 
Generalclickety--Re: Using WinAPI Pin
Jerry Hammond19-Sep-04 17:18
Jerry Hammond19-Sep-04 17:18 
GeneralRe: Using WinAPI Pin
Anonymous20-Sep-04 1:17
Anonymous20-Sep-04 1:17 
GeneralWinforms: ListView: getting the label edit control Pin
peterchen19-Sep-04 9:10
peterchen19-Sep-04 9:10 
GeneralNeed help understanding SQL connections Pin
Dam.NET19-Sep-04 8:22
Dam.NET19-Sep-04 8:22 
GeneralRe: Need help understanding SQL connections Pin
Colin Angus Mackay19-Sep-04 9:39
Colin Angus Mackay19-Sep-04 9:39 
GeneralRe: Need help understanding SQL connections Pin
Dam.NET19-Sep-04 10:08
Dam.NET19-Sep-04 10:08 
GeneralRe: Need help understanding SQL connections Pin
Dam.NET19-Sep-04 10:12
Dam.NET19-Sep-04 10:12 
GeneralRe: Need help understanding SQL connections Pin
Dam.NET19-Sep-04 10:23
Dam.NET19-Sep-04 10:23 
GeneralRe: Need help understanding SQL connections Pin
Colin Angus Mackay19-Sep-04 10:58
Colin Angus Mackay19-Sep-04 10:58 
GeneralRe: Need help understanding SQL connections Pin
Colin Angus Mackay19-Sep-04 10:50
Colin Angus Mackay19-Sep-04 10:50 
GeneralRe: Need help understanding SQL connections Pin
Colin Angus Mackay19-Sep-04 10:45
Colin Angus Mackay19-Sep-04 10:45 
GeneralRe: Need help understanding SQL connections Pin
Dam.NET19-Sep-04 11:04
Dam.NET19-Sep-04 11:04 
GeneralWinForms: Basic Document Handler implementation Pin
peterchen19-Sep-04 6:00
peterchen19-Sep-04 6:00 
GeneralRe: WinForms: Basic Document Handler implementation Pin
Alex Korchemniy19-Sep-04 12:04
Alex Korchemniy19-Sep-04 12:04 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.