当我将它们添加到richtextbox控件时,我需要加粗一些文本,目前这是我的代码
编辑
With txtDetails
If Not IsNullOrEmpty(title) Then
Dim intStart As Integer
intStart = Len(.Text)
.Text = .Text & title '& vbCrLf
.SelStart = intStart
.SelLength = Len(title)
.SelBold = True
.SelLength = 0
.SelBold = False
.Text = .Text & vbNewLine
End If
If Not IsNullOrEmpty(value) Then
.Text = .Text & value & vbNewLine
End If
.Text = .Text & vbNewLine
End With
谁能帮我解决这个问题
我已经对代码进行了更改,但我添加的所有后续测试仍然是粗体的,插入了我感兴趣的测试