Can I print from windows Mobile 2003 with your barcode fonts or compact framework DLL?
FileMaker Universal Binary Plugin for Intel Macintosh
PaintOnGraphics method does not exist in the .NET Forms Control
Question: Can I print from windows Mobile 2003 with your barcode fonts or compact framework DLL?
Could I use your software to print barcodes from a Windows Mobile 2003 device such as an IPAQ with your barcode fonts or compact framework DLL, such as this product: http://www.idautomation.com/pocketpcdll/ ?
Solution:
Sean, You can use our control ( http://www.idautomation.com/pocketpcdll/ ) to print and generate barcodes in an application that you create using the .NET Compact Framework. The control is not a stand alone application for printing barcodes on a Windows Mobile device. It is a component that you would add to your application. Unfortunately, the .NET Framework does not natively support printing so that functionality is not embedded in the control. You would have to use the Windows CE APIs to add printing to your application. The following links will give you assistance on printing using the Compact Framework and Windows Mobile 2003. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnnetcomp/html/netcfgetstarted.asp http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnnetcomp/html/net_vs_netcf.asp http://msdn.microsoft.com/netframework/programming/netcf/cffaq/cf10.aspx
Question: FileMaker Universal Binary Plugin for Intel Macintosh
When using FileMaker 8.5 Universal Binary, bar code plugins do not work on the Intel Mac.
Solution:
[--- UPDATED: 11/27/2006 9:40:49 AM BY AGENT: Brant Anderson ---]
A FileMaker Universal Binary Barcode Plugin for the Intel Macintosh is attached to this ticket and may be downloaded and used until the final release, which will be in late Q4, 2006. It uses the new FileMaker 7 API. Although it is not released yet, it has been well tested. It should be released after new functions for OneCode and the Universal Font are added. Please inform us ASAP if any problems are encountered with this new Plugin.
Question: PaintOnGraphics method does not exist in the .NET Forms Control
The PaintOnGraphics method does not exist in the .NET Forms Control:
Solution:
The PaintOnGraphics method exists in most components updated in 2006 or later. If PaintOnGraphics does not exist in the DLL being utilized, the following four lines should be used in place of PaintOnGraphics: Visual Basic .NET: Barcode1.ResolutionPrinterToUse = PrinterName Dim myImage As System.Drawing.Imaging.Metafile myImage = Barcode1.Picture grfx.DrawImage(myImage, 0, 20) C# .NET: Barcode1.ResolutionPrinterToUse = PrinterName; System.Drawing.Imaging.Metafile myImage; myImage = barcode1.Picture; grfx.DrawImage(myImage, 0, 40);For more information, please refer to the .NET user manual and tutorial.
|