Questions tagged [splitter]

Splitters are special windows/controls that are used to split another window/frame to subwindows. Usually splitters can be dragged so the subwindows are resized.

245 questions
24
votes
8 answers

NoSuchMethodError exception when using com.google.common.base.Splitter

I'm trying to use com.google.common.base.Splitter as follows Iterable segs = Splitter.on("/").split("one/two/three/four/five"); for (String seg : segs) { System.out.println(seg); } However, I'm seeing the following exception: Exception…
mip
  • 1,886
  • 8
  • 26
  • 32
22
votes
3 answers

How do I get a TextBox to fill a resizable column?

I'm trying to get a TextBox to fill the available space in a resizable column. The TextBox is part of a user control:
imekon
  • 1,501
  • 4
  • 22
  • 39
13
votes
4 answers

How to initialize the splitter handle position?

I want to initialize the splitter handle position like the following instead of in the middle. I cannot set it in the property. How to solve this?
Casper
  • 4,435
  • 10
  • 41
  • 72
11
votes
4 answers

How to create splitter containing components?

I'd like to put some buttons between two resizable panels or directly on the splitter if possible. How do I achieve they will move along with the splitter; how do I anchor them ? Edit: Maybe the most important thing I forgot to mention. That…
user532231
10
votes
2 answers

How to use two TSplitter with different aligns (Horizontal and Vertical)?

I have a form with three sections, and I want to allow the users to resize them as they please There is one section on the left (which take the whole height) and one on the right that is again cut in two vertically. See…
Lepidosteus
  • 11,779
  • 4
  • 39
  • 51
9
votes
4 answers

How to split sql in MAC OSX?

Is there any app for mac to split sql files or even script? I have a large files which i have to upload it to hosting that doesn't support files over 8 MB. *I don't have SSH access
user3067592
  • 351
  • 2
  • 4
  • 15
8
votes
2 answers

Unwanted form size growing on TSplitter move when Panel1.Constraints.MinHeight is set

I have this type of situation (see image), now when I move Splitter1 up in run-time, Panel2 height grows and also Form1 height grows. But I need to know and block this type of event, when Splitter1 can't be moved up because of…
NevTon
  • 265
  • 3
  • 15
7
votes
3 answers

How to make TableLayoutPanel with resizable cells like using Splitter

Got TableLayoutPanel with 1 column and N rows needed to cells be resizable with somthing like Splitter component between cells. without using SplitContainer. May be any other idea without TableLayoutPanel?
E.Monogarov
  • 460
  • 8
  • 17
7
votes
5 answers

WinForms: Alternative to SplitContainer?

Are there any alternative controls someone can suggest to replace the WinForms SplitContainer? I don't like how the SplitContainer shows that weird, dotted strip when its selected and when its being dragged. I want to have the panels re-size as the…
Telanor
  • 4,419
  • 6
  • 29
  • 36
6
votes
1 answer
5
votes
3 answers

Fix for jQuery splitter in IE9

Update: This issue is with regards to multiple pane splitter which was working fine in all browsers except IE9. The widths for the right pane children do not resize accordingly upon window resize. (In the context of my application, I also had to…
bcm
  • 5,470
  • 10
  • 59
  • 92
5
votes
3 answers

Why is my TSplitter in the wrong place?

I've got a dialog that's laid out something like this: --------------------------------------------- | | | CONFIG AREA | | Align: alTop …
Mason Wheeler
  • 82,511
  • 50
  • 270
  • 477
5
votes
1 answer

Change Splitter Highlighting/Resize Line

I noticed when I resize an element in Visual Studio the Splitter Line is painted in a solid transparent black like this: However in my own Winforms application I get this resize line: I am wondering how I can change the painting of this resize…
Thomas
  • 677
  • 1
  • 5
  • 19
5
votes
1 answer

How to keep controls visible in the form when using a splitter?

On a form, I have two large controls and a TSplitter between them. The control on the top is aligned to the top and the control on the bottom is aligned to the client. So when I resize the form, the control on the top remains the same height while…
Jerry Dodge
  • 26,858
  • 31
  • 155
  • 327
5
votes
3 answers

SplitContainer splitter in C#?

i am using a split container. For some reason, the splitter looks like this: It is very hard to see. It is the faint 2 lines in the middle of the two black lines. How do i fix this issue and add a filling between the two lines? I am using Fixed…
Hunter Mitchell
  • 7,063
  • 18
  • 69
  • 116
1
2 3
16 17