Torna indietro   Hardware Upgrade Forum > Software > Programmazione

Wi-Fi 7 con il design di una vetta innevata: ecco il nuovo sistema mesh di Huawei
Wi-Fi 7 con il design di una vetta innevata: ecco il nuovo sistema mesh di Huawei
HUAWEI WiFi Mesh X3 Pro Suite è probabilmente il router mesh più fotogenico che si possa acquistare oggi in Italia, ma dietro il guscio in acrilico trasparente e le luci LED dinamiche c'è una macchina tecnica costruita attorno allo standard Wi-Fi 7, con velocità teoriche Dual-Band fino a 3,6 Gbps e una copertura fino a 120 m² una volta abbinato il router principale all'extender incluso nel kit
Core Ultra 7 270K Plus e Core Ultra 7 250K Plus: Intel cerca il riscatto ma ci riesce in parte
Core Ultra 7 270K Plus e Core Ultra 7 250K Plus: Intel cerca il riscatto ma ci riesce in parte
Abbiamo provato le nuove CPU Intel Core Ultra 7 270K Plus e Core Ultra 7 250K Plus: più core e ottimizzazioni al funzionamento interno migliorano le prestazioni, anche in virtù di prezzi annunciati interessanti. A questo si aggiungono nuove ottimizzazioni software. Purtroppo, a fronte di prestazioni di calcolo elevate, il quadro rimane incerto nel gaming, dove l'andamento rimane altalenante. Infine, rimane il problema della piattaforma a fine vita.
PC Specialist Lafité 14 AI AMD: assemblato come vuoi tu
PC Specialist Lafité 14 AI AMD: assemblato come vuoi tu
Il modello "build to order" di PCSpecialist permette di selezionare una struttura base per un sistema, personalizzandolo in base alle specifiche esigenze con una notevole flessibilità di scelta tra i componenti. Il modello Lafité 14 AI AMD è un classico notebook clamshell compatto e potente, capace di assicurare una elevata autonomia di funzionamento anche lontano dalla presa di corrente
Tutti gli articoli Tutte le news

Vai al Forum
Rispondi
 
Strumenti
Old 30-03-2003, 16:48   #1
DanieleC88
Senior Member
 
L'Avatar di DanieleC88
 
Iscritto dal: Jun 2002
Città: Dublin
Messaggi: 5989
[VB] Colorazione RTF lenta...

Sto usando questo codice per la colorazione RTF, ma é lentissimo... invece i normali VB, Delphi, C++ e via dicendo hanno una colorazione del codice instantanea ! cosa c'é che non va?

Codice:
Option Compare Text

Const vbSp As String * 1 = " "

Const flgSetup As String * 7 = "[Setup]"
Const flgUnInstall As String * 11 = "[UnInstall]"
Const flgPublic As String * 6 = "Public"
Const flgPrivate As String * 7 = "Private"
Const flgFunct As String * 8 = "Function"
Const flgSub As String * 3 = "Sub"
Const flgEnd As String * 3 = "End"

Public Declare Function LockWindowUpdate Lib "User32" _
           (ByVal hWndLock As Long) As Long

Sub RTFCodeFormat(tRTF As RichTextBox)
Dim R As Byte, G As Byte, B As Byte
Dim tmpRTF As String, anRTF As String, _
       tblColors As String, newColors As String, _
       tSel As Long, tLen As Long, txtLen As Long, _
       tChanged As Boolean, txtLeft As String, _
       newLeft As String

tSel = tRTF.SelStart
tLen = tRTF.SelLength
txtLen = Len(tRTF.Text)
tRTF.SelStart = 0
tRTF.SelLength = Len(tRTF.Text)
tRTF.SelColor = Colors.ForeColor
txtLeft = Left(tRTF.Text, tRTF.SelStart)
    tRTF.Text = Replace(tRTF.Text, "(", " {apriparentesi}")
    tRTF.Text = Replace(tRTF.Text, ")", "{chiudiparentesi} ")
    tRTF.Text = Replace(tRTF.Text, "=", " {uguale} ")
    tRTF.Text = Replace(tRTF.Text, "&", " & ")
    tRTF.Text = Replace(tRTF.Text, "{uguale}", "=")
    tRTF.Text = Replace(tRTF.Text, "{apriparentesi}", "(")
    tRTF.Text = Replace(tRTF.Text, "{chiudiparentesi}", ")")
    tRTF.Text = Replace(tRTF.Text, (vbLf & " ("), (vbLf & "("))
    tRTF.Text = Replace(tRTF.Text, (") " & vbCr), (")" & vbCr))
    tRTF.Text = Replace(tRTF.Text, "  ", " ")
