C# :: Reading From USB Barcode Scanner?
Apr 5, 2011
I'm developing a POS application that should read data from a USB Barcode Scanner
[URL]
and I searched the web a lot to find something to learn how to read the data and how to detect the scanner attached
View 14 Replies
ADVERTISEMENT
Jun 2, 2010
How can i read barcode scanner value from serial port?
View 5 Replies
View Related
Jun 5, 2012
Codez for reading a 2D barcode using C++?
View 3 Replies
View Related
Jul 18, 2014
How can I get scanned barcodes from the barcode card scanner as a result to use it in c# database.
the platform is xp,7,8 and net framework 4
View 1 Replies
View Related
Sep 4, 2014
I want to read the bar code using USB scanner without having the focus on text box using WPF. I have searched around online but not found related answers, I think it is the correct place to post my question.
View 5 Replies
View Related
Oct 10, 2012
I am trying to print a barcode form HClabel printer through my application running on Windows server 2008. The printer is a ntwork printer connected to a Windows 7 Machine.
The code to access the printer and proceed with printing is in VC++. The code has been working fine since years and it still works when I try to print from Windows XP machine(Connect and print on the same printer connected to WIndows 7 machine mentioned above).
The error code I receive when tried to print from windows server 2008 is 2 which says File not found. But when i access the machine from windows server 2008, it is accessible.
Below is the code I use:
if( m_hPrinter != NULL )
EndWriter();
m_hPrinter = ::CreateFile(lpPrinterName,GENERIC_WRITE, FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL );
if( m_hPrinter == INVALID_HANDLE_VALUE )
[Code] .....
what might be causing this to fail-only on the new operating system I use(Windows server 2008)
View 4 Replies
View Related
Nov 12, 2013
I am translating a MATLAB code into C and these are the lines
Code:
file_name = imageTest(i,: );
imgInfo = imfinfo(file_name);
IMAGE_1 = imread(file_name);
if strcmp(imgInfo.ColorType,'truecolor')
[Code].....
how I can change this code to C? I did search but I did not find anything related.
View 3 Replies
View Related
Feb 26, 2013
How do I read a .pdf file using C++? When I try to open it using myfile.open ("example.pdf"); but all I see is some Crazy Symbols. Is there any way to open ?
View 3 Replies
View Related
Sep 9, 2013
I am building a program that will read from a particular web page. I have written it so that it will parse the page correctly, but I can only do it for a downloaded page right now. I would like for it to work simply with the URL.
I have seen things about "screen scraping", though I don't quite understand what it does - I think it's more for just parsing it, which I can already do.
If it is possible to automatically download that file, that is fine as well.
If it matters at all, the pages I am reading from are stories on Fanfiction.net.
View 1 Replies
View Related
Jan 5, 2014
If I am reading data from a .txt file with a person's last name and first name (e.g. Miller Andrew), How do I output the same data with the first name followed by the last ?(e.g. Andrew Miller) Do I use the ignore function?
View 2 Replies
View Related
Aug 24, 2013
how do i implement codes where it shall prompt for an user id.
From the input,the system shall look into the file..and output if the data exist.
For example in the file,
A123
Robinson
012345
B345
Crusoe
543210
So,i juz wanna input for B345.
Output shall be:
B345
Crusoe
543210
The code below is reading the whole data in the file but I only want to read one.
#include<iostream>
#include<fstream>
#include<iomanip>
#include<string>
using namespace std;
int main() {
fstream inFile;
[code]....
View 7 Replies
View Related
Aug 30, 2014
I want to know how to read a .pgm file from my hdd and store it in a 2d array so i can perform some action on the array later on. This is ny first time working with an imqge in c so i know nothing about it. .
View 3 Replies
View Related
Apr 18, 2013
So I'm trying to reformat a paragraph where the first letter of each sentence is capitalized and the rest are lower case. This is my function thus far. I'm trying to read for the end marks . ! and ? and have it so that once the are encountered the next word is capitalized. I used ispunct initially but it read for things like ,'s as well.
int PunctCount(string Text)
//Counts the end marks. {
int Total = 0;
for (int i = 0; i < Text.length(); i++)
if (Text == '.' || Text == '?' || Text == '!')
Total++;
return Total;
}
Right now I get error: no match for âoperator==â in âText == '!'â
View 1 Replies
View Related
May 25, 2014
I have been given a task to make a c++ program that promptsd the user to enter a mp3 file name, read the ID3v1.1 tag and displays it. It then should prompt the user to to decide if they want to edit the comments section of it, then if they edit the section, it should re-print the updated ID3 tag. The list of genres are in a cstring that is as follows.
char genre[126][128] =
{
"Blues" "Classic Rock", "Country", "Dance", "Disco", "Funk",
"Grunge", "Hip-Hop", "Jazz", "Metal", "New Age", "Oldies", "Other",
"Pop", "R&B", "Rap", "Raggae", "Rock", "Techno", "Industrial",
"Alternative", "Ska", "Death Metal", "Pranks", "Soundtrack",
[Code] .....
View 1 Replies
View Related
Jan 7, 2015
I'm absolutely new to C#. I got a code to edit so it can read data from website.
This is the website: [URL] ....
And I would like to read the data from the table from last row 'world' from 1980 to 2013. I have also went through the html to find a tag and i think its this one :
<td class="datacenter2" nowrap onmouseover="highlight(this, '#D6D6D6', 'World,1980')" onmouseout= "highlight"(this, '#F3E9E9','')">
Where i should insert the tag in this code and what to do to run it properly in unity?
and this is the code I must use:
using UnityEngine;
using System.Collections;
using System.Xml;
public class getWEB : MonoBehaviour {
public string data1 = " "; //Light
public string data2 = " "; //Humidity
[Code] ....
View 4 Replies
View Related
Aug 22, 2012
Using the feof() function in the output file i have the last value twice.
This is the input:
1 3 6
1 1 4
0 3 1
1 1 6
0 6 2
1 1 6
And the output should be:
12
6
15
13
But using the feof() the last value appears twice:
12
6
15
13
13
How can i change that?
while(!feof(pfile1)) {
sum=0;
fscanf(pfile1,"%d%d%d",&choice,&day,&val);
if(choice==0)
[Code] ....
View 1 Replies
View Related
Sep 12, 2013
I would like to validate one of my approach.
I am creating a map like
std::map<unsigned int, double> key_value_pair;
I insert the value like as follows
1 25.0
0 30.0
5 90.0
2 22.0
Then i would like to read the value like as follows
double value = key_value_pair[0];
I am able to compile & there is no error.
question is does this will give 30.0 always.?
I am using VS2005.
View 7 Replies
View Related
Dec 9, 2014
How to read a grayscale jpeg image in C++ ?
How do I write the code to read the jpeg file and store its content in a 2D array
View 1 Replies
View Related
Mar 29, 2014
I am practicing with C++ since I done most of C already and I have a problem with reading spaces from a .txt file.
I created a little program that creates a wannabe Cube in wannabe 3D xd, well to appear as 3D like:
Code:
cout << " O------O" << endl;
cout << " / /|" << endl;
cout << " / / |" << endl;
cout << " / / |" << endl;
[Code] .....
The actual code is a bit longer since it offers you to input the size and then it draws the pic. Now that wasn't so hard and I've done that but now I wanted to implement the "MessageBox" func for output.
I managed to write the cube in file cube.txt but when I'm reading from it 1 char at a time since I need to output as char array it avoids all spaces and new lines and just puts all symbols in the same row.
I didn't have that issue with C and I've found on stackoverlow a solution using strings & getline but I need it to be in "char" form.
How to actually read spaces and newlines? This is my current code for reading from file:
Code:
ifstream di("kocka.txt", ios_base::in);
char c[5000];
int br=0;
while( di >> c[br])
{
br++;
}
MessageBox(NULL, c, "Kocka", MB_ICONHAND);
di.close(); P.S kocka = cube (in croatian )
View 1 Replies
View Related
Nov 3, 2014
I'm writing a program using Huffman algorithm to compress text file. I have tested my program by just printing the printing ASCII character to file and it worked fine. However, now I have to implement using bits and my program doesn't work. It seems like I'm not reading or writing the right bits. Here is the result of my testing:In the input file I put abc the input file to compress it. Then I uncompress it the out out is aaa. Below is a snippet of how I read and write bits
Code:
class BitInput {
istream& in; // the istream to delegate to
char buf; // the buffer of bits
int nbits; public:
BitInputStream(istream& s) : in(s), buf(0), bufi(8) { }
[Code] ....
View 4 Replies
View Related
Mar 26, 2014
I am aiming to read an integer from stdin(pointed to the uart) and echo it with the uart interrupt service routine. there is a simple retarget file along with the main code shown below. So far i can read chars (char x[32] but i am struggling with int.
I have gathered that i need to use the scanf function to read an int from the pointer defined in fgets.
My output is giving me weird values, i enter 8 and ill get a random 3 digits back. I have a feeling its a problem with the input buffer.
Code:
//------------------------------------------------------------------------------// Cortex-M0//------------------------------------------------------------------------------
#include <stdio.h>#include <time.h>#include <rt_misc.h>
#include <stdlib.h>#define AHB_LED_BASE
0x50000000#define AHB_UART_BASE
0x51000000void UART_ISR(){
[Code] .....
View 9 Replies
View Related
Jul 30, 2012
Is it useful to use SqlTransaction and transaction.commit() or rollback when only reading from a database? Have some code here that does that
View 1 Replies
View Related
Dec 10, 2013
Basically I want to open a binary file containing utf-8 encoded characers. The length of the encoding is variable: 1, 2 or 3 bytes.
Rules are:
if the read byte has 0 as strong bit then it represents a single byte.
if the read byte has 11 as strong bits then it represents the first byte of a 2 or 3 length character.
if the read byte has 10 as strong bits then it represents the second or third byte of a 2 or 3 length character.
Each character encoded on 2 or 3 byte has to start with a 11xxxxxx and following bytes has to start with 10xxxxxx
So i need to go through his file, read byte per byte to analyse what kind of byte it is, sometimes go back to previous character etc etc
My goal is to identify all encoded characters in the file and then process them by convering them to Unicode value, storage in array etc...
View 4 Replies
View Related
Sep 10, 2014
I just took up c programming and like it so far. Now I got a problem reading in a character in a program. The program looks like this:
insert
Code:
#include <stdio.h>
main()
{
char c1, c2;
printf("Letter 1: ");
c1 = getchar();
[Code]....
View 8 Replies
View Related
Feb 28, 2013
So im just trying to read in an pgm file and store it in an array,
Code:
int** imageArray;
//allocate the image array
imageArray = (int**) malloc(row * sizeof(int*));
for(i = 0; i < row; i++)
imageArray[i] = (int*) malloc(col * sizeof(int));
[Code]....
It stores about 1/3 of the file into the array, and then starts printing 6815940 6819608 followed by a bunch of 0's.
View 10 Replies
View Related
Nov 2, 2013
It appears that when you enter command line arguments or use fgets() to input a string you can assign that string to another string variable using the assignment operator. But when you read from a file, you can't do that, you get a segfault. It seems the only way to get around that is to malloc the string and use the strcpy function.
Code:
#include <stdio.h>
struct person {
char *names[2];
};
void readFile(struct person p){
FILE *file = fopen("names", "r");
[Code]....
View 3 Replies
View Related