|
-
Jul 23rd, 2003, 05:09 PM
#1
Thread Starter
Hyperactive Member
office xp style menus
is there an easy way to use office xp style menus? with the blue highlighting, or could you also change that highlighting to say red?
-
Jul 23rd, 2003, 05:35 PM
#2
Sleep mode
Yes , you can change it to any color .
-
Jul 23rd, 2003, 05:39 PM
#3
Thread Starter
Hyperactive Member
is there an easy way to set that up? or is there something i am missing in the main menu item?
-
Jul 23rd, 2003, 05:39 PM
#4
Sleep mode
-
Jul 23rd, 2003, 05:46 PM
#5
Sleep mode
Originally posted by deoblo1
is there an easy way to set that up? or is there something i am missing in the main menu item?
You must change OwnerDraw = true , otherwise the changes you make won't affect the menuitems .
-
Jul 24th, 2003, 11:25 AM
#6
Addicted Member
If you don't mind paying for a 3rd party control, Devcomponents DotNetBar suite does this.
http://www.devcomponents.com/dotnetbar/
-
Jul 24th, 2003, 11:30 AM
#7
Sleep mode
No need to pay anything . There are a lot of XP Style Menus on the net for free . They are all work fine .
-
Jul 24th, 2003, 11:32 AM
#8
Addicted Member
Originally posted by Pirate
No need to pay anything . There are a lot of XP Style Menus on the net for free . They are all work fine .
urls?
-
Jul 24th, 2003, 11:38 AM
#9
Sleep mode
-
Jul 24th, 2003, 12:31 PM
#10
Fanatic Member
-
Jul 24th, 2003, 12:53 PM
#11
Sleep mode
This suckx .....
-
Jul 24th, 2003, 01:38 PM
#12
Fanatic Member
what's wrong with dotnetmagic? just because it uses some api's ?
-
Jul 24th, 2003, 01:49 PM
#13
dotnetmagic is a good thing to have i recon , but you cant beat making your own designs . and to be honest colouring / adding icons in vb.net is a stroll in the park compared to the api's we used to have to use in vb6 etc...
if you create a common handler for the drawitem and measureitem subs you can handle it all in a couple of small functions , eg :
VB Code:
Private WithEvents mnuItems As MenuItem
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
AddHandler MenuItem2.MeasureItem, AddressOf mnuItems_MeasureItem
AddHandler MenuItem3.MeasureItem, AddressOf mnuItems_MeasureItem
AddHandler MenuItem2.DrawItem, AddressOf mnuItems_DrawItem
AddHandler MenuItem3.DrawItem, AddressOf mnuItems_DrawItem
End Sub
Private Sub mnuItems_MeasureItem(ByVal sender As Object, ByVal e As System.Windows.Forms.MeasureItemEventArgs) Handles mnuItems.MeasureItem
With e
.ItemHeight = 20
.ItemWidth = 100
End With
End Sub
' //// and then just draw the item's / add icons as you require.
~
if a post is resolved, please mark it as [Resolved]
protected string get_Signature(){return Censored;}
[vbcode][php] please use code tags when posting any code [/php][/vbcode]
-
Jul 24th, 2003, 01:51 PM
#14
Sleep mode
Originally posted by Redth
what's wrong with dotnetmagic? just because it uses some api's ?
No , and what's wrong with APIs ? I love working with APIs . They do the job perfectly .
-
Sep 27th, 2003, 05:30 PM
#15
New Member
What's the limitation of the DotNetMagic demo?
Last edited by Friend_Al_23; Sep 27th, 2003 at 05:36 PM.
http://www.lyricsserver.net
-
Sep 27th, 2003, 05:43 PM
#16
yay gay
dotnetmagic is open source
you can change it code if u want and if u dont like dll's u can even put the code inside your .exe so you just have a single file to distribute!
\m/  \m/
-
Sep 27th, 2003, 06:20 PM
#17
New Member
So the demo version for it contains the does not source code?
http://www.lyricsserver.net
-
Sep 28th, 2003, 01:53 PM
#18
Sleep mode
Originally posted by PT Exorcist
dotnetmagic is open source
you can change it code if u want and if u dont like dll's u can even put the code inside your .exe so you just have a single file to distribute!
Don't you think it has some issues with Licenses ?
-
Sep 28th, 2003, 02:01 PM
#19
yay gay
yeah damn u're right
anyways my proggys are just for me and a couple of friends(at least until now) so i dont have big problems with it
but if u're goin sell it then youu might have some problems with it
\m/  \m/
-
Sep 28th, 2003, 02:16 PM
#20
Sleep mode
The above links are Free and open source . I've seen one of them ago , it's freaking cool .
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|