Questions tagged [virtualtreeview]

Virtual Treeview is free Delphi component written by Mike Lischke.

Home page: http://www.jam-software.de/virtual-treeview/
Code: https://github.com/Virtual-TreeView/Virtual-TreeView/

Virtual Treeview is a tree view control built from ground up. More than a decade of development made it one of the most flexible and advanced tree controls available today. Virtual Treeview starts off with the claim to improve many aspects of existing solutions and introduces some new technologies and principles which were not available before.

As the name already indicates, this control uses a different paradigm for tree management than other controls of this kind. It does not know anything about the data it manages (except its size), not even the captions of a node. Everything is retrieved from the application via events (or descendants via overridden methods).

Virtual Treeview has been carefully designed and thoroughly tested. The control proved its concept as well as everyday fitness already in many commercial products and freeware projects.

309 questions
0
votes
0 answers

Crash when waiting for WorkerThread in Destructor

I have a problem with Virtual Treeview Destructor, which stops the WorkerThread while it is still running. Code: destructor TBaseVirtualTree.Destroy; begin Exclude(FOptions.FMiscOptions, toReadOnly); ReleaseThreadReference(Self); and the code…
plaurinc
  • 93
  • 1
  • 7
0
votes
1 answer

Delphi VirtualStringTree and a Queue

Hi i've a project that uses the VirtualStringTree , with this Record : type TStudentsSession = record StudentName : String; StudentClass : String; StudentHandRaised:Boolean; end; And i've these Procedures : Procedure…
Sdean
  • 245
  • 2
  • 5
  • 12
0
votes
1 answer

Delphi, VirtualStringTree - rebuilding tree, restoring state (expanded nodes)

How can I restore state of nodes in VirtualStringTree (which ones were expanded) at tree rebuilding? my application uses VirtualStringTree (one of the best components EVER!). Now, what I need is to rebuild the tree each time the application is…
migajek
  • 8,524
  • 15
  • 77
  • 116
0
votes
2 answers

dynamic icons with the virtual tree component for delphi

I need to know how to store and load two different icons for each node in the virtual tree component , also the two icons are different in size Thanks
william
0
votes
2 answers

how to add objects to virtualtreeview

In short, I'm trying to add Object into VirtualTreeView but am always getting error EAccessViolation at CellText I'm wondering about the reason for the error i tried to do my best but without result... this is my attempt: TForm1 = class(TForm) …
S.FATEH
  • 451
  • 8
  • 16
0
votes
0 answers

Virtual TreeView losing toUseExplorerTheme

I have gridlines and toUseExplorerTheme enabled in virtualtreeview (DesignTime). I would like to remove the gridlines in runtime but it seems like I'm losing the toUseExplorerTheme property. Is this a bug or did I miss something? I tried to add it…
Ben
  • 3,380
  • 2
  • 44
  • 98
-2
votes
3 answers

Did Delphi XE2 remove the IsWinNT function?

Porting to XE2 and I've got a line IsWinNT that compiled in 7 and Delphi 2009 and never gave us any guff before. I'm not sure what the purpose of such a function is, but was it removed or moved? and what is a comparable function? My bad, it was…
Peter Turner
  • 11,199
  • 10
  • 68
  • 109
-2
votes
2 answers

example "virtual treeview" IterateSubtree in C++Builder XE-XE7

I need an example how to use "virtual treeview" IterateSubtree in C++ Embarcadero Xe1-7. I have the problem with this code: void __fastcall TMyForm::BuSearchClick(TObject *) { MyTreeView->IterateSubtree(NULL, SearchDataSomeId, (void*)&PNodeData,…
H.K
  • 173
  • 8
-2
votes
1 answer

Which Delphi version should I use?

I'm starting a new project, and I want to use Delphi for the desktop GUI. I'll be doing mainly typical client/server stuff with it (probably with Firebird). I have Delphi XE6 pro, and the older versions that came with it. And these are some of my…
Dan
  • 168
  • 7
1 2 3
20
21