Click here to Skip to main content
15,890,282 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
QuestionStarting Processes Under Current Logged in User Pin
Tristan Rhodes3-Jul-09 0:59
Tristan Rhodes3-Jul-09 0:59 
QuestionDollar value Pin
ksss_maheshece2-Jul-09 23:49
ksss_maheshece2-Jul-09 23:49 
AnswerRe: Dollar value Pin
K03063-Jul-09 0:15
K03063-Jul-09 0:15 
GeneralRe: Dollar value Pin
ksss_maheshece3-Jul-09 0:31
ksss_maheshece3-Jul-09 0:31 
QuestionDatabinding to ToolstripcomboBox in ToolstripDropdown Pin
ShweBo2-Jul-09 18:24
ShweBo2-Jul-09 18:24 
AnswerRe: Databinding to ToolstripcomboBox in ToolstripDropdown Pin
Arindam Sinha3-Jul-09 20:41
Arindam Sinha3-Jul-09 20:41 
AnswerRe: Databinding to ToolstripcomboBox in ToolstripDropdown Pin
Infarkt4-Jul-09 11:54
Infarkt4-Jul-09 11:54 
AnswerRe: Databinding to ToolstripcomboBox in ToolstripDropdown Pin
ShweBo8-Jul-09 0:37
ShweBo8-Jul-09 0:37 
Hi Infarkt!

Much appreciate for your advice. Smile | :)
I didn't notice that I've to assign it's binding context, that wasn't require in WinForms ComboBox.
Finally I solve the problem with following snippet.

Dim cb As ComboBox = DirectCast(tspcbxTest.Control, ComboBox)
With cb
 .BindingContext = Me.BindingContext()
 .FormattingEnabled = True
 .DisplayMember = "Column_to_Dispaly"
 .ValueMember = "ID"
 'I declared new BindingSource so it doesn't relate to another control(s) with same BindingSource
 Dim bs As New BindingSource(Me.Table1BindingSource, "")
 .DataSource = bs
 bs.Sort = "Column_to_sort_1,Column_to_sort_2,blah,blah"
 Me.Table1TableAdapter.Fill(Me.DataSet1.Table1)
bs = Nothing


Thank you.
GeneralRe: Databinding to ToolstripcomboBox in ToolstripDropdown Pin
ShweBo8-Jul-09 0:40
ShweBo8-Jul-09 0:40 
QuestionHow to disable mouse capture Pin
PIEBALDconsult2-Jul-09 7:09
mvePIEBALDconsult2-Jul-09 7:09 
AnswerRe: How to disable mouse capture Pin
Henry Minute3-Jul-09 0:17
Henry Minute3-Jul-09 0:17 
GeneralRe: How to disable mouse capture Pin
PIEBALDconsult3-Jul-09 5:46
mvePIEBALDconsult3-Jul-09 5:46 
QuestionGetting the Installation root directory from inside an Installer Pin
Tristan Rhodes2-Jul-09 6:34
Tristan Rhodes2-Jul-09 6:34 
AnswerRe: Getting the Installation root directory from inside an Installer Pin
Moim Hossain2-Jul-09 20:43
Moim Hossain2-Jul-09 20:43 
AnswerRe: Getting the Installation root directory from inside an Installer Pin
Jack Vanderhorst11-Jul-09 3:54
Jack Vanderhorst11-Jul-09 3:54 
QuestionHow To Check If An Mdi Child Form Is Already Open? Pin
thyrith2-Jul-09 3:41
thyrith2-Jul-09 3:41 
AnswerRe: How To Check If An Mdi Child Form Is Already Open? Pin
DaveyM692-Jul-09 3:53
professionalDaveyM692-Jul-09 3:53 
AnswerRe: How To Check If An Mdi Child Form Is Already Open? Pin
Dave Kreskowiak2-Jul-09 8:49
mveDave Kreskowiak2-Jul-09 8:49 
GeneralRe: How To Check If An Mdi Child Form Is Already Open? Pin
SilimSayo3-Jul-09 3:47
SilimSayo3-Jul-09 3:47 
GeneralRe: How To Check If An Mdi Child Form Is Already Open? Pin
Dave Kreskowiak3-Jul-09 6:40
mveDave Kreskowiak3-Jul-09 6:40 
GeneralRe: How To Check If An Mdi Child Form Is Already Open? Pin
SilimSayo4-Jul-09 11:37
SilimSayo4-Jul-09 11:37 
GeneralRe: How To Check If An Mdi Child Form Is Already Open? Pin
Dave Kreskowiak5-Jul-09 15:57
mveDave Kreskowiak5-Jul-09 15:57 
AnswerRe: How To Check If An Mdi Child Form Is Already Open? Pin
Jack Vanderhorst3-Jul-09 14:34
Jack Vanderhorst3-Jul-09 14:34 
QuestionProblem while assigning stored procedure from a different schema to sql datasource Pin
tonymathewt2-Jul-09 2:46
professionaltonymathewt2-Jul-09 2:46 
QuestionRe: Problem while assigning stored procedure from a different schema to sql datasource Pin
led mike2-Jul-09 4:40
led mike2-Jul-09 4:40 

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.