473,769 Members | 2,337 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

barcode printing?

Hi everyone!

Does anyone know how can I do barcode printing?

First of all, I know I have to write a client executable,
but how do I communicate with the thermal printer?

Using software the company I work for needs to buy like Seagull Bartender,
or some other label printing software or can I get access to the printer
directly?

I just need to print a label, a ticket.

Thanks in advance!
Apr 23 '07 #1
15 3167
On Apr 23, 8:06 am, patrickdrd <patrick...@dis cussions.micros oft.com>
wrote:
Hi everyone!

Does anyone know how can I do barcode printing?

First of all, I know I have to write a client executable,
but how do I communicate with the thermal printer?

Using software the company I work for needs to buy like Seagull Bartender,
or some other label printing software or can I get access to the printer
directly?

I just need to print a label, a ticket.

Thanks in advance!
Barcode components:

http://www.google.com/search?hl=en&q=barcode+asp.net

Print on a client:

<input type="button" value="Print" onClick="window .print()" />

Apr 23 '07 #2
I don't want to use that method,
I've already done that,
I want to print a label - ticket using more professional method,

not that simple
Apr 23 '07 #3
On Apr 23, 9:22 am, patrickdrd <patrick...@dis cussions.micros oft.com>
wrote:
I don't want to use that method,
I've already done that,
I want to print a label - ticket using more professional method,

not that simple
You cannot control a clients printer using ASP.NET.

What must be different between a "simple" and not "simple" printing?

Apr 23 '07 #4
I know that!

That's why I'm talking about a client executable (vb.net or vb6)
that will do the job,
using for example an activex by seagull bartender

So, has anyone done sth similar and can provide me with some feedback?
Apr 23 '07 #5
"patrickdrd " <pa********@dis cussions.micros oft.comwrote in message
news:7A******** *************** ***********@mic rosoft.com...
>I don't want to use that method,
I've already done that,
I want to print a label - ticket using more professional method,
I did something similar a few years ago for the mailroom department of a
large organisation. They had fairly complex printing requirements for labels
to go on outgoing documents and packages - barcode, postage paid mark,
reference number, address (obviously!) etc...

They had a small thermal printer for printing the actual labels, but wanted
the data to be entered and maintained on an intranet system. As Alexey
pointed out, ASP.NET cannot control a client printer, so we did the
following:

1) ASP.NET app for data input etc

2) SQL Server to manage the data

3) Dedicated PC with thermal printer attached

4) WinForms app installed on the dedicated PC which constantly "sniffed" SQL
Server for print jobs

5) Collection of Word templates with text tags e.g. <<barcode>>,
<<address>>, <<postmark>et c. When the users submitted a print job, they
specifiied the template to use and the WinForms app used Word automation to
create a new document based on the template chosen, substitute the text tags
with real data, and print the label.
Apr 23 '07 #6
Is it possible to send me that code and templates?
Or am I asking for too much?

If so, email me at pa********@yaho o.gr
Apr 23 '07 #7
I guess, that your're not willing to send me the code,
but could you please give me a hint on printing from word to the thermal
printer?

By calling the printout method?
Apr 23 '07 #8
On Apr 23, 1:02 pm, patrickdrd <patrick...@dis cussions.micros oft.com>
wrote:
on printing from word to the thermal
printer?
Using ASP.NET?

Apr 23 '07 #9
no, I'll be following mark's solution,
word using automation from a vb6 app
Apr 23 '07 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
2376
by: Chris | last post by:
Hi, I found this code to send print direct to printer. It works perfect. Imports System Imports System.Text Imports System.Runtime.InteropServices <StructLayout(LayoutKind.Sequential)> _ Public Structure DOCINFO<MarshalAs(UnmanagedType.LPWStr)> Public pDocName As String<MarshalAs(UnmanagedType.LPWStr)>
5
1851
by: Nathan Bloomfield | last post by:
Does anyone know of any freeware addins that enable printing barcodes in Access 2k3? Regards, Nathan
11
7165
by: Lutz | last post by:
Hello, I'm setting up a barcode system for a storage-database. Now I'm looking for a free (cheap) solution to print barcodes using reports. I'll have to show the barcode to the screen before printing (wasn't my decision). I found two possibilities - using tt-fonts - using an active-x-control
1
2654
by: Aaron Bronow | last post by:
I have an asp.net application which loads a Crystal Reports ReportDocument, passes in parameters for selecting data from the report's database connection, renders the report for previewing on the client then allows the user to print the report on a networked printer. To avoid having to launch an external application on the client I use a server-side print method. When I call ReportDocument.PrintToPrinter the report comes out fine but the...
3
6319
by: Mika M | last post by:
Hi all! I have made an application for printing simple barcode labels using PrintDocument object, and it's working fine. Barcode printer that I use is attached to the computer, and this computer has drivers installed for this printer, and this printer is shared for the network. Question 1:
0
1998
by: =?Utf-8?B?QWJieQ==?= | last post by:
Can ne1 tell me what is the best way to handle barcode fonts in crystal report? I installed IDAutomationHC39M barcode font on my machine and used it in the report. when i used it it shows me the barcode and if i print from the crystal report ide it prints the barcode too. Now when i try to load the same report using the reportdocument object and do a printtoprinter......it prints the filed value without converting it to that barcode...
2
9977
by: nmrpa91290 | last post by:
Hi, I am in the design phase of building a database that will track the productivity of my warehouse. I am thinking of using a barcode scanner to assist me with this. Employees will hopefully be scanning a barcode which will communicate to the computer that the employee did some type of task. Employees will be identified by ID badges which will contain string data to identify them and hopefully log them in. Is this a good way to keep...
0
1893
by: Chee Choon Hong | last post by:
Most of the customer are printing from export raw file or direct link to AS/400 for data retrieval if the backend database is DB2. Hence in order to print to barcode printer, the output file has to embedded with printer protocol command and send for printing. Is there any way to direct print from AS/400 IPDS to Barcode printer through Driver ? Or is there any AS/400 emulation middleware that had barcode printer driver intact?
2
3333
by: sam | last post by:
can someone show how to change print font width & heigh scaling? I am writing a code for barcode printing on smaller label. I do not want change font size, because this may cause the bar code reader could work well is bar code is too small, I want to keep same font heigh but smaller font width? is it possible to do that?
0
9589
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9423
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10211
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10045
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9863
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8870
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6673
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
2
3561
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2815
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.