Search results for query: *

  1. T

    Change backcolor, forecolor and font on Tabs of a TabPage control?

    Hello All, I have a Form (MissionFrm) which contains a TabControl with a collection of 10 TabPages. I have labeled the Text of each TabPage accordingly such as "Mission Info" for TabPage0 for example. When I use the I am trying to change the BackColor, ForeColor and Font of each of the 10...
  2. T

    Sort files by Date, Name using Directory.GetFiles()

    OK. Well, I have to say, even though I've been programming off and on since 1984, beginning with the Apple 2C, and later in the early 90's with C, ALC, COBOL, QBasic 4.5 and in 1995, Visual Basic , you are apparently better at it than I am. I have had to adopt the trial and error method for...
  3. T

    Sort files by Date, Name using Directory.GetFiles()

    Hi JM... Follow up question on my sort needs. The code is working fine but in this project I am collecting all JPG files from a user selected folder "DirPath" and then populating a ListView1 control with each image and Files(I).Name. The problem is that I really need to sort the images based...
  4. T

    Sort files by Date, Name using Directory.GetFiles()

    OK. So I'd type the following, correct? the code goes here that I pasted Also, is there a way to paste a screehshot into the edit window rather than creating the image by copying the clipboard into an image editor, saving it as a PNG and then attaching it as I did in the previous post...
  5. T

    Sort files by Date, Name using Directory.GetFiles()

    Hi Again JM... The screenshot showed up but the code is still unformatted. Do I have to add some type of <P> tage inside of the XCODE tag? Also, can I simply type the some code in the regular reply instead of using the "Go Advanced" button? Let me know about the code if you can read the...
  6. T

    Sort files by Date, Name using Directory.GetFiles()

    Hi JM... I have to tell you, I have no freak'n understanding of how to use the tag. I have tried adding but when I look at it is still not formatted. To avoid future Forum spankings, can you please provide me with an explicit example. I tried your code and it works for the most part but the...
  7. T

    Sort files by Date, Name using Directory.GetFiles()

    Hi Jm..., Not sure what your name is but I greatly appreciate your reply. Let me first explain or perhaps re-explain a few key noteworthy pieces of information about myself. I am legally blind and have been so since age 6. So I use "assistive" or sometimes also referred to as "adaptive"...
  8. T

    Sort files by Date, Name using Directory.GetFiles()

    Hello All, I am working on a Windows Desktop application and I need to sort the files by date and or name in both assending / descending order. Can someone help me out with the line of code to implement this? I currently have this code in place which is working but has no function to sort as...
  9. T

    read-write to USB devices (e.g. GPS, other devices with USB.. etcc)

    Hi Herman, I'll play around with your demo application this week. So to be clear from reading your message, I CANNOT interact with ANY HID device on my WIndows PC or those of persons using my Applications? One thing my son would like me to attempt it to take devices such as Saitek Joystick's...
  10. T

    read-write to USB devices (e.g. GPS, other devices with USB.. etcc)

    Thanks Herman, Is there documentation included with your mcHID.dll library? Also, how can I get a list of all drivers tied to each USB device attached to my Windows PC without going through Device Manager and searching through each item? Thanks again.
  11. T

    Question Programmatically populate an ImageList collection with all images in folder

    "Firstly", as you like to say upon first contact, let me inform you that I did not receive our NOTICE of naughty code pasting infractions. Secondly, I informed all who read my first post that I am legally blind and that means INCASE you did not get the memo, I have trouble reading a screen...
  12. T

    read-write to USB devices (e.g. GPS, other devices with USB.. etcc)

    Hi Herman, I am very familiar with NMEA-0183 and have written many Arduino and VB projects that interact with my own assembled GPS and other Dev Board (via Serial Port) GPS devices. Just to be clear however, what I am wanting to do for example is: 1. read-write to any device via it's USB-A or...
  13. T

    read-write to USB devices (e.g. GPS, other devices with USB.. etcc)

    Hello All, So, how does someone go about reading and writing to devices (to be clear, hardware devices) with USB hardware interfaces? For example: If I want to read NMEA data from my Garmin GPS (yes, I know about setting the Garmin to NMEA TXT OUT), but in general, how do I read and write to...
  14. T

    Question Programmatically populate an ImageList collection with all images in folder

    Hi Ian, Thanks. This is what I ended up writing: For Each Me.DirFile In Directory.GetFiles(DirPath, "*.JPG") DirFiles(i) = DirFile ImageList1.Images.Add(Image.FromFile(DirFiles(i))) 'GRAB ONLY FILENAME PORTION OF FILE-PATH STR =...
  15. T

    Question Programmatically populate an ImageList collection with all images in folder

    Hi Guys, First of all, thanks for getting back to me. I am now able to populate all of the images of type JPEG in the ImageList1 component. In my test folder, I have 6 JPEG's. The two problems are: 1. I only get 1 Large Icon and associated file name / path to show up in the ListView1...
  16. T

    Question Programmatically populate an ImageList collection with all images in folder

    Hi All, I am new to the forum and also a person who is legally blind, meaning it is difficult to read huge volumes of text, but am hopeful I can get answers here. My issue is this: I am writing a WIndows Forms Application (.NET 4.5) and have a Form with the following controls: _ Form1 _...
Back
Top