Search found 64 matches

by Yuri
Fri Sep 09, 2011 9:50 am
Forum: VintaSoft Barcode .NET SDK Discussions
Topic: IndexOutOfBoundsException with german umlauts
Replies: 2
Views: 9217

Re: IndexOutOfBoundsException with german umlauts

Hi, TextValueItem may contain only symbols which are allowed for encoding in text mode. The symbols like Ä, Ö, Ü and ß should be encoded in binary mode. Utilize automatic selection of encoding mode by setting barcodeWriter.Settings.Value property at necessary value. The following code illustrate how...
by Yuri
Thu Sep 08, 2011 4:30 pm
Forum: VintaSoft Barcode .NET SDK Discussions
Topic: Encoding DataMatrix with Latin-2 using ECI
Replies: 4
Views: 23360

Re: Encoding DataMatrix with Latin-2 using ECI

1. Yes, your code looks corect, meaning your first message. 2. According to the specification ISO/IEC16022:2006 decoding(encoding) of text is a task of Application software, barcode reader just gives the information on how the data should be interpret. For that purpose our barcode reader uses the EC...
by Yuri
Fri Jul 08, 2011 2:26 pm
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: How do I add text to a tiff file.
Replies: 3
Views: 14759

Re: How do I add text to a tiff file.

You have made a mistake in your cycle, replace:

Code: Select all

...
for (int iPageCount = 0; iPageCount < imageAnnotations.Count; iPageCount++)
...
with

Code: Select all

...
for (int iPageCount = 0; iPageCount < images.Count; iPageCount++)
...
Sincerely, Yuri
by Yuri
Tue Jul 05, 2011 3:22 pm
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: How do I add text to a tiff file.
Replies: 3
Views: 14759

Re: How do I add text to a tiff file.

Hi, You have not set the size of annotation, so it was 0. Change you annotation creation code like below: TextAnnotation annoTex = new TextAnnotation(); annoTex.ForeColor = Color.Black; annoTex.Text = "Text"; annoTex.Border = true; annoTex.FontSizeDependsImageResolution = true; annoTex.Fon...
by Yuri
Thu Jun 30, 2011 10:48 am
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Mouse wheel zoom
Replies: 1
Views: 6920

Re: Mouse wheel zoom

Hi Aaron,

You should set focus on AnnotainonViewer.

In code after string:

Code: Select all

...
 annotationViewer1.CurrentTool = _customZoom;
 ...
insert the string below:

Code: Select all

 ...
 annotationViewer1.Focus();
 ...
Sincerely, Yuri
by Yuri
Thu Jun 30, 2011 10:45 am
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Ruler/s annotation not saving
Replies: 2
Views: 8204

Re: Ruler/s annotation not saving

Hi,

The reported issue resolved in the latest release.

Regards, Yuri
by Yuri
Thu Jun 30, 2011 10:45 am
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: CanRotate=false appearance
Replies: 2
Views: 7690

Re: CanRotate=false appearance

Hi,

The reported issue resolved in the latest release.

Regards, Yuri
by Yuri
Fri Jun 24, 2011 1:37 pm
Forum: VintaSoft PDF .NET Plug-in Discussions
Topic: Highlight Text tool
Replies: 2
Views: 8580

Re: Highlight Text tool

Hello, Use on-page drawing opportunities with necessary color, transparence and color blending. Here is a snippet of code which highlights selected text (put it as new button in our PDFEditorDemo): private void highlightSelectedTextToolStripMenuItem_Click(object sender, EventArgs e) { if (imageViewe...
by Yuri
Thu Jun 09, 2011 10:38 am
Forum: VintaSoft Barcode .NET SDK Discussions
Topic: New features request for version 5.3 of VintaSoftBarcode.NET
Replies: 16
Views: 32354

Re: New features request for version 5.3 of VintaSoftBarcode.NET

We've implemented XML serialization for barcode reader settings at this time.

The same will be available for barcode writer in comming next version 6.1.

--
Kind regards, Yuri
by Yuri
Tue Apr 26, 2011 4:17 pm
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Loading EmbeddedImageAnnotations from XML
Replies: 4
Views: 11158

Re: Loading EmbeddedImageAnnotations from XML

To be successfully deserialized the annotation code must contain constructor without params like below: Public Class SymbolAnnotation Inherits EmbeddedImageAnnotation ... Public Sub New() End Sub ... So we've a bit modificated your code and now you'll be able to deserialize the annotation. Imports V...