Click here to Skip to main content
15,791,846 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: That Dammned Caret! Pin
Anybloodyid25-Feb-07 12:22
Anybloodyid25-Feb-07 12:22 
AnswerRe: That Dammned Caret! Pin
TwoFaced25-Feb-07 11:06
TwoFaced25-Feb-07 11:06 
GeneralRe: That Dammned Caret! Pin
Anybloodyid25-Feb-07 12:27
Anybloodyid25-Feb-07 12:27 
QuestionRe: That Dammned Caret! Pin
Anybloodyid25-Feb-07 23:51
Anybloodyid25-Feb-07 23:51 
AnswerRe: That Dammned Caret! Pin
TwoFaced26-Feb-07 9:43
TwoFaced26-Feb-07 9:43 
GeneralRe: That Dammned Caret! Pin
Anybloodyid26-Feb-07 13:06
Anybloodyid26-Feb-07 13:06 
GeneralRe: That Dammned Caret! Pin
TwoFaced26-Feb-07 14:23
TwoFaced26-Feb-07 14:23 
GeneralRe: That Dammned Caret! Pin
Anybloodyid26-Feb-07 23:02
Anybloodyid26-Feb-07 23:02 
No Surprises, it just doesn't work for me.( It's Probabaly me Frown | :( )
Below is how I have it layed out, I've removed Italic, Underline and Strikethrough. to keep it concise.

Private Sub rtbText_SelectionChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles rtbText.SelectionChanged

       'Has font changed since last position?
        If m_LastFont Is Nothing OrElse Not m_LastFont.Equals(rtbText.SelectionFont) Then
            'Yes.  Update GUI to reflect it
            'Set last font to new font
            m_LastFont = rtbText.SelectionFont

            'If Bold button doesn't reflect current state change it
            If tlbBold.Checked <> m_LastFont.Bold Then
                tlbBold.Checked = m_LastFont.Bold
                Bold = m_LastFont.Bold
            End If
                                            
        End If
        'Set last font to new font
        m_LastFont = rtbText.SelectionFont
    End Sub


Clever Knows the Answers,
Wise knows where to find them.
GeneralRe: That Dammned Caret! Pin
TwoFaced27-Feb-07 10:02
TwoFaced27-Feb-07 10:02 
GeneralRe: That Dammned Caret! Pin
Anybloodyid27-Feb-07 22:49
Anybloodyid27-Feb-07 22:49 
GeneralRe: That Dammned Caret! Pin
TwoFaced28-Feb-07 9:46
TwoFaced28-Feb-07 9:46 
GeneralRe: That Dammned Caret! [modified] Pin
Anybloodyid28-Feb-07 12:31
Anybloodyid28-Feb-07 12:31 
QuestionVB.NET Printing Alignment??? Pin
harveyhanson25-Feb-07 10:10
harveyhanson25-Feb-07 10:10 
AnswerRe: VB.NET Printing Alignment??? Pin
Snews25-Feb-07 20:42
Snews25-Feb-07 20:42 
QuestionVB.NET 2005 Printing Help please Pin
harveyhanson25-Feb-07 8:37
harveyhanson25-Feb-07 8:37 
AnswerRe: VB.NET 2005 Printing Help please Pin
TwoFaced25-Feb-07 9:02
TwoFaced25-Feb-07 9:02 
GeneralRe: VB.NET 2005 Printing Help please Pin
harveyhanson25-Feb-07 9:21
harveyhanson25-Feb-07 9:21 
GeneralRe: VB.NET 2005 Printing Help please Pin
TwoFaced25-Feb-07 9:28
TwoFaced25-Feb-07 9:28 
GeneralRe: VB.NET 2005 Printing Help please [modified] Pin
harveyhanson25-Feb-07 9:34
harveyhanson25-Feb-07 9:34 
GeneralRe: VB.NET 2005 Printing Help please Pin
TwoFaced25-Feb-07 9:55
TwoFaced25-Feb-07 9:55 
GeneralRe: VB.NET 2005 Printing Help please Pin
harveyhanson25-Feb-07 10:09
harveyhanson25-Feb-07 10:09 
QuestionVS 2005 bindingsource using a complex filter Pin
steve_rm25-Feb-07 8:31
steve_rm25-Feb-07 8:31 
Questionkeeping a class in scope Pin
cstrader23225-Feb-07 8:14
cstrader23225-Feb-07 8:14 
AnswerRe: keeping a class in scope Pin
Christian Graus25-Feb-07 9:47
protectorChristian Graus25-Feb-07 9:47 
GeneralRe: keeping a class in scope Pin
cstrader23225-Feb-07 9:54
cstrader23225-Feb-07 9:54 

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.