Search results for query: *

  1. B

    Help in formating datagridview columns

    Hi all I have one DataSet bind to a one DGV. And in a Sub i have the code that formats the DGV columns. Something like this This works just fine. dgJogos.Columns(4).SortMode = DataGridViewColumnSortMode.NotSortable dgJogos.Columns(4).Width = 140...
  2. B

    Question combo box selected saved item not diplayed

    And why not. Send me a private message or an email and i will try to help you out.
  3. B

    Question combo box selected saved item not diplayed

    Sorry you are right lol the code i gave to you will no work. It was a very rapidly answer. Any way.. Your code is very long and hard to decipher becose you are the one who is accustumed to see it and work with it and for you is simple to understand. For me is a little hard to see it, and even...
  4. B

    Question combo box selected saved item not diplayed

    if you really want to set your saved teacher at the cbo index 0 then you shloud reorder the table("TeachersName") and set the saved teacher to de index 0 of this dataset table then since your cbo is bind to this dataset table your saved teacher will be at the cbo index 0 and then on Load From...
  5. B

    Question combo box selected saved item not diplayed

    Hi there If i do understand correctly, all you want is to display your saved teacher on the combo box. Right? Since you know exactly that your saved teacher is on the cbo items colection you can directly put the cbo to show your saved teacher like this cbo.SelectedIndex = saved_teacher by doing...
  6. B

    prevent dotted gray line appear

    Hi there! I wish to know if is possible when TAB key is pressed, to prevent that the dotted gray line around itself appears Thank you
  7. B

    sort ContextMenuStrip items?

    The collection in firts place is already sorted but some items are added later... Thank you i will see you advise
  8. B

    sort ContextMenuStrip items?

    How to sort the ContextMenuStrip.Items
  9. B

    Question ContextMenu - which control?

    Thank you it'is working ;) very nice
  10. B

    Question ContextMenu - which control?

    Hi everyone I'm developing a program where i have 8 Labels. In my code i created an ContextMenuStrip which i full fill with 16 items. And then i associate all my Labels to the ContextMenuStrip. Now is the complicated thing to me... I want to know which one of my label starts up the...
Back
Top