Recent content by jazFunk

  1. J

    [vb.net 3.5]Console application for Falcon Barcode Scanner

    Most scanners operate that way. What I want to do is write an application (using Visual Studio 2008) to handle scanned data, etc. Basically, I wanted to know if I create a console application project and then upload it to the scanner will that work. I've never created a console app so...
  2. J

    [vb.net 3.5]Console application for Falcon Barcode Scanner

    Anyone familiar with BarCode scanners? I have four of them I want use with my app. Can a console (custom) app be used to load/save scanned data?
  3. J

    Can I access the database of an installed application?

    I've published my app... installed it... now I want to open the database the application uses. Is this possible? I'm so lost... please help!
  4. J

    Filtering/Displaying records from Access in Visual Studio 2008

    Let me be more specific I need to load records from an existing Access db where [job #] = (variable). I do not want all fields from the specified records. I then want to put those records (3,622 to be precise) into another table for further processing, etc. I know how to do this in vb...
  5. J

    Filtering/Displaying records from Access in Visual Studio 2008

    First I must mention that I'm a novice-intermediate VB programmer. I have a subtle understanding (I bought a book!) of database programming for a SQL Server db. However, I'm using Access and this book simply isn't cutting it. Any resources/advice to lead me to be able to using SQL...
  6. J

    Passing variables between forms in VB

    I need to pass variables from one form to another for printing purposes. I'm using the PrintForm component to print the form. I'm familiar with this concept using VBScript and .asp... However, I am at a loss for how to do so using VB 2008.
  7. J

    Converting listbox items to a string.

    That didn't work either. The error was that 'List is not a member of the 'Systems.Windows.Forms.ListBox'. I try this with no error but it's not converting the items to a single string: Dim OrigString As String = Me.lstLegend.Items.ToString() Essentially I need to convert all of the...
  8. J

    Converting listbox items to a string.

    It seems like it would be a fairly simple task, yet I have been unable to complete this task.
  9. J

    Visual Basic 2008 Character tallying

    Ok, I've got it all working now. However one question remains... How do I convert list box items to a string? The items are string values.
  10. J

    Visual Basic 2008 Character tallying

    Well, I've scrapped several ideas. So, at this point, I'm back to nothing but a blank form with text boxes...starting over! I'm not the most proficient programmer, I'm not even good. I'm trying to create something to make my life at work easier. I've tried all kinds of online code...
  11. J

    Visual Basic 2008 Character tallying

    I'm trying to write a program which analyzes a string consisting of multiple names/words and outputs how many of each letter occurrences there are. (including upper and lower case characters.) i.e. string: "lafayette polk detroit" contains: 2-a's, 3-e's, 1-i, 2-o's, etc., etc. I'm...
Back
Top