Hi Dick,
glad it works for you now. You might also have a look at WinaeroTweaker. It has many, many options to adapt win11.
And to praise Microsoft for win11 at least once, the tabs in File Explorer are really great
Karl
Search found 56 matches
- Tue May 27, 2025 6:38 am
- Forum: Chit-Chat
- Topic: Windows 11 working like W10
- Replies: 14
- Views: 20475
- Mon May 26, 2025 6:05 am
- Forum: Chit-Chat
- Topic: Windows 11 working like W10
- Replies: 14
- Views: 20475
Re: Windows 11 working like W10
Hi Dick,
no, I don't have these problems with ExplorerPatcher. I recently also set up a new computer. For the local account I used the "oobe\bypassnro"-trick which can be found e. g. on https://www.heise.de/tipps-tricks/Windows-11-ohne-Microsoft-Konto-so-geht-s-6213708.html. Maybe you have to ...
no, I don't have these problems with ExplorerPatcher. I recently also set up a new computer. For the local account I used the "oobe\bypassnro"-trick which can be found e. g. on https://www.heise.de/tipps-tricks/Windows-11-ohne-Microsoft-Konto-so-geht-s-6213708.html. Maybe you have to ...
- Fri Apr 25, 2025 12:24 pm
- Forum: Product
- Topic: Format document in X# 2.21
- Replies: 17
- Views: 14693
Re: Format document in X# 2.21
Hi Robert,
just installed the new beta 2.23.0.1 and saw that Edit.ToggleLineComment is indeed working. Thanks for that.
However I didn't see it in the What's New. I think this feature has well deserved to be mentioned...
Karl
just installed the new beta 2.23.0.1 and saw that Edit.ToggleLineComment is indeed working. Thanks for that.
However I didn't see it in the What's New. I think this feature has well deserved to be mentioned...
Karl
- Mon Feb 10, 2025 1:58 pm
- Forum: Product
- Topic: Format document in X# 2.21
- Replies: 17
- Views: 14693
Re: Format document in X# 2.21
Robert,
this would be great, no more broken fingers with Ctrl-K-C and Ctrl-K-U
Karl
this would be great, no more broken fingers with Ctrl-K-C and Ctrl-K-U
Karl
- Mon Feb 10, 2025 12:56 pm
- Forum: Product
- Topic: Format document in X# 2.21
- Replies: 17
- Views: 14693
Re: Format document in X# 2.21
Hi,
I'm working with VS 2022 (german version). This option is not present. I can however add the command
"Kommentarzeile ein/aus Strg+#"
to a menu, but it stays disabled in x#-files. In c#-files you can indeed toggle comments with this option.
Is this something Robert must implement ?
Karl
I'm working with VS 2022 (german version). This option is not present. I can however add the command
"Kommentarzeile ein/aus Strg+#"
to a menu, but it stays disabled in x#-files. In c#-files you can indeed toggle comments with this option.
Is this something Robert must implement ?
Karl
- Mon Aug 19, 2024 11:28 am
- Forum: Deutsches Forum
- Topic: TreeView:ExpandAll()
- Replies: 6
- Views: 3009
Re: TreeView:ExpandAll()
Franz,
Ich habe bei meinen Treeviews immer ein Root-Element, an dem alle hängen. Daher funktioniert das bei mir wie gewollt. Evtl. klappt es bei dir auch, wenn du Default(@lRoot,True) verwendest oder True als Parameter übergibst...
Karl
Ich habe bei meinen Treeviews immer ein Root-Element, an dem alle hängen. Daher funktioniert das bei mir wie gewollt. Evtl. klappt es bei dir auch, wenn du Default(@lRoot,True) verwendest oder True als Parameter übergibst...
Karl
- Mon Aug 19, 2024 9:18 am
- Forum: Deutsches Forum
- Topic: TreeView:ExpandAll()
- Replies: 6
- Views: 3009
Re: TreeView:ExpandAll()
Logisch,
METHOD CollapseAll(lRoot) CLASS MyTreeView
LOCAL oItem AS TreeViewItem
Default(@lRoot,FALSE)
oItem := SELF:getRootItem()
IF lRoot
SELF:Collapse(oItem:NameSym)
ENDIF
WHILE(TRUE)
oItem := SELF:GetNextItem(oItem)
IF oItem = NULL_OBJECT
EXIT
ENDIF
SELF:Collapse(oItem:NameSym)
ENDDO ...
METHOD CollapseAll(lRoot) CLASS MyTreeView
LOCAL oItem AS TreeViewItem
Default(@lRoot,FALSE)
oItem := SELF:getRootItem()
IF lRoot
SELF:Collapse(oItem:NameSym)
ENDIF
WHILE(TRUE)
oItem := SELF:GetNextItem(oItem)
IF oItem = NULL_OBJECT
EXIT
ENDIF
SELF:Collapse(oItem:NameSym)
ENDDO ...
- Mon Aug 19, 2024 5:31 am
- Forum: Deutsches Forum
- Topic: TreeView:ExpandAll()
- Replies: 6
- Views: 3009
Re: TreeView:ExpandAll()
Hallo Franz,
das muss man selbst in die Hand nehmen:
METHOD ExpandAll() CLASS MyTreeView
LOCAL oItem AS TreeViewItem
oItem := SELF:getRootItem()
SELF:expand(oItem:NameSym)
WHILE(TRUE)
oItem := SELF:GetNextItem(oItem)
IF oItem = NULL_OBJECT
EXIT
ENDIF
SELF:expand(oItem:NameSym)
ENDDO ...
das muss man selbst in die Hand nehmen:
METHOD ExpandAll() CLASS MyTreeView
LOCAL oItem AS TreeViewItem
oItem := SELF:getRootItem()
SELF:expand(oItem:NameSym)
WHILE(TRUE)
oItem := SELF:GetNextItem(oItem)
IF oItem = NULL_OBJECT
EXIT
ENDIF
SELF:expand(oItem:NameSym)
ENDDO ...
- Wed Jul 10, 2024 1:30 pm
- Forum: Chit-Chat
- Topic: Windows 11 working like W10
- Replies: 14
- Views: 20475
Re: Windows 11 working like W10
Dick, with ExplorerPatcher you can definitely move the taskbar to the right, see attached picture.
If you want to use OpenShellMenu I think ExplorerPatcher is the only way to go.
Of course you can add the standard Quick Launch to the taskbar, but FLB or True Launch Bar are far superior, you have ...
If you want to use OpenShellMenu I think ExplorerPatcher is the only way to go.
Of course you can add the standard Quick Launch to the taskbar, but FLB or True Launch Bar are far superior, you have ...
- Wed Jul 10, 2024 11:34 am
- Forum: Product
- Topic: SLE Background?
- Replies: 16
- Views: 5477
Re: SLE Background?
Hi Dick,
Actually I mentioned 3 tools
- first you need ExplorerPatcher (with this you can place the taskbar to the right or the startmenu to the left)
- OpenShell (former ClassicShell) replaces the windows menu. OpenShell requires ExplorerPatcher.
- FreeLaunchBar replaces Quick Launch Bar. You can ...
Actually I mentioned 3 tools
- first you need ExplorerPatcher (with this you can place the taskbar to the right or the startmenu to the left)
- OpenShell (former ClassicShell) replaces the windows menu. OpenShell requires ExplorerPatcher.
- FreeLaunchBar replaces Quick Launch Bar. You can ...

