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
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...
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...
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...
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...
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...
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...
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...
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...
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...
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() = {""}...
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 = ""...
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)...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.