ADD Down Arrow Symbol in Submenu VB 6.0 - vb6

Could help me to make my menu looks like the following example:
Menu ▼
Submenu1 ►
Submenu
Submenu2 ►
Submenu
I'm using the Menu Editor , but I get show down arrow symbol,also use Visual Basic 6.0.
Thanks...

A quick Google of "how to use the vb6 menu editor" returned plenty of good sites and videos that explain.
Here is the Microsoft site explaining using the editor

This menu is with a extra "component" of vb6.
It is "Sheridan Activetoolbars Plus 2.0"
Thanks for u atenction.

Related

How do I click dropdown arrow in Facebook programmatically with VB.NET?

I'm looking for a way to programmatically click the drop-down arrow that appears when we open a specific FB post such as https://www.facebook.com/userxxx/posts/10155300116786742
Can anyone please provide me the code for Visual Basic? Thank you.
Drop-down arrow
in your webbrowser control you can invoke javascript code inside of the requested page by using
WebBrowser.Document.InvokeScript("eval", "some javascrtip here")
that leaves us with the problem of doing the dropdown click with javascript. That you can do with:
document.querySelectorAll("[data-testid=post_chevron_button]")[0].click()
so, all together it end up being
Dim micode As Object() = {"document.querySelectorAll('[data-testid=post_chevron_button]')[0].click()
"}
WebBrowser.Document.InvokeScript("eval", micode)
notice the js code provided might change. You should decide what code is better yourself. I recommend open facebook or any page, in chrome and press F12 ... that is the developer console. You can run and debug javascript there.... have fun!

Edit xaml style

I'm trying to edit an XAML style as suggested in this comment, following MSDN - but the MSDN tutorial says "To create a style, select the object, and then in the Object menu, choose Edit Style" and I can't find an object menu. The objects and timeline tab does not include an option for "edit style", and there is no "object" menu at the top of the screen.
This must be simple if you know this stuff. But I can't find it.
That MSDN article is a bit outdated. To edit a style (assuming you are using Visual Studio 2013/2015 or Blend for Visual Studio 2013/2015), select the object in the XAML designer, then use Format menu -> Edit style...

How can I add an icon and a subtitle to a Joomla menu item?

In Joomla 3.2 I need a to show a group of "buttons" (colored boxes) that are links to other articles or pages. These buttons must have an icon, a title (with bold text and a larger font) and a subtitle with a smaller font.
It's possible to do this with the standard menu component and some CSS customization, or shall I install or create a new component? If so, do you know any component that does this things?
Thank you!
I was also confused once to find the simple solution to attach an icon to menu-item links, but it was in version 2.5.12
The solution for version 3.0 and above is also same.
While adding a menu item you will find another tab with heading "Advanced Options"
In that you will find "Link Type Options" Tab.
"Advanced Options"-> "Link Type Options"
From that you can set "Link Image" and the image will get attached to the same menu item.
"Advanced Options"-> "Link Type Options"->"Link Image"
You do not need to use any other extensions if the requirements are paused at menu-item icons only and you can use tool-tip option to inform users more about the links, I think sub-title is not possible to set here.

Joomla not showing menu

I have downloaded this template to my joomla 2.5.6 and I'm trying to create a horizontal menu. I have created menu and module that should be displaying that menu. I have set position to user3 (as I've read that is the default position for horizontal menu), but nothing showed up.
The only positions I can see my menu on are "search" and "top-panel".
Can anybody please guide me how to find what may cause the problem?
EDIT: I have renamed the menu to "menu1" and so did with "menu type" and it has showed up. Why? Where's any logic?
Thank you !
Make sure you have set on which pages to activate the menu:
You can find these settings in the module manager > your menu
check the positions using ?tp=1 at the end of your url
log in to your joomla backend.
go to article manager and create an article..
go to menu manager and create a new menu, select your article which will me mostly a single article if you have created others then choose others, such as featured article or others,
then on the same page on required setting choose the article you have created.
save and close..
now go to
module manager,
go to the menu or content menu or horizontal menu,
down below there will be menu assignment,
choose the menu and show to it all pages..
hope this will help you..
Thanks
Anil Bikram Thapa

where is the specific button on design mode?

how can i find the specific button on design mode where i have several buttons ie: hundered of buttons so that they all like spaghetti and one button may be under another button or a groupbox (i might be playing with the visibilities ) and i want to see my button number 83 on the design. how can i see him? where is he hiding? :) i use visual studio as an IDE. thanks.
MessageBox.Show(" where is the specific button? i know that he is somewhere on the form but cant distinguish it on the design since its somewhere under something i cant find it");
Use Document Outline (View - Other Windows - Document Outline)
Just pick the button from the tree and voila.
PS: this works for other types of designers (WPF/Silverlight, ASP.NET)
You can access it via the Properties Window. There is a drop-down that will list all of the items in your form in design mode.
Then use the drop-down. The drop-down will list all of the items on your form so you will scroll through the list to find Button number 83.
Images were pulled from MS Visual Studio: The properties Window which contains an explanation of the window.
Have you tried using the properties window?

Resources