Link to home
Start Free TrialLog in
Avatar of rachelee
racheleeFlag for Germany

asked on

Image producing

Hello Experts,

I am using visual basic 6.0 on micrisoft XP platform...having not much Idea about using VB 6.

But ,I have created direct buttons and some text area's,filled up informnation and now I would like to have Images in front of those buttons.

important is ,how I will see image in image box not the file path..

(everytime when I change information I can see the same picture not appropriate to information.)

Will you please tell me how to do it?

Avatar of rachelee
rachelee
Flag of Germany image

ASKER

Hello Again,

Now I am able to see the file name in the image box, and when I click on it then only i am able to see an image ,
but I would like to see it without clicking....Infact i would not like to see file name but picture.

please need ur help

best regards
Rachel
Avatar of zzzzzooc
zzzzzooc

I've read that 5 times and I'm not still not sure what you're asking. Maybe I'm just very sleepy.. :-(

I normally don't ask this, but could you upload a screenshot of your form?
Yes I can explain again,

I have some data in front of that I want to have the appropriate picture for that specific data.

I am able to do it , but i can't see the picture in the box but file,
will u please help me having direct picture in the box and not the file name where picture is saved...

when I click on file name in the box , I am able to see picture from   microsoft picture.

please ask me againg if u do not understand yet

regards
Rachel

ASKER CERTIFIED SOLUTION
Avatar of zzzzzooc
zzzzzooc

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I have a screen like below



 directory path of picture

specification 1               data 1                               picture box>>in which i can see again path but i would like to see an  image

specification 2               data 2                                And whenever I change data , specification and path of image in the next                                                                      page , the related picture should come next page.

specification 3               data 3

I hope r following now, what i want.

thnx a lot
Rachel

>> picture box>>in which i can see again path but i would like to see an  image
I'm not clear on that.

Why is the "path" displayed in the PictureBox? What control is used for "directory path"? Have you properly resized/moved the controls so they're not covering eachother?

If you're new to VB, you might want to familiarize yourself with it a little and ask smaller questions. It's difficult for me to suggest anything right now for something unclear and broad.

I'm heading out right now so I'll respond later today unless somebody else answers your question. As for the screenshot, I meant for you to take an actual picture of how your form looks... it'd really help for others and myself to help you.
Avatar of Ryan Chong
>>now I would like to have Images in front of those buttons.
If you're using standard command buttons, you can try change its Style Property to 1 - Graphical, and then at the Picture Property click the "[...]" button (when you focused on that Property) to select an image. If you want to load the image dynamically, you can try use the LoadPicture function as what zzzzzooc mentioned above.

Let us know if you need further helps here.