Click here to Skip to main content
15,885,099 members
Home / Discussions / C#
   

C#

 
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 
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 
atrus2711 wrote:
There's no need for sequential numbers. The Position in the tree would be determined by parentID and "location within siblings". Yet, the Keywould either be created by the database, resulting in a timelag between node Insertion and db roundtrip, or the Client would create a key itself (e.g. a GUID).
Table names are unique within their database. Meaning each row in each table in each db can be uniquely identified by using the primary key, tablename and databasename. That would give you a key for your tree that has a unique name for each node, one that can be used to backtrace the item it is supposed to represent in the database.

atrus2711 wrote:
Not here, as the whole account plan has to be built and seen.
..but not edited in its whole - that's why there's table level locking for example. Again, a problem that has been solved already, there's a lot of databases out there where multiple users are editing data.

atrus2711 wrote:

For input, yes. But the tree has to show several columns and once, which the built-in treeviews in MS VisualStudio do not provide.
Read the UX Guide. A treeview should not have tabular data. It is there to navigate to a node, not to display columns. That kind of data goes into another control that is specialized for that purpose, either a datagridview or a datalistview. See explorer, see regedit, see any decent application.

The idea that you "need" to edit a column as part of your tree in the same control is nonsense.

atrus2711 wrote:
the root items are things like "assets", "liabilities", "Profit and loss" and "Notes", each of them having thousands (!) of sub-branches.
Because there is NO other way of making a selection beforehand - it HAS to be part of the tree, and cannot simply be a button saying "Notes" Laugh | :laugh:

Good luck Smile | :)
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 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 
GeneralRe: Backing up a C# project Pin
Brian_TheLion13-May-19 14:02
Brian_TheLion13-May-19 14:02 
GeneralRe: Backing up a C# project Pin
Dave Kreskowiak13-May-19 16:09
mveDave Kreskowiak13-May-19 16:09 

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.