tufanv Expert Licensed User Longtime User Jun 16, 2022 #1 Hello, Is there any way to intercept textchanged event when textfield's text changed via code? Thanks
Hello, Is there any way to intercept textchanged event when textfield's text changed via code? Thanks
LucaMs Expert Licensed User Longtime User Jun 16, 2022 #2 tufanv said: Hello, Is there any way to intercept textchanged event when textfield's text changed via code? Thanks Click to expand... Sure! Where you change it by code, that's the moment! ? You need a boolean variable declared at the module level (ChangingByCode As Boolean). In the TextChanged event check it and proceed accordingly. Upvote 0
tufanv said: Hello, Is there any way to intercept textchanged event when textfield's text changed via code? Thanks Click to expand... Sure! Where you change it by code, that's the moment! ? You need a boolean variable declared at the module level (ChangingByCode As Boolean). In the TextChanged event check it and proceed accordingly.