newLeft = Left(tRTF.Text, tRTF.SelStart)
If (Not txtLeft = newLeft) Then tChanged = True
    rtfLine = tRTF.GetLineFromChar(tRTF.SelStart)

    ColorRTF tRTF, """", Colors.Quotes
    ColorRTF tRTF, "(", Colors.Quotes
    ColorRTF tRTF, ")", Colors.Quotes
    '#################################
    ColorRTF tRTF, flgSetup, Colors.Head
    ColorRTF tRTF, flgUnInstall, Colors.Head
    '#################################
    ColorRTF tRTF, "InstallPath", Colors.Keywords
    ColorRTF tRTF, "DesktopLink", Colors.Keywords
    ColorRTF tRTF, "QuickLaunch", Colors.Keywords
    ColorRTF tRTF, "ProgramGroup", Colors.Keywords
    ColorRTF tRTF, "ProgGroupName", Colors.Keywords
    ColorRTF tRTF, "DeskLinkName", Colors.Keywords
    ColorRTF tRTF, "QuickLaunchName", Colors.Keywords
    ColorRTF tRTF, "InstallPath", Colors.Keywords
    '__________________________________________
    ColorRTF tRTF, "%root%", Colors.Keywords
    ColorRTF tRTF, "%windir%", Colors.Keywords
    ColorRTF tRTF, "%progdir%", Colors.Keywords
    ColorRTF tRTF, "%system%", Colors.Keywords

If tChanged Then
    tSel = (tSel + (Len(tRTF.Text) - txtLen))
End If
tRTF.SelLength = tLen
tRTF.SelStart = tSel
tRTF.SelColor = Colors.ForeColor
End Sub

Sub ColorRTF(ByVal RTB As RichTextBox, ByVal cWord As String, ByVal cColor As OLE_COLOR)
Dim rTxt As String, _
       sPos As Long, _
       inStrPos As Long

    rTxt = RTB.Text
    Do
        sPos = (sPos + 1)
        inStrPos = InStr(sPos, rTxt, cWord)
        If (Not inStrPos = 0) Then
            RTB.SelStart = (inStrPos - 1)
            RTB.SelLength = Len(cWord)
            RTB.SelColor = cColor
            RTB.SelText = cWord
            sPos = (sPos + (Len(cWord) - 1))
        End If
    Loop Until (inStrPos = 0)
End Sub

Public Function Replace(ByVal Text As String, ByVal OriginalStr As String, ByVal ConvertStr As String, Optional ByVal OnlyOneTime As Boolean = False) As String
If (Text = "" Or OriginalStr = "") Then Exit Function  'Or ConvertStr = ""

    i = 0
    Do Until i >= Len(Text)
        i = (i + 1)
        midTXT = Mid(Text, i, Len(OriginalStr))
            If (midTXT = OriginalStr) Then
                BkTemp = (i - 1)
                NxTemp = (i + Len(OriginalStr))

                If (NxTemp > Len(Text)) Then NxTemp = ""
                If (BkTemp < 1) Then BkTemp = ""

'                If ((BkTemp = "") Or (NxTemp = "")) Then
'                    If (BkTemp = "") Then Text = (ConvertStr & NxTemp)
'                    If (NxTemp = "") Then Text = (BkTemp & ConvertStr)
'                Else
                    If (Not BkTemp = "" Or Not CountASCIIVal(BkTemp) = 0) Then
                        BkTemp = Mid(Text, 1, BkTemp)
                    End If
                    If (Not NxTemp = "" Or Not CountASCIIVal(NxTemp) = 0) Then
                        NxTemp = Mid(Text, NxTemp)
                    End If

                    Text = (BkTemp & ConvertStr & NxTemp)
                    If OnlyOneTime Then
                        GoTo CloseFunct
                    End If
                    'Debug.Print Text
                'End If
            End If
    Loop

CloseFunct:
    Replace = Text
    Exit Function
End Function
[/code]
__________________

C'ho certi cazzi Mafa' che manco tu che sei pratica li hai visti mai!
DanieleC88 è offline   Rispondi citando il messaggio o parte di esso
 Rispondi


Wi-Fi 7 con il design di una vetta innevata: ecco il nuovo sistema mesh di Huawei Wi-Fi 7 con il design di una vetta innevata: ecc...
Core Ultra 7 270K Plus e Core Ultra 7 250K Plus: Intel cerca il riscatto ma ci riesce in parte Core Ultra 7 270K Plus e Core Ultra 7 250K Plus:...
PC Specialist Lafité 14 AI AMD: assemblato come vuoi tu PC Specialist Lafité 14 AI AMD: assemblat...
Recensione Nothing Phone 4(a): sempre iconico ma ora più concreto Recensione Nothing Phone 4(a): sempre iconico ma...
Corsair Vanguard Air 99 Wireless: non si era mai vista una tastiera gaming così professionale Corsair Vanguard Air 99 Wireless: non si era mai...
Prezzo diverso per giochi digitali e fis...
DDR5 32GB a meno di 340€: le Corsair Ven...
Harry Potter: HBO pubblica il primo trai...
Android 17 Beta 2 si allarga: la lista c...
RDNA 4m: AMD evolve RDNA 3.5 con AI e FS...
Sunseeker ha un mostro per i Pro e un'in...
Storica sentenza negli USA: Meta e Googl...
Musica generativa, arriva Lyria 3 Pro: o...
Melania Trump scortata da un robot umano...
HONOR 600: nuove conferme sulle specific...
Blade 16: Razer sostituisce AMD con Inte...
Solo 649€ con coupon: questa e-bike da c...
Arriva AI Dividend: 1.000 dollari al mes...
Forza Horizon 6 sorprende con requisiti ...
Smart TV QLED 50'' a un super prezzo: 4K...
Chromium
GPU-Z
OCCT
LibreOffice Portable
Opera One Portable
Opera One 106
CCleaner Portable
CCleaner Standard
Cpu-Z
Driver NVIDIA GeForce 546.65 WHQL
SmartFTP
Trillian
Google Chrome Portable
Google Chrome 120
VirtualBox
Tutti gli articoli Tutte le news Tutti i download

Strumenti

Regole
Non Puoi aprire nuove discussioni
Non Puoi rispondere ai messaggi
Non Puoi allegare file
Non Puoi modificare i tuoi messaggi

Il codice vB è On
Le Faccine sono On
Il codice [IMG] è On
Il codice HTML è Off
Vai al Forum


Tutti gli orari sono GMT +1. Ora sono le: 11:49.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
Served by www3v