Does LV 7.0 PDA module support Microsoft Windows Mobile 2003 software for PocketPC?

I am evaluating the possible use of PDA
that runs Microsoft Windows Mobile 2003 software
for PocketPC and would like to know if the
LabVIEW 7.0 PDA module supports this software.
I am planning to scan barcodes with this PDA
and transmit this data over a WLAN to database.
Thanks!

Depending on the Pocket PC PDA type it is practical to add a barcode reader attachment and then use this as keyboard input into the PDA. You can look at a Grabba barcode Reader attachment (www.grabba.com)
I work for Grabba in R&D and we are looking at demand in this area (which is why I was looking at the forum to try and determine whether a need exists).
If we can help you let us know. I would be interested in knowing where you think this will help you. We have our own ideas but input from the field is most welcome.
cheers

Similar Messages

  • FMS on Microsoft Windows Server 2003, Enterprise Edition (64-bit)

    Hi,
    I am gotta buy Microsoft Windows Server 2003, Enterprise
    Edition (64-bit) for my deployment of FMS 2.
    As I read FMS 2 system requirement, it only support Microsoft
    Windows Server 2003, Enterprise Edition (not mention 32 / 64-bit).
    Does anyone got idea on this issue?
    Thx a lot!
    Alan

    At this time, FMS is only officially supported on the 32 bit
    version of Windows Server 2003.

  • Urgent : Support of Windows Mobile 5.0

    Hi,
    We've been using Oracle Lite lately with PPC running Windows Mobile 2003. Since this month, the only PPC we can find on the market are running Windows Mobile 5.0. The question is : does Oracle Lite supports Windows Mobile 5, and if not, is it planned for near?
    Thanks
    Said

    Hi fillip,
    Im trying with PPC50-ARMVI on my new wm5 device. But i have little problem on installation and registering the dm agent. I cant see the scroll bar on the screen for me to select ok or cancel...... Any suggestions (But i can stll use ppc2003 and it works fine)

  • Java on Microsoft Windows Mobile 5.0

    Hi,
    I am learning CDC. I have trying to see the code that I have written works on Microsoft Windows Mobile 5.0. I have done the following:
    When selecting New Project I have set the following options:
    Java Platform: pJSCP V4.10.B097.100206
    Device: Default
    Profile: PP-1.0.
    I have added the following code in the main() method:
    try {
        UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());} catch(Exception exception) {
        System.out.println("Error loading L&F: " + exception);
    }I have NSIcom CrE-ME V4.12 and Microsoft Windows Mobile 5.0 MSFP Emulator Images installed.
    I have Started CrE-ME410_swing.CAB on the Windows Mobile.
    To run the Application I have done the following:
    Right-click the project and choose Properties.
    Under Categories, choose General.
    Choose the NSIcom tab and check Run in remote VM. Click OK to close the Properties page.
    Choose Run > Run Main Application.
    I get the following error:
    nbproject\build-target-impl.xml:75:Remote VM does not exist in specified location: \Windows\creme\bin\CrEme.exe
    I have tried for a few weeks now and this error still appears. I have done the following:
    Created new projects and tried again.
    Removed all software like Microsoft Windows Mobile 5.0 MSFP Emulator Images, NSIcom CrE-ME and installed again.
    Looked on google but could not find much information.
    I have been following the following: http://www.netbeans.org/kb/55/1/quickstart-mobilitycdc.html
    Do you know what this is and how to solve it?

    Q1
    Will Java run on win Mobile 5.x - I have bought aYes, and no. You can get JME for PPC, and some editions of J2SE. But they are not all free.
    http://www.comp.lancs.ac.uk/~fittond/ppcjava.html
    If Java will run can I use Swing etc or will I have
    to use one of the mobile versions of Java - if so
    which one ?Some do, some don't.
    Assuming there is a positive answer to Q1 is there an
    Emulator for the Axiom 640 x 480 ?What kind of Emulator do you want? I have had a C64, Amiga and Gameboy emulators on my HTC Wizard.
    If you are only targeting you device, I recomend learning C#, and using .NET CE.

  • Problem of isFile on Microsoft Windows Server 2003

    Dear all,
    Thanx all for your support in case of previous questions...
    Right now we are facing issue with isFile method of java.io.File class.....
    On windows xp and unix machine it is returning true for files....but on one machine at client side it is returning false...
    Please find os and jre details of same machine..
    OS - Microsoft Windows Server 2003 ( Enterprise Edition - Service Pack 2 )
    Java Version - JRE6 ( SUN MICROSYSTEMS, INC)
    Main issue is same is working on other machines....
    using filefilter....
    it is returning false on .......if(tempFile.isFile())...statement......PLZ help me...is there any OS related dependency....
    package com.hth.filter;
    import static com.hth.vars.IbankVars.*;
    import java.io.File;
    import java.io.FilenameFilter;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    public class FilesFilter implements FilenameFilter {
         private static Pattern p = Pattern.compile(FILES_PATTERN_TO_BE_EXCLUDED);
         private File tempFile=null;
         private static String fileSeparator=null;
         private static String excludeExtensionList="";
         private int corporateId =-1;
         public FilesFilter(int corporateId){
              this.corporateId=corporateId;
         static{
              try{
                   fileSeparator=System.getProperty("file.separator");
              }catch(Exception e){
                   fileSeparator="\\";
                   e.printStackTrace(System.out);
         public boolean accept(File folder, String fileName) {
              // TODO Auto-generated method stub
              Matcher m = p.matcher(fileName);
         if(m.find()){
              return false;
         }else{
              tempFile=new File(folder,fileName);
                   if(tempFile.isFile())
                        System.out.println("FilesFilter-fileName:"+fileName+"IS FILE");
                        //if(fileName !=null && fileName.indexOf(UNDERSCORE)!=-1){
                             /*     if(fileName.substring(0,fileName.indexOf(UNDERSCORE)).equalsIgnoreCase(String.valueOf(corporateId)))
                                  if(fileName.lastIndexOf(DOT)!=-1)
                                       StringBuffer strFileExt =new StringBuffer(COMMA);
                                       strFileExt.append(fileName.substring(fileName.substring(0,fileName.lastIndexOf(DOT)).length()+1,fileName.length()));
                                       strFileExt.append(COMMA);
                                       if(excludeExtensionList.toLowerCase().indexOf(strFileExt.toString().toLowerCase()) != -1){
                                            //file extenstion is configured in property file for exclusion.Hence return false;
                                            return false;
                                       }else{
                                            //file extenstion is not configured in property file for exclusion.Hence return true;
                                            return true;
                                  }else{
                                       return false;
                             /*}else
                                  return false;
                        }else{
                             return false;
                   }else{
                        System.out.println("FilesFilter-fileName:"+fileName+"IS FOLDER");
                        return false;
         public static void setExcludeExtensionList(String excludeExtensionList) {
              if(excludeExtensionList!=null)
                   FilesFilter.excludeExtensionList = COMMA+excludeExtensionList+COMMA;
    }

    Right now we are facing issue with isFile method of java.io.File class.....
    On windows xp and unix machine it is returning true for files....but on one machine at client side it is returning false...So it's a directory not a file.
    Next time please use the CODE button above to format your code.

  • Microsoft Windows Server 2003. Move from SP1 to Windows Service Pack 2?

    Hello,
    Our hosting system is:
    Microsoft Windows Server 2003 R2 Server 5.2 Service Pack 1 (32-bit)
    or
    Microsoft Windows Server 2003 Server 5.2 Service Pack 1 (32-bit)
    on which we have a Oracle Database 10g 10.2.0.3.0
    running.
    Now our IT is demanding the Windows Service Pack 2 to be installed on the server.
    Are there known issues or can this be done (about 30 patches) without any considerations?
    Thanks,
    Marco

    Oracle's general policy is:
    Oracle certifies against the specific Microsoft operating system (OS) and, if applicable, service packs (SPs) stated in the Oracle product documentation. Oracle will support the use of our products on any later SP or OS security patch as soon as that SP or patch becomes generally available. Depending upon the severity, quantity, and impact of the SP or patch-related issues found, Oracle may recommend that customers wait until relevant Oracle patches have been released before upgrading to a particular SP or OS patch. Oracle may recommend or discourage the installation of specific SPs or patches if it will significantly affect the operation of Oracle software, either positively or negatively. If such a statement is deemed necessary, then Oracle Development will disseminate this statement in as timely a fashion as possible after the release of the SP or patch.
    There are no known issues with ServicePack 2.
    Werner

  • Which oracle software is suitable for Microsoft windows server 2003

    Hi,
    I'm suppose to install oracle 9i,10g on the system which i mentioned below.
    Which oracle software is suitable for the system?
    System:
    Microsoft Windows Server 2003 R2
    Standard x64 Edition
    Service Pack 2
    Computer:
    Intel(R) Xenon CPU
    E5335 @ 2.00Ghz
    2.00Ghz, 2.00Gb of RAM
    Waiting for your suggestion.
    Thanks, Muhammed.

    Thanks for your quick response.
    As you said v11 can be installed and
    Could you please say about the bit (32 or 64bit)? which oracle binaries i can download
    because my system configuration is server 2003 - 64 is bit xeon process.
    Many Thanks,
    Muhammed

  • Is Microsoft Windows Mobile  full java compatible?

    I' d like to know if Microsoft Windows Mobile is full java compatible
    for example can i use swing or awt applications?
    can i use jre1.4 o jre1.5 in this OS ?
    Thanks

    J2ME, probably, but I doubt the full J2SE

  • Does QTP/UFT support "Microsoft.Windows.Control" (one type of wpf control)?

    Hello,
    I have a challenge automating WPF Application in which they used new type of Wpf Data GridControl i.e "Microsoft.Windows.Control". We cannot access all the properties of this control(RowCount,GetCelldata). Can Anyone get this issue and provide me details of any patch that can resolve this issue?
    Please let me know if you need more info and provide resolution ASAP

    Hello,
    I have a challenge automating WPF Application in which they used new type of Wpf Data GridControl i.e "Microsoft.Windows.Control". We cannot access all the properties of this control(RowCount,GetCelldata). Can Anyone get this issue and provide me details of any patch that can resolve this issue?
    Please let me know if you need more info and provide resolution ASAP

  • Can Adobe Flash Player support Microsoft Windows Embedded 8 version?

    Flash Player seems still have bugs on Microsoft Windows Embedded 8.
    Does any one know which flash player version is fully support WES8?

    The Windows IE plugin is modified by Microsoft. Adobe writes the code, but once it goes in the browser, it's Microsoft's baby. It cannot be updated or replaced here unless you remove a specific Windows 8 update KB patch.
    It IS fully supported but IE11 has been a "rolling train wreck" since it was released. The pages can't recognize the browser, so they don't recognize any of the plugins, like Flash Player. So far, Microsoft has made NO indication that they have any plan to fix it soon.
    Microsoft's recommendation is to use Compatibility View for affected pages, and "pretend" you're using an different browser. Trouble with that is it has seen limited success at best, and you have to individually enable it for EVERY page that has problems.
    I'm not big on "pretending" so I recommend actually using another browser.
    Firefox (from Mozilla)
    Opera (from Opera)
    Safari (from Apple)
    Chrome (from Google)
    ANY of those will work where IE11 won't, with the Flash Player Plug-in (For all other browsers), and Chrome doesn't even need that because it has its own Flash Player plugin built in.

  • Error while installing SAP b1 9.0 PL4 on Microsoft Windows server 2003 SP 2.

    Hi all,
    I am trying to install SAP b1 9.0 Pl 4 on Microsoft Windows Small Business Server 2003 SP 2 (32 bit). Server tools and server was successfully installed, now facing an issue while I m running the Client from package folder below is the screen shot for error. Please help ASAP.
    Thanks all
    Sonil

    Hi,
    Yes,  9.0 version will not support above server. Please check below guide:
    http://www.abbasoft.com/images/Hardware_software_requirements.pdf
    Thanks  & Regards,
    Nagarajan

  • Can I use a Microsoft Windows Anytime upgrade key for Windows 7?

    Hi again.
    If I buy a genuine Microsoft Windows Anytime upgrade key, from Newegg and the like will it work OK or does it have to be from HP, as a special upgrade?
    Thanks again.

    Hi:
    You should be able to use the NewEgg-purchased key on your HP machine.
    Paul

  • Microsoft Office Mobile not available for N8-00 No...

    Hi,
    I had installed Microsoft Office Mobile on my Nokia ages ago but had to reinstall the operating system due to a bug/quirk in an unrelated aspect of the phone.
    Anyway, Microsoft Office Mobile dissappeared and I was never offered via Nokia Suite the update again. I recently reinstalled the OS again as I wanted to get Microsoft Office Mobile back and am now at 111.030.0609, however I am still not being offered via the "Software Updates" on the phone or Nokia Suite to get MOM back.
    I noticed if I use Nokia Suite store to search for "Microsoft", "Microsoft Apps" shows up and I can click "Download and Install". Anyway, this downloads the 48kb the store suggests and transfers it over to phone, where the phone seems to:
    1. "Preparing installation"
    2. Connects up to the internet
    3. Gets a message "Network connection lost. Cancelling installation."
    4. "Download Failed"
    5. "To continue this installation later, select this icon in your application menu or find 'Microsoft Apps - Nokia Store installer' in No..." (trunc'd by the phone, not me"
    Needless to say selecting the icon fails silently (after I notice it trying to access the network).
    Any tips would be greatly appreciated!
    Tom

    Don't know whether your N8-00 is network branded or generic SIM free version, but as Microsoft Office Suite is pre-installed in Belle Refresh 111.040.1511 it is perhaps no longer available via SW update or Nokia Suite for 111.030.0609
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • Crystal Reports version 10.0.0.53327 supported on Windows Server 2003 R2?

    Hello,
    We are currently using Crystal Reports version 10.0.0.53327 with a ASP web application on Windows 2000 Server. We are in the process of upgrading the web server to Windows Server 2003 R2 but have encountered problems with the print feature in the application when printing reports using Crystal Reports. We have duplicated every setting from the original web server on the new web server down to each registry entry and DLL file for Crystal Reports but continue to have a problem. Are there any known compatibility issues with our version of CR and Windows Server 2003 R2?
    Any information or assistance provided will be greatly appreciated.
    Morgan

    You are not giving enough info re. the actual issue. E.g.; encountered problems with the print feature is a bit "loosy goosy". What are the details of the printing issue? Errors? Incorrect printing? Etc.
    Taking a wild guess here, but do have a look at [this|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_erq/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes.do] kbase.
    If that does not help, do search these forums as well as the kbase:
    https://www.sdn.sap.com/irj/scn/advancedsearch?cat=sdn_ossnotes&query=&adv=true
    And if that does not help, provide more info. Oh, also search for latest updates for CR 10 here:
    http://service.sap.com/sap/bc/bsp/spn/bobj_download/main.htm
    And finally, specify how you deploy the CR 10 runtime to that server.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup

  • Anybody tried install oracle 10g into Microsoft Windows Server 2003

    Dear sir/madam
    I would like to know is anybody tried install oracle 10g 10.2.0.1.0 into Microsoft Windows Small Business Server 2003?
    Will it works smoothly? any problems about it? any networks problems?
    I am prepare to buy Genuine Microsoft Windows Small Business Server 2003, so I would like to know about this matter.
    many thanks
    Francis

    While I have not installed Oracle on Windows 2003 Small Business Server, I would suggest that you not install on that particular version of Windows. While I have not worked with SBS, I believe that this is an all-in-one solution that handles Exchange email services, file services, print services, domain control (all roles), DNS, WINS, HTTP, and probably a couple other things also.
    While it sounds like a great idea to add Oracle to this server, I suspect that you will encounter some of the same issues that cause problems when Oracle is installed on a Windows domain controller. On such a server, there is no concept of a local group (the ORA_DBA group that the installer tries to create). Available memory, availalble free CPU, and disk contention may also be a problem due to contention with other services running on the server.
    You might take a look at the following Metalink articles:
    Note:46001.1
    Note:77665.1
    Note:160538.1
    I would suggest that you take a look at the 64 bit Standard Edition of Windows 2003 if it is compatible with your hardware, or if you are familiar with Linux, do as Aman suggested. If possible, run only Oracle on the server.
    Incidentally, Windows 2003 SBS is not listed on Oracle's certify web page, even though Windows 2008 is listed.
    Charles Hooper
    IT Manager/Oracle DBA
    K&M Machine-Fabricating, Inc.

Maybe you are looking for

  • Unicode issue jdbc receiver adapter

    Hi guys, I'm facing an unicode issue while trying to put some data into a MS database. The sender system is a SAP ERP 6.0 system. When we are trying to transfer some text in polish or korean or something else, this textes are not transferred correctl

  • File and Transaction Parity in PI 7.1

    Hello, We are currently designing our file and transaction Parity architechture for SAP PI 7.1. Could you please let me know where can I start on it. Does PI offers any out of the box parity services and any kind on documentation on it. Thank you.

  • HERE maps latest update

    Of late HERE maps have lauched a newer version of this app for Nokia X series phones but I can't update HERE maps OTA on my Nokia X running software version 1.2.4.1. What to do? Help me and tell me how many of you are having the same problem and what

  • ATV 2  4.2 build 8F191m - YouTube subscriptions and sort order

    Is there a way to get subscriptions to sort by latest or newest?

  • Beta 1 to beta 2 issues

    so few issues - updated all my <s:simpletext /> components to <s:label /> components, however now the text does not show inside custom button skins when using <s:label id="labelElement" /> - skinning a button, using a combination of paths and other g