-
FlexPro
- Auf einen Blick
- Features & Optionen
- Einsatzgebiete
- Alle Vorteile
- Neu in FlexPro 2021
- FlexPro gratis testen
- FlexPro View OEM Freeware
- Kaufberatung
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
- Produkte
- News
- Support
- Unternehmen
- Jobs
- Kontakt
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
Find & Replace
- Dieses Thema hat 9 Antworten sowie 3 Teilnehmer und wurde zuletzt vor vor 3 Jahren, 6 Monaten von Bernhard Kantz aktualisiert.
-
AutorBeiträge
-
Februar 4, 2016 um 10:38 am Uhr #12900HerveM1234Teilnehmer
Hi,
Is there a way to perform a string replacement in a complete database?
i.e. : I would like to replace the string “aaa” by “bbb” in every formulas, (formulas name & content) diagrams, tables,… of the database.Thanks for help
Februar 4, 2016 um 10:38 am Uhr #8560HerveM1234TeilnehmerHi,
Is there a way to perform a string replacement in a complete database?
i.e. : I would like to replace the string “aaa” by “bbb” in every formulas, (formulas name & content) diagrams, tables,… of the database.Thanks for help
Februar 5, 2016 um 8:39 am Uhr #9423Bernhard KantzTeilnehmerThere is no simple way of replacing strings in object names and (embedded) formulas. Of course one can program a small VBA script that crawls through the whole database and changes the desired entities (names, contents).
Februar 5, 2016 um 9:50 am Uhr #9425HerveM1234TeilnehmerOK for that.
Would it be possible to get an example of this kind of VBA script?
Thanks in advance.
Februar 8, 2016 um 9:20 am Uhr #9426Bernhard KantzTeilnehmerSince the names to change occur in many different locations, it is no easy task. The following example just handles object names, formula contents and datasets for 2d diagrams.
Option Explicit Const csSearch As String = "Jan" Const csReplace As String = "01" Public Sub SearchReplace() Visit ThisDatabase.RootFolder End Sub Private Sub Visit(ByRef oFld As Folder) Dim cllObs As FpObjects Set cllObs = oFld.Objects Dim oObj As FpObject For Each oObj In cllObs Select Case oObj.ObjectType Case fpObjectTypeFolder Visit oObj Case fpObjectTypeFormula VisitFormula oObj Case fpObjectType2DDiagram VisitDiagram2D oObj End Select ' rename object itself Dim sNewName As String sNewName = Replace(oObj.Name, csSearch, csReplace) If sNewName oObj.Name Then oObj.Rename sNewName, fpRenamingOptionsDontCorrectReferences End If Next oObj End Sub Private Sub VisitFormula(ByRef oFml As Formula) oFml.Formula = Replace(oFml.Formula, csSearch, csReplace) End Sub Private Sub VisitDiagram2D(ByRef oDiag2D As Diagram2D) Dim oCurve As Curve2D For Each oCurve In oDiag2D.Curves With oCurve.Data .DataSet = Replace(.DataSet, csSearch, csReplace) .XDataSet = Replace(.XDataSet, csSearch, csReplace) End With Next oCurve End Sub
Februar 8, 2016 um 2:31 pm Uhr #9427HerveM1234TeilnehmerGreat, thanks a lot !
maybe yo should had this feature to the next release !
Februar 10, 2016 um 6:08 pm Uhr #9428HerveM1234TeilnehmerI’ve tested the code : perfect. excepted if there is FPScript expressions embedded in a diagram. These expressions are not modified by the macro.
Thanks again!Februar 11, 2016 um 8:22 am Uhr #9429Bernhard KantzTeilnehmerFor 2d diagrams the code example just handles the datasets for the curves (there was a c&p error for the x dataset). There are of course many locations (e.g. axis scaling) where embedded FPScript code may occur. Handling all the cases would have blown up the code.
From the overall structure one easily can add the functionality needed in ones specific case.Mai 11, 2021 um 2:28 pm Uhr #28939AnonymTeilnehmerHallo,
ich bin noch kein Profi, was VBA angeht. Ich würde gerne bitte wissen, wie der Aufruf aussieht, wenn ich VisitFormula anwenden möchte.
Bei mir geht es auch darum, die Zeichenkette (String File) in meinen Formeln in der Objektliste durch einen anderen String zu ersetzen. Danke im Voraus.
Was tippe ich in meinen Direktbereich? Danke
Mai 14, 2021 um 10:17 am Uhr #28940Bernhard KantzTeilnehmerWenn Sie lediglich in allen Formeln, eine Zeichenkette durch eine andere ersetzen wollen, sollten Sie in der Select-Case-Anweisung im Sub Visit den Fall für das 2D-Diagramm entfernen.
Ersetzen Sie dann die beiden String-Konstanten durch Ihre Zeichenketten und führen dann das Sub SearchReplace aus.
Das Sub VisitFormula können Sie nicht dafür verwenden. Es ist Teil des Visitor-Patterns und dient zur Korrektur einer Formel.
-
AutorBeiträge
- Du musst angemeldet sein, um auf dieses Thema antworten zu können.