home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CHIP112004.ISO / downloads / 757415 / Listing11.txt
Encoding:
Text File  |  2004-09-09  |  5.3 KB  |  209 lines

  1. Tipp 5: Internetverbindungen gezielt kontrollieren -----------------------------
  2.  
  3. http://securityresponse.symantec.com/avcenter/vinfodb.html#threat_list
  4.  
  5.  
  6.  
  7. Tipp 7: Musiksymbole verwenden ------------------------------------------
  8.  
  9. http://simplythebest.net/fonts/fonts/font_downloads/musicalsymbols.zip
  10.  
  11.  
  12.  
  13. Tipp 9: Excel-EintrΣge hervorheben --------------------------------------------------------------
  14.  
  15. Private Sub Worksheet_Change(ByVal Target As Excel.Range)
  16. Dim varAlt As Variant
  17. Dim varNeu As Variant
  18. If Not Application.Intersect(Target, Columns("A:A")) Is Nothing Then
  19. varNeu = Target
  20. On Error GoTo Ende
  21. Application.EnableEvents = False
  22. Application.Undo
  23. varAlt = Target
  24. Target = varNeu
  25. If varAlt <> varNeu Then Target.Offset(0, 1) = Date
  26. End If
  27. Ende:
  28. Application.EnableEvents = True
  29. End Sub
  30.  
  31.  
  32.  
  33. Tipp 12: RM-Medien-Dateien speichern------------------------------------------
  34.  
  35. http://www.teamits.com/internet/support/vps/real/http.htm
  36.  
  37.  
  38.  
  39. Tipp 14: Access MDB-Datei verschlⁿsseln ------------------------------------------------
  40.  
  41.  
  42. Option Compare Database
  43.  
  44. Dim appAccess As Access.Application
  45. Dim strPasswort As String
  46.  
  47. Const strDBVerschluesselt = "C:\Daten\Geheimnisse.mdb"
  48. Const strDBEntschluesselt = "C:\Daten\GeheimnisseOpen.mdb"
  49.  
  50. Private Sub Form_Close()
  51. On Error GoTo Err_Form_Encrypt
  52.  
  53.     ' Das Objekt appAccess zerst÷ren, falls es noch existiert
  54.     appAccess.CloseCurrentDatabase
  55.     appAccess.Quit
  56.  
  57. Err_Form_Encrypt:
  58. On Error GoTo Err_Form_Close
  59.     
  60.     If strPasswort <> "" Then
  61.         ' Datenbank wieder verschlⁿsseln
  62.         If Dir(strDBVerschluesselt) <> "" Then Kill strDBVerschluesselt
  63.         DBEngine.CompactDatabase strDBEntschluesselt, strDBVerschluesselt, ";pwd=" & strPasswort, dbEncrypt
  64.         Kill strDBEntschluesselt
  65.     End If
  66.     
  67. Exit_Form_Close:
  68.     Set appAccess = Nothing
  69.     Exit Sub
  70.  
  71. Err_Form_Close:
  72.     MsgBox Err.Description
  73.     Resume Exit_Form_Close
  74.  
  75. End Sub
  76.  
  77. Private Sub Form_Open(Cancel As Integer)
  78. On Error GoTo Err_Form_Open
  79.     
  80.     ' Passwort abfragen
  81.     strPasswort = InputBox(Passwort)
  82.     If strPasswort <> "" Then
  83.         
  84.         ' Object appAccess erzeugen
  85.         Set appAccess = New Access.Application
  86.         
  87.         ' Datenbank entschlⁿsseln
  88.         If Dir(strDBEntschluesselt) <> "" Then Kill strDBEntschluesselt
  89.         DBEngine.CompactDatabase strDBVerschluesselt, strDBEntschluesselt, ";pwd=", dbDecrypt, ";pwd=" & strPasswort
  90.         Kill strDBVerschluesselt
  91.         
  92.         ' Datenbank ÷ffnen
  93.         appAccess.OpenCurrentDatabase strDBEntschluesselt, False
  94.         appAccess.Visible = True
  95.     Else
  96.         MsgBox "Sie haben kein Passwort angegeben!"
  97.     End If
  98.     
  99. Exit_Form_Open:
  100.     Exit Sub
  101.  
  102. Err_Form_Open:
  103.     strPasswort = ""
  104.     MsgBox Err.Description
  105.     Resume Exit_Form_Open
  106. End Sub
  107.    
  108.  
  109. Tipp 15: Mozilla Werbeblocker -------------------------------------------------
  110.  
  111. http://adblock.mozdev.org/
  112.  
  113.  
  114.  
  115. Tipp 16: Netscape 4.x fⁿr E-Mail-Import in Outlook verwenden -------------------------------------
  116.  
  117. http://wp.netscape.com/de/download/download_comm.html
  118.  
  119.  
  120.  
  121. Tipp 17: Opera: Ebay als Standardsuche einrichten
  122.  
  123. URL=http://search.ebay.de/search/search.dll?GetResult&query=%s&shortcut=1&st=2&SortProperty=MetaEndSort&maxRecordsPerPage=100
  124.  
  125.  
  126.  
  127. Tipp 18: WSH MP3-Inhaltsverzeichnis --------------------------------------------------------------
  128.  
  129.  
  130. Option Explicit
  131.  
  132. Dim listArgs
  133. Dim objFileSystem
  134. Dim objFolder, objSubFolder, objFile, objCvsFile
  135.  
  136. Dim szFolder
  137. Dim szCsvFile
  138.  
  139. Dim intLevel
  140.  
  141. Set listArgs = WScript.Arguments
  142. Set objFileSystem = CreateObject("Scripting.FileSystemObject")
  143.  
  144. intLevel = 1
  145.  
  146. If listArgs.Count = 0 Then
  147.    szFolder = InputBox("In welchem Ordner liegen die zu listenden MP3-Dateien?","Ordner auswΣhlen","C:\")
  148. Else
  149.    szFolder = listArgs(0)
  150. End If
  151.  
  152. ' Name der CVS-Datei erfragen
  153. szCsvFile = "C:\Temp\ListeMP3.csv"
  154. szCsvFile = InputBox("Name und Pfad der zu erstellenden Liste?","CVS-Datei benennen", szCsvFile)
  155.  
  156. If Right(szCsvFile,4) <> ".csv" Then
  157.    szCsvFile = szCsvFile & ".cvs"
  158. End If
  159.  
  160. ' CVS-Datei erzeugen
  161. Set objCvsFile = objFileSystem.CreateTextFile(szCsvFile,true)
  162. objCvsFile.Write "Name der Datei" & ";" & "Pfad der Datei" & vbNewLine
  163.  
  164. ' Im Ordner szFolder enthaltene Links und Unterordner verarbeiten...
  165. ListFiles szFolder, intLevel
  166.  
  167. ' CVS-Datei abschlie▀en
  168. objCvsFile.Close
  169. MsgBox "Die Datei " & szCsvFile & " wurde erstellt!"
  170.  
  171.  
  172. function ListFiles(szFolder, intLevel)
  173.  
  174.    If objFileSystem.FolderExists(szFolder) Then
  175.  
  176.       Set objFolder = objFileSystem.GetFolder(szFolder)
  177.       For Each objFile In objFolder.Files
  178.          If Right(objFile.Name,4) <> ".MP3" Then
  179.             objCvsFile.Write objFile.Name & ";" & objFolder.Path & vbNewLine
  180.          End If
  181.       Next
  182.  
  183.       For Each objSubFolder In objFolder.SubFolders
  184.          ListFiles objSubFolder.path, intLevel+1
  185.       Next
  186.  
  187.    else
  188.       MsgBox "Angegebener Ordner " & szFolder & " existiert nicht!"
  189.    end if
  190.  
  191. end function
  192.  
  193.  
  194.  
  195. Tipp 20: Blutalkoholkonzentration abschΣtzen -----------------------------------------
  196.  
  197. http://home.t-online.de/home/boehmj/PROMILLE.zip
  198.  
  199.  
  200.  
  201.  
  202. Tipp 21: Englische Begriffe ⁿbersetzen -----------------------------------------------
  203.  
  204. http://www.quickdic.de
  205. http://dict.leo.org
  206. http://europa.eu.int/eurodicautom/Controller
  207.  
  208.  
  209.