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 bkrike 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 KirtSawaya

  1. KirtSawaya

    Counting Words in a String

    EarthandFire, Thanks for the trimming solution. I'll apply it to my program. Kirt
  2. KirtSawaya

    Counting Words in a String

    JohnYingling and TheRickGuy, Thank you guys for your help. I always tend to make thing harder then they need to be. Kirt
  3. KirtSawaya

    Counting Words in a String

    VBakias, Thanks for pointing out that typo, but the program still doesn't work. Kirt
  4. KirtSawaya

    Counting Words in a String

    I'm trying to count the number of words in a string. Note: A word is a sequence of characters seperated by a space. I know it will not give me the exact number of words, but that is the guild lines I have to follow. Here is the code I use to total the words of any given array. But for some...
  5. KirtSawaya

    ListBoxes and Datagrid Relationship Help

    I'm having trouble with the following code: On my form I have two list boxes and one datagrid. In the first listbox(lstCustomer) the user selects the customer name. The second listbox(lstInvoiceDate) has all of the selected customer's invoices. The datagrid then displays the invoice deatails of...
  6. KirtSawaya

    2 dimensional array

    Thank you Paul for you help. I was trying to use the same format that I learned in C++. But thanks to your help my program is now running. Kirt
  7. KirtSawaya

    2 dimensional array

    Hello, I'm a newbie to VB.NET and I'm having troubles loading an 2 dimensional array from a file. My code looks something like this: Dim rows As Integer = 4 Dim columns As Integer = 5 Dim myArray(,) As Integer Dim x As Integer = 0 Dim y As Integer = 0...

Part and Inventory Search

Back
Top