GFNoteWindow/Mfrm.frm

VERSION 5.00
Begin VB.MDIForm Mfrm
   BackColor       =   &H8000000C&
   Caption         =   "MDIForm1"
   ClientHeight    =   3195
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   4680
   LinkTopic       =   "MDIForm1"
   StartUpPosition =   3 'Windows‑Standard
End
Attribute VB_Name = "Mfrm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Private Sub MDIForm_Load()
    'on error resume next
    Call GFNoteWindowfrm.GENoteWindow_ReceiveNoteFile(App.Path + "\" + "NoteFile.txt")
    Call GFNoteWindowfrm.GFNoteWindow_NoteFile_Load
    Call GFNoteWindowfrm.GFNoteWindow_NoteFile_AutoSave_Enable(5000)
    Call GFNoteWindowfrm.GFNoteWindow_SetFont("FIXEDSYS", 9)
    Call GFNoteWindowfrm.GFNoteWindow_Show
End Sub


[END OF FILE]