Thank you. I double-clicked on scanwedge.exe and my scanner scans. Is there a way to start this program automatically when the scanner is started? Or has it to be started manually all the time?
Main Topics
Browse All TopicsI am able to upload a program to the barcode scanner, with CE 5.0, and it has wireless access to the LAN, but I am not able to scan. I probably will need libraries, and I will have to activate them. Please some help.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Once you start it up, it will always be running, unless the 3090 is rebooted. I believe there is a way to put it in a startup folder, but I would have to check as to how.
With our app, we simply place a shortcut on the desktop for those rare cases where a user reboots his scanner--and in that case he can simply click that icon to start up the scanwedge or datawedge program...and then it just runs in the background. Note that sometimes the program will just quit scanning--for reasons unknown--but you can simply run that desktop shortcut to get the laser firing again.
I know this is technically solved and this solution works for us as well but have a follow up am curious to address.
For us we have a scanner application that by default reads all kinds of bar codes without the data wedge or any other special configurations. We have a bar code from Ford Motor Co. that in the same application just doesn't work without data wedge running. The scanning laser is active on scan button but the application scan read event is just never fired. Only happens for this new type of code for different client.
Here is our handler, can anyone simply explain why scanner works without data wedge for everything except this bar code type. The laser fires, just no read.
private void barcode1_OnRead(object sender, Symbol.Barcode.ReaderData readerData)
{
try
{
if (_scanType == ScanType.CrossDock)
{
if (txtDealerNumber.Focused)
{
//if (ValidateDealerNumber(read
//{
//there is no DealerNumber set so we must be reading it
txtDealerNumber.Text = readerData.Text;
//readyEntryField(txtCarto
txtCartonNumber.Focus();
ToggleBackColor(txtCartonN
//}
//else
// return;
}
else
{
txtCartonNumber.Text = readerData.Text;
//we should have a 'complete scanned item' at this point
scannedItem = new ScannedItem();
if (txtCartonNumber.Text == null || txtCartonNumber.Text == string.Empty)
{
MessageBox.Show("Carton Number Required");
txtCartonNumber.Focus();
ToggleBackColor(txtCartonN
return;
}
else
scannedItem.CartonNumber = txtCartonNumber.Text;
if (txtDealerNumber.Text == null || txtDealerNumber.Text == string.Empty)
{
MessageBox.Show("Dealer Number Required");
txtCartonNumber.Text = string.Empty;
txtDealerNumber.Focus();
ToggleBackColor(txtDealerN
return;
}
else
scannedItem.DealerNumber = txtDealerNumber.Text;
scannedItem.ScannedItemTyp
//Serialize using data service
dataService.addItem(scanne
//Update the count of total items scanned
_totalItems++;
UpdateTotalItems();
//clear txt fields
txtDealerNumber.Text = string.Empty;
txtCartonNumber.Text = string.Empty;
ToggleBackColor(txtDealerN
//display items
displayItems(scannedItem);
txtDealerNumber.Focus();
}
}
else if (_scanType == ScanType.HVCParts)
{
//More handling code here for option
}
}
catch (Exception ex)
{
Console.WriteLine(ex.Messa
}
}
Also, here are instructions on how to install with auto start following a warm boot. Am trying these now and will update if the instructions are modified at all for us to get working.
Installing DataWedge
Installing the DataWedge utility requires copying several files to the Symbol terminal and put in a specific
directory to prevent loss of files when terminal is powered off.
Be sure to identify the operating system of the handheld device to select the appropriate DataWedge.exe
file.
1) Log on to the terminal
a) Using File Explorer, browse to the share containing the above extracted files
2) Copy the file
a) Select the correct version of the DataWedge.exe file by clicking on the file name.
b) Hold down the stylus on the file name to reveal the pop-up menu.
c) Tap [Copy] with the stylus.
3) Paste the file
a) Browse to the \Windows\StartUp folder on the terminal.
b) Tap and hold a blank area of the window, tap Paste from the pop-up menu to finish the copy of
the DataWedge file to the terminal’s StartUp folder. Installing the DataWedge utility into this
folder will insure the utility restarts during warm boots.
4) Using the same copy and paste procedure above, copy both the DATAWEDGE.EXE and
DATAWEDGE.CPY files to the \Application folder on the terminal. This is a non-volatile storage area
on the terminal for programs and applications. Storing these files here will insure that the utility
program stays on the terminal and gets copied to the StartUp folder during a cold boot or after
recovering from a device loss of power.
5) After copying the utility programs perform a warm boot on the terminal to make sure it automatically
starts. A status icon will be displayed in the system tray after the utility is running.
I am aware that you can programmatically scan without using datawedge, but I've never gotten involved in the code, so I don't know how to use it. But what I'm getting at is this: when using datawedge, you can go to the 'decoders' setup and pick and choose which symbologies to read. If you try to read a type of bar code that is not checked, then the laser will fire, but it will not read any data.
So I'm thinking that surely there is a similar type of configuration for situations where you don't use datawedge, but scan programmatically instead. I don't know where or how you pick and choose which symbologies to read, but it may be that this new bar code you're encountering IS activated for datawedge, but is NOT activated for programmatic scanning.
Business Accounts
Answer for Membership
by: sasllcPosted on 2009-05-29 at 04:28:18ID: 24501840
You CAN indeed add code to your programs fire the laser when you pull the trigger. But a far easier solution that may work for you is to use their "scanwedge.exe" program that is in the applications folder. If you run this program prior to executing your application, it will run in the background, and cause the laser to fire every time you pull the trigger, and it will deliver scanned data to your application.
There is also a better version of scanwedge that they offer, known as "datawedge.exe". With both of these, you can set all kinds of parameters in order to make them capture and send the data properly to your app.
If you are interested in this approach, let me know, and I'll get you more details--once I can get back to my office where my 3090 is.