我需要大膽一些文字,我將它們添加到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
誰能幫我我已經修改了代碼,但仍是修復
得到所有的後續測試我添加要大膽,insted的興趣
文本追加到RTB控制使文本失去其格式 – Smith
我想我不知道什麼是「格式」你指的是。上面的代碼就像你所問的一樣,盡我所能。我沒有看到任何「格式丟失」。 – Bob77