Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. annarene

    Finding what font my letters were created using....

    apepp: Thank you for your response. I wanted to see if this was at all possible..and sounds like it's not. Also, I checked out the link you sent and feel that may be helpful so I'll give it a try - thanks for sending. Thanks again, annarene
  2. annarene

    Finding what font my letters were created using....

    Hello. The art I work with is always letters. In illustrator, if my art is still in raster format (e.g. it hasn't been vectorized using create outlines yet), I can tell what font the art has been created using; however, once the art has been vectorized, there's no way to tell that I can find...
  3. annarene

    Anyway to display color for each item in DataGridViewComboBoxColumn

    Hi Qik3Coder - thanks for checking in w/ me. Last week I got pulled off the project for a few days in order to deal w/ something else; however, I'm back on it today so will be trying to see if I can get what you sent me to work. Thanks again for seeing how my project's going. I will be in...
  4. annarene

    Anyway to display color for each item in DataGridViewComboBoxColumn

    Hi Qik3Coder: I just now started looking at the code you sent...but wanted to say thank you. I'll give it a try and let you know how it turns out. Thanks again for spending time on it. Oh also, i now see your point about not needing the select case at all in my code above. Thanks for...
  5. annarene

    Anyway to display color for each item in DataGridViewComboBoxColumn

    Qik3Coder: makes sense what you're saying... here's my code thus far: Private Sub Showcolors() ''testing trying to add colors into the cboShowColors dropdown Dim myDB As New OleDb.OleDbConnection(sConnectionString) Dim myDA As New OleDb.OleDbDataAdapter("Select Color...
  6. annarene

    Anyway to display color for each item in DataGridViewComboBoxColumn

    Qik3Coder: Hello - thanks for your response to my post. ok...I've decided for now, to attempt to do this w/ a combo box that's not in the datagridview and see if I can get that to work first. Here's my code: 'testing trying to add colors into the cboShowColors dropdown Dim myDB As...
  7. annarene

    How to set selected index for DataGridViewTextBoxColumn

    Thanks again for you help. annarene
  8. annarene

    How to set selected index for DataGridViewTextBoxColumn

    Sorwen and Qik3Coder, thank you both for all the great input and responses. I did try to use the following as suggested: .DefaultCellStyle.NullValue = "Select" however, here's what I experienced when I did that: the page loads and the combos in the dg are set to "Select" ; this is...
  9. annarene

    How to set selected index for DataGridViewTextBoxColumn

    Hi Sorwen: Thanks for your reply. I just noticed that I put DataGridViewTextBoxColumn and I meant to put DataGridViewComboBoxColumn in my post. I apologize for my sloppy post. I wanted to set the selected index for each drop-down in my grid so when the form first loads, each drop-down is set...
  10. annarene

    How to set selected index for DataGridViewTextBoxColumn

    Hello: I'm currently working with an unbound datagridview and when the form loads, I populate the DataGridViewTextBoxColumns using code similar to this: I need to set the selected index and I'm not sure how to do this. I don't see a selectedIndex property for this control. Sub...
  11. annarene

    Anyway to display color for each item in DataGridViewComboBoxColumn

    Hello: I've been searching via the internet ...and don't think this is possible, but wanted to see if anyone here knows for sure. I have a datagridview that currently has a color column using DataGridViewComboBoxColumn drop-down...where as each item in the drop-down is a Color name: e.g. Red...
  12. annarene

    how to populate my unbound datagridview after update of a combo

    Thanks once again for your help. here's my code to clear it out: DataGridView1.Rows.Clear() Private Sub LoadDataGrid_New() Dim row0 As String() = {""} Dim row1 As String() = {""} Dim row2 As String() = {""} Dim row3 As String() = {""}...
  13. annarene

    how to populate my unbound datagridview after update of a combo

    Qik3Coder: you are absolutely right...when I started testing, I noticed that the last row of my grid wasn't clearing...so created a ClearForm function to call first. However, it's still not clearing out my grid. Here's my code: Private Sub ClearForm() txtState1.Text = ""...
  14. annarene

    how to populate my unbound datagridview after update of a combo

    Qik3Coder: thanks for your help.... I was able to make it work using the following code: Private Sub cboProfiles_SelectionChangeCommitted(ByVal sender As Object, ByVal e As System.EventArgs) Handles cboProfiles.SelectionChangeCommitted If Not IsNothing(cboProfiles.SelectedValue)...
  15. annarene

    how to populate my unbound datagridview after update of a combo

    Hello: I have an unbound datagridview and a seperate dropdown outside of the grid. When the user makes a selection from this dropdown, I would like to filter on their selection in order to repopulate my grid. I searched through all the postings in the forum but only found one post...
  16. annarene

    DataGridViewComboBoxColumn trying to populate every 3rd row with ds

    Qik3Coder: Thanks for your reply. I'm currently working on making it work w/ the info you provided. just wanted to say thanks.... annarene
  17. annarene

    DataGridViewComboBoxColumn trying to populate every 3rd row with ds

    Hello: this is my first window client server app in .net and have been assigned to create a form that contains a datagridview. I decided to leave it unbound, because I need it to populate in a slightly unconventional way. I also created each column and set them as drop-downs in the designer...

Part and Inventory Search

Back
Top