B4i Tutorial CSBuilder - AttributedStrings builder - Erel    May 04, 2017   (7 reactions) 'example of explicitly popping an attribute:
Label1.AttributedText = cs.Initialize.Color(Colors.Red).Append("Hello ").Pop.Append("World!").PopAll
https://www.b4x.com/basic4android/images/SS-2017-05-04_17.04.13.png
'It doesn't matter whether the methods are chained or split into several lines:
Di B4A Library New Net library - Android FTP, SMTP and POP3 - Erel    Feb 14, 2021   (21 reactions) The Net library supports FTP, SMTP and POP3 protocols. This library replaces the FTP library. Both regular connections and SSL connections are supported.
SMTP - Allows to directly connect to SMTP mail servers and send mails, including Html messages and attachments.
POP3 - Allows to directly connect B4i Question Image and text on B4XSwiftButton - TILogistic (first post)    Jan 06, 2022   (1 reaction) test (pop)
Dim cs As CSBuilder
#If B4A
cs.Initialize
cs.Alignment("ALIGN_CENTER")
cs.Color(Colors.White)
cs.Size(20)
cs.Typeface(Typeface.FONTAWESOME)
cs.Append(Chr(0xF1EC))
' cs.Pop
cs.Append(CRLF)
cs.Typeface(Typeface.DEFAULT_BOLD)
cs.Size(14)
B4J Question [SOLVED]Deleting Emails After Download - Philip Chatzigeorgiadis    Apr 05, 2021 What am I missing? Dim pop As POP3 pop.Initialize("pop.gmail.com", 995, "XXXXX@gmail.com", "XXXXX", "pop") pop.UseSSL = True Dim cs As CustomTrustManager cs.InitializeAcceptAll pop.SetCustomSSLTrustManager(cs) wait for (pop.ListMessages) pop_ListCompleted (ListOK As Bool B4J Question POP.DownloadMessageTop downloads more than specified - OliverA (first post)    Aug 26, 2019 Could be a configuration on the mail server (out of your hands, unless you're the admin). According to JavaMail API docs:
When the headers of a POP3 message are accessed, the POP3 provider uses the TOP command to fetch all headers, which are then cached. Use of the TOP command can be disabled with Italian doppio color text - Star-Dust (first post)    Jan 25, 2022   (6 reactions) Usa CSBuilder e puoi fare quello che vuoi 'example of explicitly popping an attribute: Dim cs As CSBuilder Label1.Text = cs.Initialize.Append("Verona").Color(Colors.Red).Pop.Append("OLIVE!").PopAll https://www.b4x.-csbuilder-tutorial.76226/ B4A Tutorial Using POP3 to communicate with Android devices - Erel (first post)    Oct 29, 2015 I'm able to download messages from Gmail with this code:
pop.Initialize("pop.gmail.com", 995, "aaaa@gmail.com", "bbbb", "pop")
pop.UseSSL = True B4J Question jNet POP not working - LarryK    Dec 28, 2021 #Region Project Attributes
#MainFormWidth: 600
#MainFormHeight: 600
#End Region
Sub Process_Globals
Dim POP As POP3
End Sub
Sub Globals
End Sub
Sub Activity_Create(FirstTime As Boolean)
If FirstTime Then
POP.Initialize("mail.twc.com", 110, "l*******@***.com", "********", " B4A Question Printing on Thermal Printer (58mm) - George_G (first post)    Feb 24, 2024 Pop cs.Size(10).Alignment("ALIGN_NORMAL").Append("ΦΟΡΟΛΟΓΙΚΗ - ΑΠΟΔΕΙΞΗ ΛΗΞΗ" & CRLF).Pop cs.Size(10).Alignment("ALIGN_OPPOSITE").Append("ΦΟΡΟΛΟΓΙΚΗ - ΑΠΟΔΕΙΞΗ ΛΗΞΗ" & CRLF).Pop cs.Size(10).Alignment("ALIGN_CENTER").Append("ΦΟΡΟΛΟΓΙΚΗ - ΑΠΟΔΕΙΞΗ ΛΗΞΗ" & CRLF).Pop cs.Size(10).Append(" B4A Tutorial CharSequence / CSBuilder Tutorial - DonManfred (first post)    Mar 01, 2017   (4 reactions) Dim obj As CSBuilder
obj.Initialize.Color(Colors.Red).Append("Hello ").Pop.Append("World!").PopAll
Religion.Text = cs.Initialize.Append(obj).Append("FontAwesome: ").Typeface(Typeface.FONTAWESOME).Color(Colors.Blue).Append(Chr(0xF209)).PopAll
cs is a global CSBuilder... Page: 1   2   3   4   5   6   7   Powered by ColBERT |