Bekijk de onderstaande video om te zien hoe je onze site als een web app op je startscherm installeert.
Opmerking: Deze functie is mogelijk niet beschikbaar in sommige browsers.
Privacywetgeving
Het is bij Helpmij.nl niet toegestaan om persoonsgegevens in een voorbeeld te plaatsen. Alle voorbeelden die persoonsgegevens bevatten zullen zonder opgaaf van reden verwijderd worden. In de vraag zal specifiek vermeld moeten worden dat het om fictieve namen gaat.
Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, ByVal Target As Range)
With Application
Select Case Sh.Index
Case 1
.DisplayFormulaBar = Not Intersect(Target, Range("b6:b14,e6:k14")) Is Nothing
Case 2
.DisplayFormulaBar = Not Intersect(Target, Range("c6:g24")) Is Nothing
Case 3
.DisplayFormulaBar = Not Intersect(Target, Range("c6:c20,g6:j2014,m6:n20")) Is Nothing
End Select
End With
End Sub
Private Sub Workbook_Open()
Application.DisplayFormulaBar = False
For Each nm In ThisWorkbook.Names
nm.Visible = False
Next nm
End Sub
Private Sub Workbook_BeforeClose(Cancel As Boolean)
Application.DisplayFormulaBar = True
For Each nm In ThisWorkbook.Names
nm.Visible = True
Next nm
End Sub
Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, ByVal Target As Range)
BEREIK1A = Range("BEREIK1A").Value
BEREIK2A = Range("BEREIK2A").Value
BEREIK3A = Range("BEREIK3A").Value
With Application
Select Case Sh.Index
Case 1
.DisplayFormulaBar = Not Intersect(Target, Range(BEREIK1A)) Is Nothing
Case 2
.DisplayFormulaBar = Not Intersect(Target, Range(BEREIK2A)) Is Nothing
Case 3
.DisplayFormulaBar = Not Intersect(Target, Range(BEREIK3A)) Is Nothing
End Select
End With
End Sub
Kan je zelf toch zien? Of google je alles bij elkaar en propt het in een bestandje zonder te weten wat de effecten zijn?
Private Sub Workbook_Open()
Application.MoveAfterReturnDirection = xlToRight
Application.DisplayFormulaBar = True
For Each nm In ThisWorkbook.Names
nm.Visible = False
Next nm
End Sub
Private Sub Workbook_BeforeClose(Cancel As Boolean)
Application.DisplayFormulaBar = True
For Each nm In ThisWorkbook.Names
nm.Visible = True
Next nm
End Sub
[COLOR=#ff0000]private muisrichtinggebruiker[/COLOR]
Private Sub Workbook_Open()
[COLOR=#ff0000] muisrichtinggebruiker = Application.MoveAfterReturnDirection[/COLOR]
Application.MoveAfterReturnDirection = xlToRight
End Sub
Private Sub Workbook_BeforeClose(Cancel As Boolean)
[COLOR=#ff0000] Application.MoveAfterReturnDirection = muisrichtinggebruiker[/COLOR]
End Sub
We gebruiken essentiële cookies om deze site te laten werken, en optionele cookies om de ervaring te verbeteren.