Skip to content

Commit f2d643b

Browse files
authored
Update parent_window.py
1 parent 8bc2874 commit f2d643b

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import os
22
from delphifmx import *
3-
from child_window import Child_Form
43

54
class Parent_Form(Form):
65

@@ -10,8 +9,6 @@ def __init__(self, owner):
109
self.enter_text_label = None
1110
self.main_heading = None
1211
self.LoadProps(os.path.join(os.path.dirname(os.path.abspath(__file__)), "parent_window.pyfmx"))
13-
self.child_form = Child_Form(self)
1412

1513
def my_buttonClick(self, Sender):
16-
self.child_form.result_text_label.Text = self.enter_text_edit.Text
17-
self.child_form.show()
14+
pass

0 commit comments

Comments
 (0)