July 29th, 2010 at 09:04pm
Under Forum
Text Barcode Help?!?!?!?
Is there anyway you can make a ‘barcode’ using symbols like this ?? it’s for a website and images won’t work :(
i’m stuck
Best answer:
Try looking around on ACSII Art websites you might find something your looking for.
By Barcode Scanner
March 1st, 2010 at 03:57am
Under Forum
Can i printout normal text with barcode printer?
i am planning to buy ARGOX OS-214 Barcode printer, but i want to print text which is written in Word or Excell..
i use this printer for only write something on stickers (using program Microsoft Word..)
Best answer:
u cannot printout normal text from a a barcode printer but u can print barcodes from normal printer
By Barcode Scanner
February 2nd, 2010 at 08:43am
Under Forum
How do you put barcode text in your Myspace display name?
Is there any generator or code that’ll let you put barcode symbols in your Myspace display name? I’ve seen other people do it, but I don’t know how.
I have the barcode font on my computer, but that doesn’t allow me to display in on myspace.
AND! I don’t want an image, I want the acual text.
If you know how my name is Christina. Or just tell me how and I’ll do it myself.
Best answer:
Do you mean like this?
?Christina?
?Christina?
?Christina?
Sorry, if it’s not what you wanted.
By Barcode Scanner
May 25th, 2007 at 04:02am
Under Forum
Of text, graphics, bar codes, and video, ____________________ is NOT a category of output.?
helpe me i dont know this one
Best answer:
im really disappointed in you for having to ask this question….what isnt an output? Do you see video on you screen? graphics? text? because theyre all outputs….so which one is read (input)?
By Barcode Scanner
March 2nd, 2007 at 10:36am
Under Forum
java – why is the output from text file like a square symbol?
here’s the code:
import java.io.*;
import java.util.*;
public class readtext2 {
public static void main(String[] args) throws IOException {
Scanner s = null;
int sum = 0;
FileOutputStream out = null;
FileInputStream in = null;
try {
out = new FileOutputStream(“output.txt”);
s = new Scanner(new BufferedReader(new FileReader(“C:\input.txt”)));
s.useLocale(Locale.US);
while (s.hasNext()) {
if (s.hasNextInt()) {
sum += s.nextInt();
} else {
s.next();
}
}
out.write(sum);
} finally {
s.close();
}
// System.out.println(sum);
}
}
the output of this program goes in a notepad and i always get the [ ] output…but in the console the output is perfectly fine…
how come?
Best answer:
walk in toilet
see this
wat do
By Barcode Scanner
January 15th, 2007 at 10:10am
Under Forum
MS ACCESS – What is an easy way to compare 2 text fields to validate that they are equal?
1 Table, two serial number labels being scanned in via barcodes.
I want to validate that they are the same serial numbers. The fields are AlphaNumberic IE: SNME12345
I have SN1 and SN2 fields, if they are NOT equal I want to display a msgbox and or conditionally make a field turn red.
Best answer:
if a <> b then
msgbox “jhgjyg”
Sorry headcirc: === is not supported in MS Access (at least through version 2003). Can’t use it :)
By Barcode Scanner
May 9th, 2006 at 12:53am
Under Forum
Java – Text File and StringTokenizer – cannot find symbol?
I am writing a simple code to read a text file and split the lines of string into tokens… it is giving error “cannot find symbol” for String Tokenizer. Also, if someone could let me know if I am reading the file correctly and storing the string tokens correctly. :) This is the error:
Employer.java:18: cannot find symbol
symbol : constructor StringTokenizer(java.util.Scanner,java.lang.String)
location: class java.util.StringTokenizer
StringTokenizer st = new StringTokenizer(inputFile, ” “);
This is my code:
import java.util.Scanner;
import java.util.StringTokenizer;
import java.io.*;
public class Employer
{
public static void main (String[] args)
{
File Information = new File(“Information.txt”);
Scanner inputFile = new Scanner(Information);
StringTokenizer st = new StringTokenizer(inputFile, ” “);
while (inputFile.hasNext())
{
String firstName = st.nextToken();
String lastName = st.nextToken();
String employeeNum = st.nextToken();
String hireDate = st.nextToken();
String shiftNum = st.nextToken();
String payRate = st.nextToken();
}
inputFile.close();
}
}
Best answer:
The StringTokenizer class has 3 constructors. Yours doesn’t appear to be any of them.
see
java.sun.com/j2se/1.5.0/docs/api/java/util/StringTokenizer.html
By Barcode Scanner
November 7th, 2005 at 03:56am
Under Forum
Can you get software that will translate text into barcode and then be scanned by barcode to memory?
Is there software for Windows, that can take a page of ordinary text and convert it into barcode so you can use a barcode scanner to scan it into memory for quick storage and retreval?
Best answer:
Barcode isn’t a language. It’s a format that includes error checking. When decoded it’s just a key that’s related to a record in a database.
The database contains all of the information. The barcode just contains the primary key to get you to the right record.
By Barcode Scanner
February 14th, 2005 at 07:35am
Under Forum
How can I use a barcode scanner to input text directly?
I’m using a welch alynn it3800 with a USB input adapter. I want to be able to scan barcodes and have them go in directly as Text (as if it was typed)
Right now when I scan a barcode, it beeps regularly but nothing shows up. Do I need a driver?
Best answer:
You can scan the data directly into Microsoft Excel, for one. Create a sheet and scan the code. The data that code holds will be input into the cell you have selected. I used to do inventory this way.
By Barcode Scanner
Next Posts