view thumbnails of image files

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • mike w.

    view thumbnails of image files

    I want to create an application using VB.Net to have something like
    windows explorer to view thumbnails of image files in the
    directories.

    Is there a control or soemthing to do this?

    thanks

    mike w.

  • Herfried K. Wagner [MVP]

    #2
    Re: view thumbnails of image files

    "mike w." <mikew@discussi ons.microsoft.c om> schrieb:[color=blue]
    >I want to create an application using VB.Net to have something like
    > windows explorer to view thumbnails of image files in the
    > directories.[/color]

    Thumbnail Extraction Using the Shell
    <URL:http://vbaccelerator.c om/article.asp?id= 4513>

    --
    M S Herfried K. Wagner
    M V P <URL:http://dotnet.mvps.org/>
    V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

    Comment

    • Cor Ligthert

      #3
      Re: view thumbnails of image files

      Mike,

      Yes there is a complete method to get thumbnails works very simple



      I hope this helps?

      Cor


      Comment

      • mike w.

        #4
        Re: view thumbnails of image files

        so how do I add and use a c# file in my vb.net project?
        On the App I right clicked and added the ThumbnailCreato r.cs file
        the I added Imports vbAccelerator.C omponents.Shell to the top of my form but
        I get arrors saying it can't find the name space.

        So what can I do?

        thanks

        mike w.

        "Herfried K. Wagner [MVP]" wrote:
        [color=blue]
        > "mike w." <mikew@discussi ons.microsoft.c om> schrieb:[color=green]
        > >I want to create an application using VB.Net to have something like
        > > windows explorer to view thumbnails of image files in the
        > > directories.[/color]
        >
        > Thumbnail Extraction Using the Shell
        > <URL:http://vbaccelerator.c om/article.asp?id= 4513>
        >
        > --
        > M S Herfried K. Wagner
        > M V P <URL:http://dotnet.mvps.org/>
        > V B <URL:http://dotnet.mvps.org/dotnet/faqs/>
        >[/color]

        Comment

        • mike w.

          #5
          Re: view thumbnails of image files

          thanks but I knew the function for getting thumbnails, but I need a way to
          show all the thumbnails in a folder at once.
          If you have XP, goto C:\WINDOWS\Web\ Wallpaper and change the View to
          Thumbnails.

          That's what I want.

          thanks anyway

          mike W.

          "Cor Ligthert" wrote:
          [color=blue]
          > Mike,
          >
          > Yes there is a complete method to get thumbnails works very simple
          >
          > http://msdn.microsoft.com/library/de...imagetopic.asp
          >
          > I hope this helps?
          >
          > Cor
          >
          >
          >[/color]

          Comment

          • Herfried K. Wagner [MVP]

            #6
            Re: view thumbnails of image files

            "mike w." <mikew@discussi ons.microsoft.c om> schrieb:[color=blue]
            > so how do I add and use a c# file in my vb.net project?
            > On the App I right clicked and added the ThumbnailCreato r.cs file
            > the I added Imports vbAccelerator.C omponents.Shell to the top of my form
            > but
            > I get arrors saying it can't find the name space.[/color]

            You cannot mix C# and VB.NET code in the same project. What you can do is
            adding the C# project to your solution, set a reference from your VB.NET
            project to the C# project, import the C# project's namespace and use the
            classes defined in the C# project. To add a reference, select the VB.NET
            project in solution explorer and choose "Add reference..." from its context
            menu.

            --
            M S Herfried K. Wagner
            M V P <URL:http://dotnet.mvps.org/>
            V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

            Comment

            • Cor Ligthert

              #7
              Re: view thumbnails of image files

              And don't than forget in the added C Project to set the general properties
              "output type" to Class Library and to do a build for that before you set the
              reference in your VB project.

              I hope this helps?

              Cor


              Comment

              Working...