Click here to Skip to main content
15,889,216 members
Home / Discussions / Windows Forms
   

Windows Forms

 
GeneralRe: Stupid Scrollbar bug Pin
molesworth24-Aug-09 6:59
molesworth24-Aug-09 6:59 
QuestionIn RichTextBox, changing WordWrap affects Undo/Redo? Pin
Alan Burkhart22-Aug-09 8:46
Alan Burkhart22-Aug-09 8:46 
AnswerRe: In RichTextBox, changing WordWrap affects Undo/Redo? Pin
εїзεїзεїз22-Aug-09 20:17
εїзεїзεїз22-Aug-09 20:17 
GeneralRe: In RichTextBox, changing WordWrap affects Undo/Redo? Pin
εїзεїзεїз22-Aug-09 20:22
εїзεїзεїз22-Aug-09 20:22 
GeneralRe: In RichTextBox, changing WordWrap affects Undo/Redo? Pin
Alan Burkhart23-Aug-09 5:11
Alan Burkhart23-Aug-09 5:11 
GeneralRe: In RichTextBox, changing WordWrap affects Undo/Redo? Pin
Alan N23-Aug-09 13:02
Alan N23-Aug-09 13:02 
GeneralRe: In RichTextBox, changing WordWrap affects Undo/Redo? Pin
Alan Burkhart23-Aug-09 14:31
Alan Burkhart23-Aug-09 14:31 
QuestionSmall problem pasting text Pin
Alan Burkhart21-Aug-09 18:06
Alan Burkhart21-Aug-09 18:06 
In a project using a RichTextBox, when I copy text and paste it into some other applications, the line breaks are missing. This happens in MS NotePad and the sample text area in Expresso. The text pastes correctly (line breaks are present) with WordPad, NoteTab Lite and NotePad++.

Here's the code used to copy text (RichTextBox is named "rtf"):
VB
Private Sub menuEdit_Copy_Click(ByVal sender As Object, ByVal e As EventArgs) Handles menuEdit_Copy.Click, tb_Copy.Click, popup_Copy.Click
  Try
    If rtf.SelectedText.Length > 0 Then
      Clipboard.SetText(rtf.SelectedText, TextDataFormat.Text)
    End If
  Catch ex As Exception
    MsgBox(ex.ToString, MsgBoxStyle.Exclamation, title)
  End Try
End Sub


Any ideas why some apps paste okay and some do not?

Thanks
AB
AnswerRe: Small problem pasting text Pin
εїзεїзεїз21-Aug-09 21:20
εїзεїзεїз21-Aug-09 21:20 
AnswerRe: Small problem pasting text Pin
Luc Pattyn22-Aug-09 0:28
sitebuilderLuc Pattyn22-Aug-09 0:28 
GeneralRe: Small problem pasting text Pin
Alan Burkhart22-Aug-09 2:25
Alan Burkhart22-Aug-09 2:25 
QuestionChanging DateTimePicker MinDateTime to something other than 01/01/1753 Pin
codeprojectalanr21-Aug-09 12:10
codeprojectalanr21-Aug-09 12:10 
AnswerRe: Changing DateTimePicker MinDateTime to something other than 01/01/1753 Pin
Henry Minute21-Aug-09 12:48
Henry Minute21-Aug-09 12:48 
GeneralRe: Changing DateTimePicker MinDateTime to something other than 01/01/1753 Pin
codeprojectalanr22-Aug-09 3:22
codeprojectalanr22-Aug-09 3:22 
GeneralRe: Changing DateTimePicker MinDateTime to something other than 01/01/1753 Pin
Henry Minute22-Aug-09 6:00
Henry Minute22-Aug-09 6:00 
GeneralRe: Changing DateTimePicker MinDateTime to something other than 01/01/1753 Pin
Todd Carnes9-Apr-10 14:20
Todd Carnes9-Apr-10 14:20 
QuestionRemove border of group box Pin
Aman Bhullar20-Aug-09 3:19
Aman Bhullar20-Aug-09 3:19 
AnswerRe: Remove border of group box Pin
Luc Pattyn20-Aug-09 3:28
sitebuilderLuc Pattyn20-Aug-09 3:28 
AnswerRe: Remove border of group box Pin
Dave Kreskowiak20-Aug-09 3:33
mveDave Kreskowiak20-Aug-09 3:33 
AnswerRe: Remove border of group box Pin
εїзεїзεїз21-Aug-09 11:00
εїзεїзεїз21-Aug-09 11:00 
GeneralRe: Remove border of group box Pin
KatMagic10-Feb-10 9:00
professionalKatMagic10-Feb-10 9:00 
AnswerRe: Remove border of group box Pin
Mugdha_Aditya29-Dec-11 17:04
Mugdha_Aditya29-Dec-11 17:04 
Questionrun the windows application(c#) on dual screen simultaneously. Pin
varunchetu20-Aug-09 1:36
varunchetu20-Aug-09 1:36 
AnswerRe: run the windows application(c#) on dual screen simultaneously. Pin
Luc Pattyn20-Aug-09 2:29
sitebuilderLuc Pattyn20-Aug-09 2:29 
AnswerRe: run the windows application(c#) on dual screen simultaneously. Pin
Dave Kreskowiak20-Aug-09 3:32
mveDave Kreskowiak20-Aug-09 3:32 

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.