Click here to Skip to main content
15,890,186 members
Home / Discussions / C#
   

C#

 
AnswerRe: Final Project its importent Pin
OriginalGriff11-May-19 20:06
mveOriginalGriff11-May-19 20:06 
AnswerRe: Final Project its importent Pin
Gerry Schmitz11-May-19 23:49
mveGerry Schmitz11-May-19 23:49 
AnswerRe: Final Project its importent Pin
#realJSOP12-May-19 1:10
mve#realJSOP12-May-19 1:10 
QuestionIdeas wanted: editor for large parent-child tree structure in multiuser environment Pin
atrus271111-May-19 3:01
atrus271111-May-19 3:01 
AnswerRe: Ideas wanted: editor for large parent-child tree structure in multiuser environment Pin
BillWoodruff11-May-19 14:45
professionalBillWoodruff11-May-19 14:45 
GeneralRe: Ideas wanted: editor for large parent-child tree structure in multiuser environment Pin
atrus271113-May-19 2:01
atrus271113-May-19 2:01 
GeneralRe: Ideas wanted: editor for large parent-child tree structure in multiuser environment Pin
BillWoodruff13-May-19 20:53
professionalBillWoodruff13-May-19 20:53 
AnswerRe: Ideas wanted: editor for large parent-child tree structure in multiuser environment Pin
Eddy Vluggen11-May-19 23:13
professionalEddy Vluggen11-May-19 23:13 
Sorry, doesn't sound like an application.

atrus2711 wrote:
child nodes can result from individual requirements ("make a child node named A") or
from applying domain values (e.g. countries, currencies etc): "make child nodes for the
countries I select in a list".
From what list in which application? Let me guess, a "domain value" can be anything? The reason I'm sceptical is because I've seen this before; a tree that should hold everything (and then the spec stops).

atrus2711 wrote:
- display in a multicolumn treeview using Infragistics Ultracontrols' UltraTree (present)
Yuck. A treeview with a datagridview next to it would work better and probably perform better. You want to mix extra data (unknown # of columns) into a tree, displayed in a single control. I'd be going for a simple tree, loading only the expanded nodes, and only fetching the data for the grid on the selected node.

atrus2711 wrote:
- concurrency managment: my initial approach (timestamps for optimistic locking) could lead to
"outdated" branches, so that hours of work could not be saved, as the database status is newer
Most people lock the stuff that edited. If they are inserting the same info, then there's a problem with the workflow, not the application.

atrus2711 wrote:
- key generation: classical parent-child-trees need keys to be referenced. Usually, I use
identity integer values in hierarchical dataset, so new nodes (-1, -2, -3) get their IDs on
dataset.Update, but here, the reference is recursive (not just hierarchical). Creating a branch
has to create the nodes "top down".
You can still use a unique number, you just can't expect those numbers to stay sequential in the database. People will move branches, delete them; so the numbering won't stay consistent in the db.

Also, users don't like to have to expand over 10 branches just to get to their data. If the only stuff they work on is hidden three levels deep, I'll bet you that they want the tree to open THERE, without including all the stuff they're not using.
Bastard Programmer from Hell Suspicious | :suss:
If you can't read my code, try converting it here[^]
"If you just follow the bacon Eddy, wherever it leads you, then you won't have to think about politics." -- Some Bell.

GeneralRe: Ideas wanted: editor for large parent-child tree structure in multiuser environment Pin
atrus271113-May-19 2:17
atrus271113-May-19 2:17 
GeneralRe: Ideas wanted: editor for large parent-child tree structure in multiuser environment Pin
Eddy Vluggen13-May-19 3:29
professionalEddy Vluggen13-May-19 3:29 
GeneralRe: Ideas wanted: editor for large parent-child tree structure in multiuser environment Pin
atrus271113-May-19 4:09
atrus271113-May-19 4:09 
GeneralRe: Ideas wanted: editor for large parent-child tree structure in multiuser environment Pin
Eddy Vluggen13-May-19 7:31
professionalEddy Vluggen13-May-19 7:31 
AnswerRe: Ideas wanted: editor for large parent-child tree structure in multiuser environment Pin
Gerry Schmitz11-May-19 23:37
mveGerry Schmitz11-May-19 23:37 
GeneralRe: Ideas wanted: editor for large parent-child tree structure in multiuser environment Pin
atrus271113-May-19 2:26
atrus271113-May-19 2:26 
GeneralRe: Ideas wanted: editor for large parent-child tree structure in multiuser environment Pin
Gerry Schmitz13-May-19 3:34
mveGerry Schmitz13-May-19 3:34 
GeneralRe: Ideas wanted: editor for large parent-child tree structure in multiuser environment Pin
atrus271113-May-19 4:24
atrus271113-May-19 4:24 
GeneralRe: Ideas wanted: editor for large parent-child tree structure in multiuser environment Pin
Gerry Schmitz13-May-19 5:21
mveGerry Schmitz13-May-19 5:21 
GeneralRe: Ideas wanted: editor for large parent-child tree structure in multiuser environment Pin
atrus271113-May-19 20:31
atrus271113-May-19 20:31 
GeneralRe: Ideas wanted: editor for large parent-child tree structure in multiuser environment Pin
Gerry Schmitz14-May-19 4:48
mveGerry Schmitz14-May-19 4:48 
QuestionBacking up a C# project Pin
Brian_TheLion10-May-19 13:56
Brian_TheLion10-May-19 13:56 
AnswerRe: Backing up a C# project Pin
BillWoodruff10-May-19 19:19
professionalBillWoodruff10-May-19 19:19 
AnswerRe: Backing up a C# project Pin
OriginalGriff10-May-19 20:24
mveOriginalGriff10-May-19 20:24 
GeneralRe: Backing up a C# project Pin
BillWoodruff11-May-19 2:10
professionalBillWoodruff11-May-19 2:10 
GeneralRe: Backing up a C# project Pin
OriginalGriff11-May-19 2:35
mveOriginalGriff11-May-19 2:35 
GeneralRe: Backing up a C# project Pin
BillWoodruff11-May-19 14:20
professionalBillWoodruff11-May-19 14:20 

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.