Exemple #1
0
        private void newDocumentForm(string path)
        {
            DocumentForm documentForm = new DocumentForm(this);

            documentForm.Show();
            if (path != null)
            {
                documentForm.loadDocument(path);
            }

            documentForm.extraCellTable.isInitialized = true;

            documentForm.extraCellTable.selectCell(1, 1);
            documentForm.extraCellTable.selectCell(0, 0);
        }
Exemple #2
0
        private void newDocumentForm(string path)
        {
            DocumentForm documentForm = new DocumentForm(this);
            documentForm.Show();
            if(path != null)
                documentForm.loadDocument(path);

            documentForm.extraCellTable.isInitialized = true;

            documentForm.extraCellTable.selectCell(1, 1);
            documentForm.extraCellTable.selectCell(0, 0);
        }