Oren Eini

CEO of RavenDB

a NoSQL Open Source Document Database

Get in touch with me:

oren@ravendb.net +972 52-548-6969

Posts: 7,592
|
Comments: 51,223
Privacy Policy · Terms
filter by tags archive
time to read 1 min | 78 words

Here is a nice post by Jeff Atwood, with a really cool idea that I like. Using a free form address field instead of seperating the fields.

On the one hand, it's easier for the user, since this is easy to grasp. On the other hand, we can't you auto complete. Read the comments, they are interesting, and be sure to check the screen shot he has there.

time to read 1 min | 185 words

This is purely hypotetical, but imagine the following way to show the user's details:

User user = ... ;//Get user something

var view = new View( user, 
 new Text(u => u.Name,  s => user.Name = s),
 new Password( u => u.Password,  s => user.Password = s ),
 new List(from g in user.Groups select g,  g => user.Groups.Add(g), g => user.Groups.Remove(g)) );
view.Show();

Where View is a class which display view items in a TableLayout. And each item knows how to handle changes. This could be a very rapid way to create UI.

What do you think?

time to read 1 min | 194 words

I'm currently developing an application that need to display source code (XML & Sql).

Most of the works goes into the UI, I rarely touch the back-end, just put stuff in the UI to make it nicer to work with the application.

I desperately need stable control for source editing (syntax highighting a must, code completion would be nice.)
Currently I'm at a loss.

I tried RichTextEditor and ICSharpCode.TextEditor but both doesn't work for me.
I need a configurable editor that can handle XML, C# & SQL, support word-wrapping (where ICSharpCode.TextEditor failed) and that I can actually understand how to use (Which was the deciding point of not using RichTextEditor).

I would've gone with ScintillaNET but while I'm certain that it can support my needs, there isn't any documentation about using it.

The second control that I need is a TreeListView (you know, a tree with columns) but all the controls that I've found so far were buggy. (I tried everything that I found in Code Project

These UI problems are holding me from going on with the interesting stuff :-(

FUTURE POSTS

  1. Semantic image search in RavenDB - about one day from now

There are posts all the way to Jul 28, 2025

RECENT SERIES

  1. RavenDB 7.1 (7):
    11 Jul 2025 - The Gen AI release
  2. Production postmorterm (2):
    11 Jun 2025 - The rookie server's untimely promotion
  3. Webinar (7):
    05 Jun 2025 - Think inside the database
  4. Recording (16):
    29 May 2025 - RavenDB's Upcoming Optimizations Deep Dive
  5. RavenDB News (2):
    02 May 2025 - May 2025
View all series

Syndication

Main feed ... ...
Comments feed   ... ...
}