I read through a bunch of tkinter questions that were asked here and haven't been able to figure out how to get the scrollbar to show up. Any help would be much appreicated.
self.resultsCanvas = Canvas(self, bg='white', height=300, width=300, relief=FLAT).grid(column=0, row=8)
self.resultsCanvas.config(yscrollcommand = self.scrollResults.set)
self.scrollResults = Scrollbar(root, command=self.resultsCanvas.yview).grid(column=11, row=8, sticky='E')
self.blankSpace03 = Label(self, text=" ").grid(column=1, row=9)
I get the following error message:
self.resultsCanvas.config(yscrollcommand = self.scrollResults.set)
AttributeError: 'NoneType' object has no attribute 'config'