Pop ups for pictures in vb.net - vb.net

I have 3 radio buttons on my form suggesting
3 different pictures to choose from and I have one
picture box in which these pictures will appear.
How do I create pop ups with different information for
each of the pictures in one text box when the mouse
hovers on top of the image and disappears
when the mouse leaves? How?
I've tried and tried Googling but nothing has
helped me at all.

Related

Keep stationary panel at bottom of visible area of form while scrolling in visual basic

I have a dynamically expanding WinForm that is loading questions from a database, expanding with more questions. I would like to have a panel at the bottom of the visible screen with a save and close button, but the panel stays at the bottom of the form where I have to scroll all the way to the end in order to find them.
I need to find a way to keep the panel with the buttons at the bottom of the visible area of the form. I was not able to find much information on this, but I tried messing around with some suggestions found here Draw Border of Panel When it is being Active Scroll
I found someone with a similar problem here Keep a stationary UITableViewCell while scrolling but that solution does not help me.
Is there a simple solution to move the panel in the form at the same rate as the scrollbar in order to keep it stationary to the user?
Thanks for any help and I can provide more info if needed.

How to show button control on userform like a button in pop up mode without hovering mouse

I have some button controls on userform where button style selected is Popup. After running the code when I hover the mouse it show little tip tilted (or it show border on left and top edge).
How can I fix this for all button without hovering mouse where all button shows border on its left and top (That will change it's visibility like a tip tilted button).
The purpose of this is, I want to show all button little over to it's parent form/panel as shown on the keyboard so that users can see these are the button without hovering the mouse.
I have attached button image and I want to all the button in the same style (This button style is popup). The button which is shown in picture give me a look when I hover the mouse over it (it displays the Left and Top corner with different/identical color) but I want this permanent to all button without hovering the mouse.
Any help will be appreciated.

Click a link to another slide in powerpoint without going full screen

I'm creating a powerpoint which has a contents page, I would like that contents page to have clickable links to other slides in the presentation. The problem is currently those links only work when I go full screen, is there a way which I can click the link without going full screen?
Thanks
As Steve says Links only work in show mode. To get them to work in edit the only way is to RIGHT CLICK on them and choose Open Hyperlink from the menu.
Links only work in Slide Show view.
If you go to Slide Show | Set Up Slide Show, you can choose "Browsed by an individual (window)"
Then the slide show window will be moveable/resizable and won't necessarily fill the screen.
If the problem is that your presenter(s) aren't putting the deck into slide show mode before they start presenting (meaning your links don't work in normal/edit mode), you could try one of these solutions:
Add a solid filled rectangle that fully covers your first slide and set any Entrance animation on it with the Trigger / On Click of set to this shape. Then write the text in the shape "Please press F5 to start this presentation". The shape will never be seen in slide show mode but is a polite reminder for your presenters when they open the .pptx file.
Save the deck in the .ppsx file format, forcing it to automatically start in slide show mode.

i am having too many menuitems in menubar. i want to scroll via mouse

I have some menus that contain many menuitems. Mouse wheel doesn't scroll them. I have to use the keyboard arrows or click the arrows at top and bottom. Is it possible to use the mouse wheel to scroll toolstrip menu items? in vb.net Thanks
I have done this by list box because i dint got anything.
i have even use text box so that i can sort my data easily as it has too many menu items
It scrolls easily n get sorted by text box so i can easily find my menu items
thanks.

Draw a line above a docked control

I have a borderless form that I'm "docking" onto the top edge of my screen. Inside of the form, I'm placing a single toolstrip control, which docks across the entire form -> (picture the taskbar to get an idea of what I'm talking about).
Because the borderless form has no edge to it, I wanted to draw a black line along the bottom edg` of the form to differentiate the form from the windows or desktop behind it.
The problem that I'm facing is that`the toolstrip will not move "behind" the line when it's docked, no matter how I order the control layers.
I've tried programatically sending the control to back to no avail either.
Any ideas on how to get the line to show above the docked toolstrip?
Dock another control to the top that displays like a black line (e.g. a Label with a black background and a height of 1). Insert your ToolStrip after you have docked the Label. It will dock just below the Label.