Torna indietro   Hardware Upgrade Forum > Software > Programmazione

Come rispettare tutte le nuove regole per i monopattini elettrici? La guida per non rischiare sanzioni
Come rispettare tutte le nuove regole per i monopattini elettrici? La guida per non rischiare sanzioni
Sono ormai definitive le nuove norme del Codice della Strada per i monopattini elettrici. Non solo targa e assicurazione, le regole sono tante e riguardano diversi aspetti, vi spieghiamo come evitare sanzioni che possono essere salate
DLSS 4.5: con Dynamic Frame Generation e MFG 6X NVIDIA alza la posta
DLSS 4.5: con Dynamic Frame Generation e MFG 6X NVIDIA alza la posta
DLSS 4.5 introduce Dynamic Multi Frame Generation e MFG 6X, permettendo fino a cinque frame generati per ogni frame renderizzato. I test su Cyberpunk 2077 e 007 First Light mostrano forti incrementi di FPS e riduzione della latenza su RTX 5090 Laptop. Migliorano fluidità, stabilità e qualità visiva.
Plaud NotePin S, il registratore IA si fa indossabile (ma è facile da perdere)
Plaud NotePin S, il registratore IA si fa indossabile (ma è facile da perdere)
Quattro modi di indossarlo, stessa app del Plaud Note Pro e integrazione con il desktop. Il registratore IA da indossare di Plaud eccelle in mobilità, ma resta vincolato all'abbonamento ed è facile da perdere
Tutti gli articoli Tutte le news

Vai al Forum
Rispondi
 
Strumenti
Old 30-03-2003, 15: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


Come rispettare tutte le nuove regole per i monopattini elettrici? La guida per non rischiare sanzioni Come rispettare tutte le nuove regole per i mono...
DLSS 4.5: con Dynamic Frame Generation e MFG 6X NVIDIA alza la posta DLSS 4.5: con Dynamic Frame Generation e MFG 6X ...
Plaud NotePin S, il registratore IA si fa indossabile (ma è facile da perdere) Plaud NotePin S, il registratore IA si fa indoss...
Redmi Watch 6 in prova: lo smartwatch con ampio display da 2000 nit a meno di 100 euro Redmi Watch 6 in prova: lo smartwatch con ampio ...
Mad Catz M.M.O. 7+: lo stesso DNA del R.A.T. 8+ ADV, ma con molti più pulsanti Mad Catz M.M.O. 7+: lo stesso DNA del R.A.T. 8+ ...
SpaceX Starfall, capsule per lo sviluppo...
Fable 5, il modello Mythos di Anthropic ...
Costruire sulla Luna: i test per le futu...
La NASA ha annunciato gli astronauti del...
Mondiale 2026, Lenovo unico partner tecn...
007 First Light ha venduto più di...
Harley-Davidson, svelato il prezzo itali...
PC Windows 11 in crash: ma la colpa è di...
Dopo i 'NO 5G' arrivano i 'NO FIBRA'? Ar...
Promettono un parco e costruiscono un da...
L'aeroplano supersonico ''silenzioso'' N...
Euro-Office sbugiardata da LibreOffice: ...
I 10 sconti TOP Amazon: 4 novità ...
Galaxy Z Flip 8, in Europa avrà i...
SpaceX annuncia i satelliti AI1 destinat...
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: 23:37.


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