Search found 4 matches

by pikob1
Fri Mar 26, 2010 1:06 pm
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Saving and loading annotations (XMP) from database
Replies: 1
Views: 6844

Re: Saving and loading annotations (XMP) from database

Ok, I solved it.

The field in database should be of Xml type.

And saving should use SqlDbType.Ntext type.
by pikob1
Thu Mar 25, 2010 7:14 pm
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Saving and loading annotations (XMP) from database
Replies: 1
Views: 6844

Saving and loading annotations (XMP) from database

Hi, I have this code for loading annotations from database: AnnotationCollection collection; XmlDocument doc = new XmlDocument(); cmd.CommandText = "SELECT ... FROM ... WHERE Id=" + id + ";"; cmd.Connection = con2; object obj = cmd.ExecuteScalar(); doc.InnerXml = obj.ToString(); ...
by pikob1
Mon Mar 22, 2010 5:09 pm
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Additional annotation property
Replies: 1
Views: 6387

Additional annotation property

Hello,

is there a way to add a custom property to a single annotation, which would be visible in propertyGrid?

Thank you.
by pikob1
Fri Mar 19, 2010 3:05 pm
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Merge two annotations
Replies: 1
Views: 6117

Merge two annotations

Is there an easy way to merge two annotations?

I need to merge an embedded Image and Polygon annotations into a new one.