picturebox help
-
Hi.. i take one lebal store text in lebel like E:\Epic\ + textbox1.text + .jpg user type in textbox "1" so label.text is = E:\Epic\1.jpg now i want this location pic show in picbox, user type in textbox 2 then show 2.jpg. Hope u understand my question. take care Thanks In Advnc jawad khatri
-
Hi.. i take one lebal store text in lebel like E:\Epic\ + textbox1.text + .jpg user type in textbox "1" so label.text is = E:\Epic\1.jpg now i want this location pic show in picbox, user type in textbox 2 then show 2.jpg. Hope u understand my question. take care Thanks In Advnc jawad khatri
from what i understand, you want to display the image in the picture box. there should be a Load function for the purpose. you can do something like:
picturebox1.Load("image path here");
HTH
regards :)
-
from what i understand, you want to display the image in the picture box. there should be a Load function for the purpose. you can do something like:
picturebox1.Load("image path here");
HTH
regards :)
my image path is in lebal picturebox1.Load(label1.text); i can do this????
-
my image path is in lebal picturebox1.Load(label1.text); i can do this????
mjawadkhatri wrote:
my image path is in lebal picturebox1.Load(label1.text); i can do this????
yes, of course.
regards :)
-
mjawadkhatri wrote:
my image path is in lebal picturebox1.Load(label1.text); i can do this????
yes, of course.
regards :)
yes I have Done Thanks Alot