Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. markph

    Use of unassigned local variable

    Other than rearranging your code around. What the compiler is doing is warning you because the variable could be used before being unasigned. This is bad in any environment, but gets progressively worse in languages like C/C++. Go ahead and assign the value of null to the necessary complex...
  2. markph

    Question about converting windows C++ to *nix C++

    If I were you, I would remove all the necessary logic (the meat) and build a C++ library (DLL). This would give you two options... 1) Write a C# UI wrapper which pinvokes the DLL, utilizing it's logic. 2) Cross compile the Cpp library on Linux, write a UI wrapper there on that platform.
  3. markph

    iPaq anyone ??

    Yes it's possible. One way is to establish a sync with a desktop computer (where you would normally use a cradle). Then find the IP of that desktop machine, enter that IP in your PPC's WIN's address for your wireless. You should have no problem synching with that desktop via wireless.
  4. markph

    C#, .NET, and Barcode Scanning Help Needed!

    Symbol has not yet released the Symbol .NET CF (managed) compatable control. You could use ScanWedge, which forces your users to provide input, but this is pretty poor, as your users may have to keep providing focus. The other options (ActiveX control) will not work in a .NET CF application...
  5. markph

    Converting an XmlDataDocument to a string

    I assume you want the xml written back out? Your in luck if so -- the XmlDataDocument contains an internal dataset. Use something similar to this: XmlDataDocument xdd = new XmlDataDocument; /* your code */ // get xml as string... xdd.DataSet.GetXml() You can also use .WriteXml() to write...
  6. markph

    Enable Scanning

    Can you send or post a sample of how the file should look? Are they scanning in only one barcode, then your parsing that to grab the other information, OR are they scanning all those pieces of information, in which case you would want one or more pieces of information to be grouped together...
  7. markph

    Enable Scanning

    Save the $129 ... if you need something simple, just tell me what you need. If it's not laying around on my hard drive, it wouldn't be difficult to say dump scanned barcodes to a text file. But is that what you really want???
  8. markph

    barcode scanning

    If you want to intercept "hard triggered" scans, you would set up for that by calling: SCAN_ReadLabelMsg(...)

Part and Inventory Search

Back
Top