"The type OpenDental.UI.SignatureBoxWrapper has no property
Posted: Thu Jan 19, 2017 10:40 pm
I want to implement Digital Signatures in my Sig Boxes using SignatureBoxWrapper.
If I add
like so
I can't work on my form in the designer because it complains "The type OpenDental.UI.SignatureBoxWrapper has no property 'AllowDigitalSig'.
But it does.
I get the same problem in the designer for FormProcEdit and all the other OD Forms with Sig Boxes BTW. Do you see the same issue on your end? I'm thinking it might be a bug in VS 2015, because everything compiles and runs just fine.
https://msdn.microsoft.com/query/dev14. ... 5)&rd=true
If I add
Code: Select all
this.signatureBoxWrapper.AllowDigitalSig = true;Code: Select all
//
// signatureBoxWrapper
//
this.signatureBoxWrapper.BackColor = System.Drawing.SystemColors.ControlDark;
this.signatureBoxWrapper.Location = new System.Drawing.Point(612, 646);
this.signatureBoxWrapper.Name = "signatureBoxWrapper";
this.signatureBoxWrapper.AllowDigitalSig = true;
this.signatureBoxWrapper.SignatureMode = OpenDental.UI.SignatureBoxWrapper.SigMode.Default;
this.signatureBoxWrapper.Size = new System.Drawing.Size(364, 66);
this.signatureBoxWrapper.TabIndex = 184;
this.signatureBoxWrapper.SignatureChanged += new System.EventHandler(this.signatureBoxWrapper1_SignatureChanged);But it does.
I get the same problem in the designer for FormProcEdit and all the other OD Forms with Sig Boxes BTW. Do you see the same issue on your end? I'm thinking it might be a bug in VS 2015, because everything compiles and runs just fine.
https://msdn.microsoft.com/query/dev14. ... 5)&rd=true