Torna indietro   Hardware Upgrade Forum > Software > Programmazione

Fable e Sol a confronto: due cartoni animati creati su un PC con RTX 3090
Fable e Sol a confronto: due cartoni animati creati su un PC con RTX 3090
Ho affidato ai due modelli lo stesso mestiere ma non lo stesso identico prompt: trasformare una storia illustrata in un video usando una RTX 3090 e modelli locali. Ne sono usciti due film, due applicazioni e due idee opposte di efficienza. Fucina, progettata con Fable 5, colpisce di più nei primi secondi. Storyboard Studio, costruito con ChatGPT/Codex, regge meglio sulla distanza e vince il confronto complessivo, ma di stretta misura
Il tablet rugged leggero e sottile: Lenovo ThinkTab X11 offre resistenza, doppia USB-C e batteria rimovibile
Il tablet rugged leggero e sottile: Lenovo ThinkTab X11 offre resistenza, doppia USB-C e batteria rimovibile
Lenovo ha lanciato il ThinkTab X11 rimettendo piede nel segmento dei tablet Android con il marchio Think dopo oltre un decennio di assenza. Il risultato è un dispositivo che prende una direzione precisa: massima dotazione funzionale, costruzione resistente, autonomia fuori dagli schemi
AMD Advancing AI 2026: l'hardware AMD per le elaborazioni IA del futuro, tra GPU, CPU e robot
AMD Advancing AI 2026: l'hardware AMD per le elaborazioni IA del futuro, tra GPU, CPU e robot
AMD Advancing AI è l'appuntamento annuale con il quale l'azienda americana mostra quelle che sono le proprie novità dal versante datacenter. Tra piattaforma Helios, GPU Instinct MI455X e processori EPYC di sesta generazione tutto quello che serve per processare l'IA sempre più complessa ed esigente
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


Fable e Sol a confronto: due cartoni animati creati su un PC con RTX 3090 Fable e Sol a confronto: due cartoni animati cre...
Il tablet rugged leggero e sottile: Lenovo ThinkTab X11 offre resistenza, doppia USB-C e batteria rimovibile Il tablet rugged leggero e sottile: Lenovo Think...
AMD Advancing AI 2026: l'hardware AMD per le elaborazioni IA del futuro, tra GPU, CPU e robot AMD Advancing AI 2026: l'hardware AMD per le ela...
Tascabile e con Android: BOOX Go 6 Gen II è diverso da tutti gli altri e-reader Tascabile e con Android: BOOX Go 6 Gen II &egrav...
Recensione Lenovo Idea Tab Plus: il tablet da 12 pollici che costa meno di 300 euro Recensione Lenovo Idea Tab Plus: il tablet da 12...
SpaceX Starship: dopo il successo di Fli...
Gli incendi in Spagna minacciano la staz...
Intel punta sul vetro: partnership con L...
L'acquisizione di ATI compie 20 anni: AM...
iPhone 18 Pro, Apple le prova tutte per ...
NVIDIA, Samsung, SK hynix e Broadcom: a ...
Sony rompe il silenzio: God of War Laufe...
iPhone Ultra, lancio ritardato per il pi...
Microsoft rafforza l'attivazione di Wind...
Galaxy S27 e S27+: Samsung starebbe test...
macOS più sicuro di Windows? Il n...
L'UE punta il dito contro TikTok: ecco c...
Qualcomm aumenterà i prezzi dei c...
TOP 12 Amazon weekend: al top una stampa...
Come sfruttare le offerte di Amazon per ...
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: 03:28.


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