Search found 8 matches

by Junhui
Tue Feb 14, 2012 4:22 pm
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Annotation's bounding box event
Replies: 1
Views: 5482

Annotation's bounding box event

Hello, Alex. At First, thank you for your supporting about image collection's index. I downloaded (registered version) new release, and I solved that issue. I have a problem with Annotation's event, so I need your advices. When I move mouse cursor into Annotation's bounding box, the cursor changed t...
by Junhui
Thu Feb 09, 2012 9:48 am
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Set the AnnotationViewer's Current Image
Replies: 2
Views: 6607

Re: Set the AnnotationViewer's Current Image

I know when I use Add(), can change current image of annotationViewer1's image properly. Like codes below, { ... annotationViewer1.Images.Add(_sourceStream); annotationViewer1.FocusedIndex = annotationViewer1.Images.Count - 1; ... } But I want to "Insert" image at the top of the annotatedT...
by Junhui
Thu Feb 09, 2012 8:59 am
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Set the AnnotationViewer's Current Image
Replies: 2
Views: 6607

Set the AnnotationViewer's Current Image

Hello, Alex. I have a problem with AnnotationViewer. I got the image files from DB, and maked them to VintasoftImages, and added to annotationViewer's ImageCollection. My Codes are below, foreach(...) { ... VintasoftImage img = new VintasoftImage(mstream); annotationViewer1.Images.Add(img); ... } Af...
by Junhui
Mon Feb 06, 2012 10:30 am
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: CustomAnnotation - don't want to select annot. after draw
Replies: 3
Views: 7334

Re: CustomAnnotation - don't want to select annot. after dra

I handled this issue with codes below,

[DllImport("user32.dll")]
public static extern void mouse_event(int dwFlags, int dx, int dy, int cButtons, int dwExtaInfo);

and I generated 'mouse_event(0x8 | 0x10, 0, 0, 0, 0);' after draw.

Best regards,
Jun Hee.
by Junhui
Tue Jan 31, 2012 8:37 am
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: CustomAnnotation - don't want to select annot. after draw
Replies: 3
Views: 7334

CustomAnnotation - don't want to select annot. after draw

I've made custom annotation class which overrides LinesAnnotation. After drawing that annotation(customed) on annotationviewer, it selected automatically. I want to select custom annotation manually, but not select automatically after drawing. Can I do that with OnFinishBuilding(System.Drawing.Point...
by Junhui
Tue Jan 31, 2012 8:21 am
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Memorystream looks like empty
Replies: 2
Views: 5952

Re: Memorystream looks like empty

It works well, thank you for your advice. :D
by Junhui
Fri Jan 27, 2012 9:29 am
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Memorystream looks like empty
Replies: 2
Views: 5952

Memorystream looks like empty

Hello, I have a question for this issue... I opened image file on AnnotationViewer and draw some annotations, and saved that. Saving to image, it works. But saving to memorystream, it doesn't work. Here are codes below... private void btnSave_Click(object sender, EventArgs e) { MemoryStream mstream ...
by Junhui
Wed Jan 18, 2012 11:00 am
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: How can I see Vinta Elements in ToolBox? (VS2008)
Replies: 1
Views: 4803

How can I see Vinta Elements in ToolBox? (VS2008)

Hello, I'm starter of Vintasoft sdk .NET and I want to use Vintasoft.Imaging & Annotation plugin. Now I testing these features and willing to buy licenses.. Anyway, My testing environment is "Visual Studio 2008, project codes are written in C# ", and already installed VintaSoftImaging ...