Greg C
Greg C

Reputation: 31

Is the call order guaranteed for multiple SetWindowSubclass against the same window?

I am using SetWindowSubclass to set up two different subclass procedures against a control (in this case, a multiline edit field).

One subclass "edit" functionality specific to edit controls and the other "base" functionality specific to any control. It seems that no matter what order I apply these in "base" is being called before "edit".

Has anyone else hit this issue?

Upvotes: 3

Views: 557

Answers (1)

Raymond Chen
Raymond Chen

Reputation: 45172

There is no guarantee of order, sorry.

Upvotes: 2

Related Questions