Search results for query: *

  • Users: Sumo
  • Order by date
  1. S

    Image Handling Suggestions

    Kul, thanks much. I needed to pass the variables to the Sub in order for it to be realized. Thanks again and if you're ever in North Texas I owe you a beer or a Starbucks!
  2. S

    Image Handling Suggestions

    Absolutely Kul! Now I have one more request for the above code. I need the x,y sizes of the new BMP to be set as variables. Remember, I have a whole directory of images and when I resize them I need to keep x,y ratios intact. I have the numbers the height and width need to be, I just need to...
  3. S

    Image Handling Suggestions

    This looks pretty good Kul. Let me test it out and I'll let you know. Thanks so much! As always this forum rox!
  4. S

    Image Handling Suggestions

    No one has any ideas here? VB doesn't have any built in techniques for handling images??
  5. S

    Image Handling Suggestions

    GetThumbnail renders are very crappy above a hundred pixels or so. Try it if you don't believe me! :) I want to take images straight from a digital camera, 2-3,000 pixels a side or so and resize them down to 400 or so pixels a side. I already have the logic to determine how large so that's not...
  6. S

    Image Handling Suggestions

    I need to be able to resize images in an app and then save them with the new resolution. The Image object I am using takes it's size params from the image loaded from the disk and then the height/width params are read-only. I'm sure .Net provides a method to alter/resize the image, I just...
  7. S

    How to get FolderBrowserDialog to start at the program's location?

    OK, thanks! I had, of course, checked through the Member listing and read up on this control. The part I was missing was the part about setting it in code in the Load event rather than in the designer. Works like a champ, thanks gents!
  8. S

    How to get FolderBrowserDialog to start at the program's location?

    How to get FolderBrowserDialog to start at the program's location? --RESOLVED-- I am using the FolderBrowserDialog to allow the user to choose a folder for activity. The folder will most likely be a subfolder of where the program is running. How can I specify that when the user opens the FBD it...
  9. S

    Clearing a Listbox

    Of course I find it about twenty seconds after posting. Can we have a forum to go ask stupid questions that you know you're gonna find the answer as soon as you post?? Anyway for future generations the syntax is: ListBox1.Items.Clear() Ah well.
  10. S

    Clearing a Listbox

    I've got a listbox that is being populated from reading the contents of a directory. If the user changes the target directory the listbox obviously needs to change. I need to be able to clear out the previous contents of the listbox and cannot figure out the syntax. I'm pretty sure I should be...
Back
Top