Search results for query: *

  1. R

    Question Looping through images from a folder

    Hey thanks for the reply! The LINQ Skip and Try does sound a bit confusing. But I see you mentioned Disposing and that might be part of the problem I'm facing. I tried having 8 images in my folder this time to see what would happen to the remaining pictureboxes that didn't get populated. The...
  2. R

    Question Looping through images from a folder

    Hello there, I've been searching for a while on how to correctly loop images from a folder. My program consists of 6 pictureboxes that get populated by images from a folder in my computer. I have a "Next" button that when clicked, shows the next 6 images. My problem is, after I hit the "Next"...
  3. R

    How to read a txtfile using PocketPC emulator

    hi, thanks for your reply. I couldnt find "My Computer" on the emulator. I saw Program Files and the name of my project is there. I dont know if thats where I need to put the txt file.
  4. R

    How to read a txtfile using PocketPC emulator

    Hello, I would like to read from a .txtfile using the PocketPC emulator. On previous programs, I copy the .txtfile under the bin folder and I am able to read it fine. But using PocketPC, where do I put my .txtfile? Under the bin folder there is another folder, Debug. Ive tried putting it...
  5. R

    Substring explanation

    Hello, there are this 2 lines of codes strPartyAbbrev = CStr(alsData(i)).Substring(intStringLength - 2, 1) alsData(i) = CStr(alsData(i)).Substring(0, intStringLength - 4) strPartyAbbrev is indicating that it will get the last character of the string right? but im stuck on what alsData(i)...
  6. R

    Displaying data from a list box to output

    hey man, thanks for the reply! I'm sorry for not being clear on the other question. What Im trying to do is to get the whole line that contins the selected item. For example the .txt files contains Susan 38RN Healthcare Mary 30PA DentalCare and many more entries What is being...
  7. R

    Displaying data from a list box to output

    Hello guys, Ive been reading the forums and links for the past 2 days, very useful stuff! Now my question, I have a listbox that I loaded with a .txt file and I want to click on a selection in the list box and have that selection appear on another list box. I want to search the .txt file and...
Back
Top