Best way to build Breadcrumb Menu in Visual Basic - vb.net

I have a VB10 app that uses panels, one for menu, one for main screen and then i want to add one for a breadcrumb menu. I use user controls to display in pnlMain and would like the breadcrumb trail to add an link with user control info every time I add a screen to pnlmain...and remove the link when I click on the previous link.
I would like to build the links dynamically like they do here: http://www.codeproject.com/Articles/17714/Create-a-Breadcrumb-Menu-in-VB-NET-WinForms,
but I couldnt get the links to display when I ran the solution.
and if I get the links to show, how do I associate the user control to that link?
Thank you for your help. The breadcrumb shouldnt go more than 3-4 levels deep

Related

How do i create my own right click menu on the desktop?

i have searched up and down the internet but cannot figure this out. So ive finally come here for the aid of some utter genius people.
I dont like the windows right click function as it has too many options. Some of the options like properties cannot be removed. So, i thought i could disable right click to remove the menu and create my own.
The problem i have is i cannot figure out for VS2010 how to right click on the desktop outside of the form/project and make a box pop up like the same behaviour as the built in one. I am ultimately wanting to be able to expand and add things but im falling at the first hurdle.
Can someone please tell me how to right click on the desktop and create a context menu popup where i can add my own items. i want it to behave the same as windows but i want it my own essentially. This way in the future i will be able to enable or disable my own functions i.e open/winrar/7zip / remove edit on the fly.
thanks
Ka0s
Remove/Disable the default menu of desktop is not a good idea at all
But you can add your own items as well using 3rd party apps
I made an app modifies the default menu ,it can append more items an sub items
I wrote it long time ago I do not remember if i still have the source code or not
App link

Start Over button in Gupshup chatbot

We would like to know how the Start Over button was used in one of the examples in Gupshup chatbot. Attaching the image for your reference.
We are actually intrested in allowing the user to go back to the main menu by using the button option. We have seen videos with user tying back. And also we have used the linking options.
Thanks
Manjiri

Does Magnific Popup support custom events/buttons

I know Magnific Popup supports certain events such as Close, Next, etc. out of the box. But does Magnific support custom buttons and events if I wanted to add my own event hooks, such as Download, email, buy, or whatever button I wanted to created. I'm really just looking to be able to create my custom menu within the image 'div' area or directly beneath it. An example somewhere would be great. I just haven't been able to find any.
Before starting I would recommend reading the Magnific Popup Documentation
and familiarizing yourself with the available examples, more specifically the Pin it button example.
Naturally, you will have to code out the functionality of your menu items as you need them.
For the how to's on the specifics of your buttons you will have to do more specific searching as it does not appear that there is a built in
magic(click, poof)
{
//amazing things happen
}
function.
Good luck!

Basic Page vs. Blank Page

I am trying to find the difference between the uses of a basic page and a blank page on windows store apps. I am writing an application that has multiple pages and I am not sure which one to use for my main page and I can't seem to find an answer that is helpful.
Basic Page inherits Common.LayoutAwarePage. This gives your page various capabilities like the automatic back button and a visualstatemanager for snapping among other things.
Blank Page only inherits Page and does not get any of the above capabilities. So for example if you need to incorporate snapped view in your page, you need to add a handler for the size changed event in your code.
A Basic Page makes it very easy to just write all the snapped changes in your VisualStateManager in XAML and then test it without running your code using just the device tab where you can select state of your device.
The MainPage in your project is a Blank Page and I prefer to create all other pages as Basic Pages to not worry about stuff like the back button.
That being said, Windows 8.1 apps do not include the LayoutAwarePage so if you are not used to the LayoutAwarePage, do not bother.
Let me know if you need more clarification.
Go with the Basic Page as it gives you automatic back button your view's title etc, and if you don't need them you can disable them also. But for blank page you have to write code for those common things.
This blog post will help you in understanding of Basic Page vs Blank Page.
http://myblogwindow8.blogspot.com/2013/06/blank-page-vs-basic-page-template.html

Sharepoint Quick Launch Issue

I want to add dynamic link add in quick launch my requirement is that
1) one list like topics and other is Chapter in chapter list i took look up of topics list
2)Now i want to add topic items as Heading Link in quick launch and chapters items are child link in quick launch based on Heading item...
Is this possible by programmatically??
if yes then tell me steps or any reference link
if not possible than any alternate ways to solve this issue?
Thanks In Advance............
If I had that requirement, I would:
create a simple quick launch item called "View Table of Contents" in the siteactions.xml file.
when the user clicks on that item, a javascript function is run that opens a modal dialog with the table of contents rendered from a simple aspx page with a TOC webpart in it.
then the user would click a link in the dialog and be taken to the chapter