I am going to match an Entry widget with a slider (Scale) in the tkinter. using the below code, when you change the slider, the Entry widget will change correctly. but, when I change the value in the Entry, it can not be changed, because the value is less than the from_ value given in the Scale. Is there anyone to know how I can solve this problem?
from tkinter import *
win=Tk()
win.geometry('1000x550')
C1 = IntVar()
en1 = Entry(win, textvariable = C1, width=10)
en1.place(x=67, y=60)
sc1 = Scale(win,from_=100, to=530, length=200, variable = C1, resolution = 1, orient = 'horizontal')
sc1.place(x=300, y=40)
win.mainloop()