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

.NET (Core and Framework)

 
GeneralRe: I can install vsextwfx.msi Pin
Ernest Laurentin9-May-07 5:08
Ernest Laurentin9-May-07 5:08 
Questioncombobox abnormally fires events when scrollbar is used on .NET 1.1 [modified] Pin
lecerf8-May-07 21:23
lecerf8-May-07 21:23 
AnswerRe: combobox abnormally fires events when scrollbar is used on .NET 1.1 Pin
Sylvester george8-May-07 22:56
Sylvester george8-May-07 22:56 
GeneralRe: combobox abnormally fires events when scrollbar is used on .NET 1.1 Pin
lecerf8-May-07 23:27
lecerf8-May-07 23:27 
GeneralRe: combobox abnormally fires events when scrollbar is used on .NET 1.1 Pin
Sylvester george8-May-07 23:35
Sylvester george8-May-07 23:35 
GeneralRe: combobox abnormally fires events when scrollbar is used on .NET 1.1 Pin
lecerf9-May-07 0:22
lecerf9-May-07 0:22 
GeneralRe: combobox abnormally fires events when scrollbar is used on .NET 1.1 Pin
SimulationofSai9-May-07 21:15
SimulationofSai9-May-07 21:15 
AnswerRe: combobox abnormally fires events when scrollbar is used on .NET 1.1 Pin
lecerf10-May-07 0:07
lecerf10-May-07 0:07 
Thank you for your answer.

This is a bugging code sample :

        Dim DV As DataView<br />
        Dim DVRow As DataRowView<br />
<br />
        DV = ADO_BDGlobale.Tables(NOM_TBL_Enseigne).DefaultView<br />
        DVRow = DV.AddNew<br />
        DVRow("Libelle_Long") = " Toutes les enseignes"<br />
        DVRow("Cod_Enseigne") = 0<br />
        DV.Sort = "Cod_Enseigne"<br />
        Me.ComboBox_PanelPV_Enseigne.DisplayMember = "Libelle_Long"<br />
        Me.ComboBox_PanelPV_Enseigne.ValueMember = "Cod_Enseigne"<br />
        Me.ComboBox_PanelPV_Enseigne.DataSource = DV<br />


1) The bug described before occurs (abnormal events during interaction with scrollbar)
2) The combobox item list does not get sorted first Confused | :confused: . After a few selections without the scrollbar, the combobox item list finally gets sorted (D'Oh! | :doh: !!!).

This is another simplified bugging code sample :

DV = ADO_BDGlobale.Tables(NOM_TBL_Enseigne).DefaultView<br />
Me.ComboBox_PanelPV_Enseigne.DisplayMember = "Libelle_Long"<br />
Me.ComboBox_PanelPV_Enseigne.ValueMember = "Cod_Enseigne"<br />
Me.ComboBox_PanelPV_Enseigne.DataSource = DV<br />


Binding to a dataview or a datatable, and no element at index 0, the event bug occurs with the scrollbar when it is scrolled until the end of the list.

The case looks desperate... Dead | X|
QuestionRe: combobox abnormally fires events when scrollbar is used on .NET 1.1 Pin
lecerf14-May-07 22:59
lecerf14-May-07 22:59 
Questionconfiguration connectionstrings Pin
wolfb8-May-07 3:38
wolfb8-May-07 3:38 
AnswerRe: configuration connectionstrings Pin
SimulationofSai8-May-07 4:10
SimulationofSai8-May-07 4:10 
GeneralRe: configuration connectionstrings Pin
wolfb8-May-07 4:44
wolfb8-May-07 4:44 
GeneralRe: configuration connectionstrings Pin
wolfb8-May-07 6:19
wolfb8-May-07 6:19 
GeneralRe: configuration connectionstrings Pin
Dave Kreskowiak8-May-07 6:42
mveDave Kreskowiak8-May-07 6:42 
GeneralRe: configuration connectionstrings Pin
wolfb8-May-07 7:05
wolfb8-May-07 7:05 
GeneralRe: configuration connectionstrings Pin
Dave Kreskowiak8-May-07 7:23
mveDave Kreskowiak8-May-07 7:23 
GeneralRe: configuration connectionstrings Pin
wolfb8-May-07 7:40
wolfb8-May-07 7:40 
GeneralRe: configuration connectionstrings Pin
SimulationofSai8-May-07 21:27
SimulationofSai8-May-07 21:27 
AnswerRe: configuration connectionstrings Pin
kubben9-May-07 14:39
kubben9-May-07 14:39 
QuestionIs rebuilding changes the version of setup and deployment project Pin
Anhad7-May-07 23:02
Anhad7-May-07 23:02 
Questioncomponent authoring/architectures - et al Pin
urbane.tiger7-May-07 20:42
urbane.tiger7-May-07 20:42 
QuestionIndexing Folders on network Pin
kaushik_Manoj7-May-07 18:24
kaushik_Manoj7-May-07 18:24 
QuestionQuestion about Thread.Sleep() Pin
Tristan Rhodes7-May-07 10:45
Tristan Rhodes7-May-07 10:45 
AnswerRe: Question about Thread.Sleep() Pin
Wilco07-May-07 11:03
Wilco07-May-07 11:03 
GeneralRe: Question about Thread.Sleep() Pin
Tristan Rhodes7-May-07 11:14
Tristan Rhodes7-May-07 11:14 

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.