R
Russell Stevens
I am binding a combo box to an arraylist with code such as
ComboBox(0).DataSource = TheArrayList
ComboBox(0).DisplayMember = "Text"
ComboBox(0).ValueMember = "Tag"
ComboBox(0).DataBindings.Add(New Binding("SelectedValue", dt, "DiscCat ID"))
Works fine on my development computer and on any other computer using the
raw exe file. However, after I obfuscate the code with the included
community edition (latest version available 1.2.1269), the above code
crashes with an error such as
"Could not bind to the new display member.
New Parameter name: newDisplayMember"
My app is shipping. To fix I either need to ship unobfuscated code or get a
fix from Preemptive Solutions for the community edition. It appears to be
impossible to get tech support - I can't even figure out how to report the
problem to them. I guess you have to buy the professional edition to get
support, but as far as I can tell, it probably doesn't work either.
I suspect the problem has something to do with the late binding I am trying
to do. Any suggestions on how to work around the problem or get Preemptive's
attention to tell them their product doesn't work.
Thanks
Russ Stevens
ComboBox(0).DataSource = TheArrayList
ComboBox(0).DisplayMember = "Text"
ComboBox(0).ValueMember = "Tag"
ComboBox(0).DataBindings.Add(New Binding("SelectedValue", dt, "DiscCat ID"))
Works fine on my development computer and on any other computer using the
raw exe file. However, after I obfuscate the code with the included
community edition (latest version available 1.2.1269), the above code
crashes with an error such as
"Could not bind to the new display member.
New Parameter name: newDisplayMember"
My app is shipping. To fix I either need to ship unobfuscated code or get a
fix from Preemptive Solutions for the community edition. It appears to be
impossible to get tech support - I can't even figure out how to report the
problem to them. I guess you have to buy the professional edition to get
support, but as far as I can tell, it probably doesn't work either.
I suspect the problem has something to do with the late binding I am trying
to do. Any suggestions on how to work around the problem or get Preemptive's
attention to tell them their product doesn't work.
Thanks
Russ Stevens