Torna indietro   Hardware Upgrade Forum > Software > Programmazione

DJI RS 5: stabilizzazione e tracking intelligente per ogni videomaker
DJI RS 5: stabilizzazione e tracking intelligente per ogni videomaker
Analizziamo nel dettaglio DJI RS 5, l'ultimo arrivato della famiglia Ronin progettato per videomaker solisti e piccoli studi. Tra tracciamento intelligente migliorato e ricarica ultra rapida, scopriamo come questo gimbal eleva la qualità delle produzioni.
AMD Ryzen 7 9850X3D: Zen 5, 3D V-Cache e frequenze al top per il gaming
AMD Ryzen 7 9850X3D: Zen 5, 3D V-Cache e frequenze al top per il gaming
AMD Ryzen 7 9850X3D è la nuova CPU gaming di riferimento grazie alla 3D V-Cache di seconda generazione e frequenze fino a 5,6 GHz. Nei test offre prestazioni superiori a 9800X3D e 7800X3D, confermando la leadership AMD nel gaming su PC.
Le soluzioni FSP per il 2026: potenza e IA al centro
Le soluzioni FSP per il 2026: potenza e IA al centro
In occasione del Tech Tour 2025 della European Hardware Association abbiamo incontrato a Taiwan FSP, azienda impegnata nella produzione di alimentatori, chassis e soluzioni di raffreddamento tanto per clienti OEM come a proprio marchio. Potenze sempre più elevate negli alimentatori per far fronte alle necessità delle elaborazioni di intelligenza artificiale.
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


DJI RS 5: stabilizzazione e tracking intelligente per ogni videomaker DJI RS 5: stabilizzazione e tracking intelligent...
AMD Ryzen 7 9850X3D: Zen 5, 3D V-Cache e frequenze al top per il gaming AMD Ryzen 7 9850X3D: Zen 5, 3D V-Cache e frequen...
Le soluzioni FSP per il 2026: potenza e IA al centro Le soluzioni FSP per il 2026: potenza e IA al ce...
AWS annuncia European Sovereign Cloud, il cloud sovrano per convincere l'Europa AWS annuncia European Sovereign Cloud, il cloud ...
Redmi Note 15 Pro+ 5G: autonomia monstre e display luminoso, ma il prezzo è alto Redmi Note 15 Pro+ 5G: autonomia monstre e displ...
Autostrade che 'pensano': l'AI arriva su...
AMD alza l'asticella: Zen 6 è la ...
Il satellite spia russo Olymp-1 si &egra...
Rocket Lab prosegue l'assemblaggio del n...
Il Wet Dress Rehearsal della missione Ar...
31,4 Tbps: Aisuru sfonda il suo stesso r...
Giocattoli AI, una falla espone oltre 50...
OPPO Reno15 in viaggio con Gaia Gozzi: i...
Nuove revisioni per Abarth 600e: arrivan...
Intelligenza artificiale, re-training e ...
LG presenta a ISE 2026 la nuova serie di...
Alienware: disponibile in Italia il nuov...
Arrivano le bodycam sui treni di Ferrovi...
Nike taglia 775 posti negli USA: l'autom...
Crimson Desert si mostra in un nuovo gam...
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: 08:49.


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