Kbase P145540: How to use 4GL to generate a barcode with a title in HTML
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  10/11/2009 |
|
Status: Verified
GOAL:
How to use 4GL to generate a barcode with a title in HTML
GOAL:
How to use Speedscript to generate a barcode with a title in HTML
GOAL:
How do I print a string as a title with the barcode on a webpage
FACT(s) (Environment):
All Supported Operating Systems
Progress 9.x
OpenEdge 10.x
FIX:
Code 39 is a barcode font. Font Code 39 should exist on the client machine. The following html code shows how to apply Font Code 39 to title tag:
<html>
<head>
</head>
<body>
Code 39<br>
<font face="code 39">Code39</font>
</body>
</html>