سلام.
در این که این چاپگرها یا در واقع دستگاههای پرفراژ با چاپگرهای معمولی فرق میکنند شکی نیست . چون این چاپگر روی کامپیوتر بانک نصب است و با نرم افزار بانک کار میکند ولی روی همین کامپیوتر مثلا در word یه کلمه رو تایپ و دستور چاپ توسط این چاپگر را میدهیم . ولی انگار نه انگار . حتی در properties چاپگر های نصب شده روی یک کامپیوتر کلید print test page هست که در مورد این چاپگرها کاری انجام نمی دهد .
این رو هم بگم که این چاپگرها به پورت COM متصل میشوند.
من تو msdn کلاس generic رو پیدا کردم که نمی دونم اصلا به Generic Text Only Printer مربوط است یا نه (از بس که اینگلیسیم خوبه!!!)
ms-help://MS.VSCC.v80/MS.MSDN.v80/MS.VisualStudio.v80.en/dv_vbalr/html/89f771d9-ecbb-4737-88b8-116b63c6cf4d.htm
اینم چند خط اولش اگه اینجوری نشد پیداش کرد:
A generic type is a single programming element that adapts to perform the same functionality for a variety of data types. When you define a generic class or procedure, you do not have to define a separate version for each data type for which you might want to perform that functionality.
An analogy is a screwdriver set with removable heads. You inspect the screw you need to turn and select the correct head for that screw (slotted, crossed, starred). Once you insert the correct head in the screwdriver handle, you perform the exact same function with the screwdriver, namely turning the screw.
Screwdriver set as a generic tool
When you define a generic type, you parameterize it with one or more data types. This allows the using code to tailor the data types to its requirements. Your code can declare several different programming elements from the generic element, each one acting on a different set of data types. But the declared elements all perform the identical logic, no matter what data types they are using.
For example, you might want to create and use a queue class that operates on a specific data type such as String. You can declare such a class from System.Collections.Generic.Queue, as the following example shows.
بازم ممنون از توجهتون.