I am trying to add a scroll bar to a text box which makes up part of my GUI.
So far I have made the text box and (i think) the scroll bar but dont know how to combine the two items.
textBox_1 = Text(myGUI).place(x=75, y=300)
scroll_1 = Scrollbar(myGUI)
scroll_1.configure()