I am trying to format the text of my alert with line breaks but it's not working. How can I put line breaks in my text. The sample below does work with the vbCrLf.
Dim daw As New Infragistics.Win.Misc.UltraDesktopAlertShowWindowInfodaw.Caption = ta.SUBJECTdaw.FooterText = ""daw.Key = ta.IDdaw.Text = "Start: " & ta.DATETIMESTART.ToString("MM/dd/yyyy h:mm tt") & vbCrLf & vbCrLf & ta.DESCRIPTIONMe.UltraDesktopAlert1.Show(daw)
The problem is still carrying on unfortunately on version 13.2.
Really the Infragistics guys visit or read this forum???
The workaround to fix this issue s use HTML tags for do this action (<br>)
He is asking how to place text lines into new lines using the UltraDesktopAlert control. Currently scape codes and Environment.NewLine does not work.
i.e:
Warning:
Following modules are not configured yet:
IndexerSearcherManager
...where Indexer, Searcher and Manager text lines MUST to appears in a line each ones.
This workaround works for me!! Thank you a lot....
Really annoying that scape codes like "\r\n" or Environment.NewLine does not work with UltraDesktopAlert.
Regards
Sorry, I didn't realize I left out the very important word 'not' from my original post. I apologize for the confusion.
I realized that I need to use HTML formating with that control after posting my original question. Wrapping my text in <span> tags with <br/> for line seperaters has worked.