Export Geopak Reports to Notepad instead of Ultraedit

Does anybody know how to change the software that Geopak uses when exporting reports?

It keeps telling me that Ultraedit isn't loaded, which I know, but I would like to export to Notepad or Word.

Thanks in advance.

  • Check your setting for the configuration variable called GPK_EDITOR.

  • #----------------------------------------------------------------------

    # UltraEdit Professional Version 16.00 Application Location (Windows 7)

    #----------------------------------------------------------------------

    %if !defined (ULTRAEDIT)

    ULTRAEDIT = C:/Program Files (x86)/IDM Computer Solutions/UltraEdit/

    %if !exists ($(ULTRAEDIT))

    %undef ULTRAEDIT

    %endif

    %endif

    #----------------------------------------------------------------------

    # Microsoft NotePad Application Location

    #----------------------------------------------------------------------

    %if !defined (NOTEPAD)

    NOTEPAD = $(WINDIR)/System32/notepad.exe

    %if !exists ($(NOTEPAD))

    %undef NOTEPAD

    %endif

    %endif

    #----------------------------------------------------------------------

    # Geopak Editor

    #----------------------------------------------------------------------

    %if defined (ULTRAEDIT)

    GPK_EDITOR = $(ULTRAEDIT)UEdit32.exe

    GPK_TYPICAL_EDITOR = $(ULTRAEDIT)UEdit32.exe

    %lock GPK_EDITOR

    %elif defined (NOTEPAD)

    GPK_EDITOR = $(NOTEPAD)

    %lock GPK_EDITOR

    %endif