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
Search found 51 matches
- Mon Aug 19, 2024 11:28 am
- Forum: Deutsches Forum
- Topic: TreeView:ExpandAll()
- Replies: 6
- Views: 531
- Mon Aug 19, 2024 9:18 am
- Forum: Deutsches Forum
- Topic: TreeView:ExpandAll()
- Replies: 6
- Views: 531
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 RETURN SELF
- Mon Aug 19, 2024 5:31 am
- Forum: Deutsches Forum
- Topic: TreeView:ExpandAll()
- Replies: 6
- Views: 531
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 RETURN SELF ...
- Wed Jul 10, 2024 1:30 pm
- Forum: Chit-Chat
- Topic: Windows 11 working like W10
- Replies: 2
- Views: 497
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 ...
- Wed Jul 10, 2024 11:34 am
- Forum: Product
- Topic: SLE Background?
- Replies: 16
- Views: 1470
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 ...
- Wed Jul 10, 2024 9:21 am
- Forum: Product
- Topic: SLE Background?
- Replies: 16
- Views: 1470
Re: SLE Background?
Hi Dick,
with ExplorerPatcher you can still use OpenShellMenu in Win11. Also the Quick launch bar is still possible (I use freelaunchbar). My Win 11 looks like my old Win 10 (or Win 7 to be honest)
Karl
with ExplorerPatcher you can still use OpenShellMenu in Win11. Also the Quick launch bar is still possible (I use freelaunchbar). My Win 11 looks like my old Win 10 (or Win 7 to be honest)
Karl
- Fri May 24, 2024 6:40 am
- Forum: Product
- Topic: Setting the font of selected text in a RichEdit control
- Replies: 4
- Views: 679
Re: Setting the font of selected text in a RichEdit control
Jan, I think you shoul use Dick's suggestion, that is the correct way. My implementation is: CLASS MyRichEdit INHERIT RichEdit METHOD SetBold() SELF:SetEffect(CFE_BOLD) RETURN SELF METHOD setitalic() SELF:SetEffect(CFE_ITALIC) RETURN SELF METHOD SetUnderline() SELF:SetEffect(CFE_UNDERLINE) RETURN ...
- Fri Apr 26, 2024 5:25 am
- Forum: 3rd party products
- Topic: ReportPro 2.40 for X#: empty report while showing correct in VO ReportPro 2.31
- Replies: 14
- Views: 2021
- Thu Apr 25, 2024 11:21 am
- Forum: 3rd party products
- Topic: ReportPro 2.40 for X#: empty report while showing correct in VO ReportPro 2.31
- Replies: 14
- Views: 2021
Re: ReportPro 2.40 for X#: empty report while showing correct in VO ReportPro 2.31
Robert,
you're right, small files like this are very unusual
(sorry, couldn't resist)
Karl
you're right, small files like this are very unusual
(sorry, couldn't resist)
Karl
- Wed Mar 20, 2024 10:09 am
- Forum: Product
- Topic: Macrocompiler-Bug
- Replies: 1
- Views: 435
Macrocompiler-Bug
Hi Chris, Robert, I experienced a (for us) serious bug in the macrocompiler. When I call a method with three parameters by reference an error occurs. This causes crashes in several scripts (VOSCRIPT) that run in the production environment of our customers. Here is an example which shows the problem ...