home *** CD-ROM | disk | FTP | other *** search
- Update --------------------------------------------
-
- Sub Blattschutz()
- Dim i As Integer
- For i = 1 To ActiveWorkbook.Worksheets.Count
- ActiveWorkbook.Worksheets(i).Activate
- ActiveSheet.Protect Password:="DeinPasswort"
- Next i
- End Sub
-
- Sub Blattschutz_freigeben()
- Dim i As Integer
- Dim pw As String
- For i = 1 To ActiveWorkbook.Worksheets.Count
- ActiveWorkbook.Worksheets(i).Activate
- ActiveSheet.Unprotect Password:="DeinPasswort"
- Next i
- End Sub
-
-
-
-
- Tipp 2 ------------------------------------------
-
- Direkt-Link fⁿr XP-SP1:
-
- http://download.microsoft.com/download/a/4/c/a4ce1a3b-fac8-4597-be33-c10ced905c3b/xpsp1a_de_x86.exe
-
-
- Link fⁿr alle verfⁿgbaren Service Packs:
-
- http://www.microsoft.com/germany/ms/technetservicedesk/servicepacks.htm
-
-
-
-
-
- Tipp 3 -----------------------------------------
-
- Option Explicit
-
- Dim objShell
- Dim intVerzoegerung
-
- ' Zuerst wartenà
- intVerzoegerung = 60000 ' in Millisekunden
- WScript.Sleep intVerzoegerung
-
- ' Jetzt die Programme startenà
- Set objShell = Wscript.CreateObject("Wscript.Shell")
- objShell.Exec ("C:\WINDOWS\NOTEPAD.EXE")
-
-
-
-
- Tipp 5 ------------------------------------------
-
-
- http://download.microsoft.com/download/winntsp/install/6.0a/NT4/de/sp6i386.exe
-
-
-
-
-
- Tipp 8 ------------------------------------------
-
-
- Special USB-Sticks:
-
- Download-Adresse fⁿr PowerPoint Viewer 97
-
- http://www.microsoft.com/downloads/details.aspx?FamilyID=7c404e8e-5513-46c4-aa4f-058a84a37df1&DisplayLang=de
-
-
-
- Tipp 9 ------------------------------------------
-
- Download-Adresse fⁿr MobileAssistant
-
- www.mobileassistant.de
-
-
-
-
-
- Tipp 11 -----------------------------------------
-
- Sub Schriftbild_verbessern()
- Selection.Find.ClearFormatting
- Selection.Find.Replacement.ClearFormatting
- With Selection.Find
- .Text = "º"
- .Replacement.Text = "º^s"
- .Forward = True
- .Wrap = wdFindContinue
- End With
- Selection.Find.Execute Replace:=wdReplaceAll
- With Selection.Find
- .Text = "º^s^s"
- .Replacement.Text = "º^s"
- .Forward = True
- .Wrap = wdFindContinue
- End With
- Selection.Find.Execute Replace:=wdReplaceAll
- With Selection.Find
- .Text = "º^s "
- .Replacement.Text = "º^s"
- .Forward = True
- .Wrap = wdFindContinue
- End With
- Selection.Find.Execute Replace:=wdReplaceAll
- End Sub
-
-
-
-
-
- Tipp 14 -----------------------------------------
-
- Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
- Dim objMe As Recipient
- Set objMe = Item.Recipients.Add("adresse@provider.de")
- objMe.Type = olBCC
- x = objMe.Resolve
- End Sub
-
-
-
-
-
- Tipp 16 -----------------------------------------
-
- [Bitmap Tile Manager]
- UseRootForSwap=0
-
-
-
-
-
-
-
-
-