Guys,

How do I create a blank text file if it doesn't exist....

Bob

VB Code:
  1. 'Setup CustomDic for C1Spell
  2.         Dim CDFile As String
  3.         CDFile = CurrentContract.Path & PWBlib.library.DynamicProperty("CustomDicLocation")
  4.         If Not IO.File.Exists(CDFile) Then
  5.             'IO.FileMode.CreateNew
  6.         End If
  7.         SpellInitialised = True