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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by NMickey

  1. NMickey

    check Keys Event in ListBox

    Thank you all, I try this before but won't work. I forgot to mention that I use this in PPC. Thanks
  2. NMickey

    check Keys Event in ListBox

    Hi, Can someone can tell me how to check keys event (KeyPress, KeyDown) in listBox? I have a main menu in the ListBox. In the main menu there are several options. I want to be able go to the particular option and press enter to access that option. Can I use keysevent in the ListBox to check...
  3. NMickey

    How to assign Object from textbox in VB.NET?

    Please help, Well... I don't know where I start ... anyway, I consume web service for my device (PPC) and I declare below: Dim myDS as new www.mywebservice.net Dim dsRemote As DataSet dsRemote = myDS.getItems() ... The code above is working perfectly fine...But my question is, can I assign URL...
  4. NMickey

    INSERT and SELECT in VB.NET

    Hi, I want to to select an item from my table and hold (insert) it into a string that I declare. How do I do it in VB.NET. For instance, Dim holdItem as string Dim SQL as string = "SELECT item from mytable WHERE ...." My question is how select that item and insert into holdItem as I declare...
  5. NMickey

    How to update data to table from DataSet in VB.NET

    Hi chrissie1, Thank you for your help. I think you're right that I must create a stored procedure or SQL code to make it works. But I am stuck on that. Here I have so far. Please take a look a code below so you can see why it does not update in my table. Dim dsItems As New Service1 Dim ds...
  6. NMickey

    How to update data to table from DataSet in VB.NET

    Hi, I got the Dataset from web service and I want to update/insert that Dataset into the local table in the Pocket PC. Can any one give some idea or code that can help me? Any help would appreciate. Thanks
  7. NMickey

    Please help ... web service for PPC

    Hi all, I want copy a dataset from web service and insert that dataset into my local table database in Pocket PPC in VB.NET. Any one can give the directions, I appreciate it. Here I have so far: <WebMethod()> Public Function GetCustomers() As DataSet 'Modify this Connection string to use your...
  8. NMickey

    Error beep detect when scan an invalid barcode?

    Please help, I use VB.NET for coding the PPC for Symbol and Intermec CK30. Can anyone show me how to make beeps in PPC when I scan an invalid barcode. Thanks.
  9. NMickey

    Scan barcode and upload files...

    jwigh, I di put CrLf and Tab in Postamble, but it won't work...I don't know why? But I can do another ways around and it works. Thank you very much for all your helps.
  10. NMickey

    Scan barcode and upload files...

    Thank you for your helps. It works.
  11. NMickey

    Scan barcode and upload files...

    jwigh, Actually I receive this scanner without the manual... However, I go to configuration utility and set symbology with Postamble = "@" . Now everytime I scan barcode I have "@". Which means, I have a barcode = 12345, after I scan = 12345@. But I still have a problem. I would like to write...
  12. NMickey

    Scan barcode and upload files...

    jwigh, Actually I receive this scanner without the manual... However, I go to configuration utility and set symbology with Postamble = "@" . Now everytime I scan barcode I have "@". Which means, I have a barcode = 12345, after I scan = 12345@. But I still have a problem. I would like to write...
  13. NMickey

    Scan barcode and upload files...

    Hi jwigh, Thank you very much for your help. I think I know what you mean.
  14. NMickey

    Removing character when scanning

    Hi memcom, I hope this code can help you. Dim strReplace as string Dim strChange as string strReplace = UCase(Microsoft.VisualBasic.Left(txtbox.Text, 1)) 'If first string in textbox = 'a', then replace 'a' by '#' if strReplace = "a" then strChange = textbox.text strChange =...
  15. NMickey

    Scan barcode and upload files...

    Hello, I am currently working on a project for scanner Intermec CK30 in VB.NET. This project is that scanning the barcode and write barcodes to the file. And I have a couple questions to ask, please help me if you could: 1) I have two textbox, let say txtbox1 and textbox2. When I scan a...

Part and Inventory Search

Back
Top