[Solved] - how to creat split row between 2 area

Hi,
How can i creat a split line to distinguish 2 regions without creat empty datarow?
Thanks you!



6 Replies 1 reply marked as answer

DV Duraimurugan Vedagiri Syncfusion Team June 4, 2020 08:48 AM UTC

Hi GirdLock,

We suggest our splitter control to achieve your reported requirement. Please refer the below UG, sample and video for your reference.

Sample: https://www.syncfusion.com/downloads/support/forum/154888/ze/Sample-1414999731.zip  

Video: https://www.syncfusion.com/downloads/support/forum/154888/ze/Splitter478272265.zip

UG : https://help.syncfusion.com/windowsforms/splitter/getting-started
 
If we misunderstood your query, kindly brief your requirement and let us know in which control you’re using to achieve this requirement.

Regards,
Durai

Marked as answer

TG The GridLock June 4, 2020 07:29 PM UTC

Hi Durai,
my form very small, it suitable for combobox , so maybe I'll use icons to differentiate them.


TG The GridLock June 4, 2020 09:27 PM UTC

Hi durai,
i set myform.topmost=true
if i using selectedindexchanging_event and when code running until e.cancel=true: then dropdownview will display under myform
 this problem can fix? (seems to be due to msgbox). I want the dropdown to close after e.cancel = true
sr my bad image:
Thanks!


In addition, it always runs msgbox () twice when e.cancel = true.

Private Sub sfMulticbbox_SelectedIndexChanging(sender As Object, e As SelectedIndexChangingArgs) Handles sfMulticbbox.SelectedIndexChanging
      msgboxInfo("....")
      e.Cancel = True
     return
end sub


DV Duraimurugan Vedagiri Syncfusion Team June 5, 2020 01:01 PM UTC

Hi GridLock,

Thanks for your update.

We suggest you to hook the MultiColumnComboBox.SelectedIndexChanging event handler in Form.Load event hanlder. Please refer the below code snippet and sample for your reference.

Code Snippet
Private Sub Form1_Load(ByVal sender As Object, ByVal e As EventArgs) 
    AddHandler Me.multiColumnComboBox1.SelectedIndexChanging, AddressOf MultiColumnComboBox1_SelectedIndexChanging 
End Sub 

Sample : https://www.syncfusion.com/downloads/support/forum/154888/ze/Sample-1467189904.zip

Regards,
Durai


TG The GridLock June 5, 2020 08:53 PM UTC

Hi Durai,
I will review this.


DV Duraimurugan Vedagiri Syncfusion Team June 8, 2020 11:14 AM UTC

Hi GridLock,

Thanks for your update.

We are looking forward to your confirmation.

Regards,
Durai

Loader.
Up arrow icon