Click here to Skip to main content
15,887,027 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
PinnedThe C++ / CLI is for managed and mixed-mode C++ programming only Pin
Chris Maunder9-Jan-06 9:36
cofounderChris Maunder9-Jan-06 9:36 
QuestionMultiThreading/Synchronization related problem Pin
Amrit Agr15-Apr-24 7:22
Amrit Agr15-Apr-24 7:22 
AnswerRe: MultiThreading/Synchronization related problem Pin
Richard MacCutchan15-Apr-24 21:46
mveRichard MacCutchan15-Apr-24 21:46 
GeneralNeed Help (Command Console) Pin
Mahek Thapa30-Mar-24 5:17
Mahek Thapa30-Mar-24 5:17 
GeneralRe: Need Help (Command Console) Pin
Victor Nijegorodov30-Mar-24 9:32
Victor Nijegorodov30-Mar-24 9:32 
GeneralRe: Need Help (Command Console) Pin
Richard MacCutchan30-Mar-24 22:34
mveRichard MacCutchan30-Mar-24 22:34 
GeneralRe: Need Help (Command Console) Pin
Andre Oosthuizen31-Mar-24 23:07
mveAndre Oosthuizen31-Mar-24 23:07 
GeneralRe: Need Help (Command Console) Pin
Mahek Thapa10-Apr-24 20:53
Mahek Thapa10-Apr-24 20:53 
GeneralRe: Need Help (Command Console) Pin
Dave Kreskowiak11-Apr-24 3:49
mveDave Kreskowiak11-Apr-24 3:49 
GeneralRe: Need Help (Command Console) Pin
Andre Oosthuizen11-Apr-24 6:29
mveAndre Oosthuizen11-Apr-24 6:29 
QuestionConvert From C# to C++/CLI Pin
Paramu19731-Mar-24 14:26
Paramu19731-Mar-24 14:26 
QuestionTrying to Add System::ComponentModel Pin
Richard Andrew x649-Dec-23 10:10
professionalRichard Andrew x649-Dec-23 10:10 
AnswerRe: Trying to Add System::ComponentModel Pin
Gerry Schmitz9-Dec-23 10:55
mveGerry Schmitz9-Dec-23 10:55 
GeneralRe: Trying to Add System::ComponentModel Pin
Richard Andrew x649-Dec-23 13:25
professionalRichard Andrew x649-Dec-23 13:25 
AnswerRe: Trying to Add System::ComponentModel Pin
Richard MacCutchan9-Dec-23 21:11
mveRichard MacCutchan9-Dec-23 21:11 
QuestionTreelistView c++/cli Pin
Temblor21-Aug-23 23:05
Temblor21-Aug-23 23:05 
AnswerRe: TreelistView c++/cli Pin
Richard MacCutchan22-Aug-23 0:09
mveRichard MacCutchan22-Aug-23 0:09 
GeneralRe: TreelistView c++/cli Pin
Temblor22-Aug-23 3:57
Temblor22-Aug-23 3:57 
GeneralRe: TreelistView c++/cli Pin
Richard MacCutchan22-Aug-23 4:03
mveRichard MacCutchan22-Aug-23 4:03 
AnswerRe: TreelistView c++/cli Pin
jschell22-Aug-23 6:41
jschell22-Aug-23 6:41 
Temblor wrote:
cli project...TreelistView


So 'cli' is command line interface.

So a CUI for a tree list view?

My take is you have three options.
1. Get different requirements so it is not needed at all.
2. The tree is going to be very shallow. And probably very short. So roll your own.
3. This isn't going to work.

Why the third? For example sometimes I recurse a directory tree via the command line looking for files or even all files. I can certainly view that in a console but it is basically worthless because there is so much data. Even if I am just looking for one specific file I still need a search mechanism. So I route to a file and then use an editor to search.

But lets say you are not looking for a actual file system. So what is the growth rate of this tree? If it is shallow and small in 10 years rolling your own still works. And the users can use it. But if your growth rate is not small then in 10 years the users will have something they can't use.

If I was asked to do this and I already knew that the tree was not small then I would push back on the requirements. In writing (like email.) And if they insisted I would first make a copy of that email and my response. Then I would just roll my own (still not that hard.) It would be their problem when it was unusable. But I might use a demo with data from 10 years from now - just so they can see what is going to happen.
GeneralRe: TreelistView c++/cli Pin
Peter_in_278022-Aug-23 17:20
professionalPeter_in_278022-Aug-23 17:20 
GeneralRe: TreelistView c++/cli Pin
Temblor22-Aug-23 20:54
Temblor22-Aug-23 20:54 
GeneralRe: TreelistView c++/cli Pin
Richard MacCutchan22-Aug-23 21:48
mveRichard MacCutchan22-Aug-23 21:48 
GeneralRe: TreelistView c++/cli Pin
jschell23-Aug-23 6:47
jschell23-Aug-23 6:47 
AnswerRe: TreelistView c++/cli Pin
Gerry Schmitz23-Aug-23 5:49
mveGerry Schmitz23-Aug-23 5:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.