|
-
Aug 26th, 2006, 09:57 AM
#1
Thread Starter
Junior Member
Edit the taskbar settings with code
If you right click the taskbar in windows and choose "properties", there are a couple of setting for you to edit. How is it possible to edit these with visual basic .net code? Im particularly interested in the "always put the taskbar on top" setting (might not be the exact name of the setting, but i have a swedish version of windows so im guessing the english label here ).
I've been searching for a regedit entry for these setting with no luck.
Thanks in advance
-
Aug 27th, 2006, 02:01 PM
#2
Re: Edit the taskbar settings with code
-
Aug 28th, 2006, 11:39 AM
#3
Thread Starter
Junior Member
Re: Edit the taskbar settings with code
Thank you iPrank for your answer.
But I get the same error as the guy in the second link. He said he solved it buy passing something in by reference but i dont know what reference to add. Too bad i dont have an expert exchange account so i could pm the guy. Any ideas? The link
-
Aug 28th, 2006, 11:53 AM
#4
Re: Edit the taskbar settings with code
as he says in that last post it didn't like ByVal parameter for pData:
VB Code:
Private Declare Function SetAppBarMessage Lib "shell32" Alias "SHAppBarMessage" _
(ByVal dwMessage As Integer, [B]ByRef[/B] pData As APPBARDATA) As Integer
-
Aug 28th, 2006, 02:30 PM
#5
Thread Starter
Junior Member
Re: Edit the taskbar settings with code
Okay! Great Thanks alot both
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
|