| CodeGuru Home | VC++ / MFC / C++ | .NET / C# | Visual Basic | Newsletters | VB Forums | Developer.com |
|
|||||||
| Visual Basic .NET Microsoft Visual Basic .NET and related questions. |
![]() |
|
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
calling files from resource folder
HI i need some help in using a picturebox to call pictures out of the resource folder and loop it
previously i have coded: Me.PictureBox1.Image = Image.FromFile(Application.StartupPath + "\\JPG LandoltC\" + filePath + ".jpg") where filePath is the function to locate the name of the pictures but now i have to put everything into the .exe to make it more "sightly" so now i'm trying Me.PictureBox1.Image = My.Resources.filePath and its not working... can someone guide me? |
|
#2
|
||||
|
||||
|
Re: calling files from resource folder
http://visualbasic.about.com/od/usin...a/ResVBNET.htm
http://www.vb-helper.com/howto_net_e...resources.html
__________________
My Latest Articles : VB and Internet Explorer Browsing History || The TaskBar and VB.NET || Changing Mouse Settings with VB.NET || Creating Your Own Encryption / Decryption Program Using VB.NET 2005 Find All My Articles : Here FAQs : .NET FrameWork FAQs || Visual Basic.NET FAQs || C# FAQs Be The Change That You Want To See In The World - Michael Scofield, Prison Break; Season 1 Episode 1 Read This Before You Post || Acceptable Use Policy
|
|
#3
|
|||
|
|||
|
Re: calling files from resource folder
the links shows how to call individual files only
i can get there, but how do i loop it after calling the file? |
|
#4
|
||||
|
||||
|
Re: calling files from resource folder
It's your file, so you know what's in there. No reason for a loop. Just include the code!
__________________
David CodeGuru Article: Bound Controls are Evil-VB6 101 Samples: VB & C# VS2008 Samples CodeGuru Reviewer 2006 Dell CSP 2006, 2007 & 2008 MVP Visual Basic If your question has been answered satisfactorily, and it has been helpful, then, please, Rate this Post!
|
|
#5
|
|||
|
|||
|
Re: calling files from resource folder
But there is a need for me to loop it.
its like this.. when the form shows up. it will have to detect the input to see if its right or wrong and loop to the next randomise picture. after 5 pics it will have to search for the next level and show the pics again for another 5 time till wrong inputs are detected 3/5times.. all these were coded in my function getfilepath, but after adding the pics into the resource folder, i have no idea how to call and loop it. |
|
#6
|
||||
|
||||
|
Re: calling files from resource folder
First, load them into an array of some type. Then, you can loop thru it using a MOD 5, which will do what you want. 5 MOD 5 is 0, while 16 MOD 5 is 1
__________________
David CodeGuru Article: Bound Controls are Evil-VB6 101 Samples: VB & C# VS2008 Samples CodeGuru Reviewer 2006 Dell CSP 2006, 2007 & 2008 MVP Visual Basic If your question has been answered satisfactorily, and it has been helpful, then, please, Rate this Post!
|
|
#7
|
|||
|
|||
|
Re: calling files from resource folder
thanks you
|
![]() |
| Bookmarks |
| Tags |
| .exe, calling loop, external file, loop, resource |
|
||||||
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|