Forum: VB.NET Feb 24th, 2008 |
| Replies: 9 Views: 7,039 No, defined as per your code, because I copied it and pasted it in ? |
Forum: VB.NET Feb 24th, 2008 |
| Replies: 9 Views: 7,039 Hi
I get "value of type 'Integer' cannot be converted tp '1 dimensional array of Char" with the following line of code when attempting to define the columns as suggested: -
arrstrFunctionalArea... |
Forum: VB.NET Feb 21st, 2008 |
| Replies: 5 Views: 4,209 A view is like a table, so wouldn't you need to SELECT data from it ? |
Forum: VB.NET Feb 21st, 2008 |
| Replies: 9 Views: 7,039 Hi
Thanks.
I understand the concept of that article to add a column with a checkbox, but I have the following code which populates the data grid from my SQL query. I end up with several... |
Forum: VB.NET Feb 20th, 2008 |
| Replies: 9 Views: 7,039 Any ideas guys, as I'm struggling to find anything on this? |
Forum: VB.NET Feb 18th, 2008 |
| Replies: 9 Views: 7,039 Hi
Thanks for your response, but I think you misunderstand my requirement..
I have it displaying yes or no as it is passed in 1 or 0 from the sql query.
What I want to do is change the... |
Forum: VB.NET Feb 18th, 2008 |
| Replies: 9 Views: 7,039 Hi
I've populates a DataGridView from the results of a SQL query programmatically, so I haven't had to define the number of columns, etc.
Just before I display it, I'd like to change the... |
Forum: VB.NET Feb 18th, 2008 |
| Replies: 3 Views: 5,881 Thanks.
That's done the trick. |
Forum: VB.NET Feb 15th, 2008 |
| Replies: 3 Views: 5,881 Hi
Can you change the alignment of text ion a datagridview column programmatically ?
i.e. Columns(0).?????????????????.MiddleCenter
as I dont want to centre align all of the columns in the... |
Forum: VB.NET Jan 28th, 2008 |
| Replies: 12 Views: 10,761 Could yoo expand on that a little more. Sorry, I'm being realy dense with this.
Where doe the Delegate Sub....... need toi go in the code?
And the remainder of the code you have listed, where... |
Forum: VB.NET Jan 27th, 2008 |
| Replies: 12 Views: 10,761 Tried that.
Don't have a clue what it's doing.
Just don't understand this concept whatsoever. |
Forum: VB.NET Jan 27th, 2008 |
| Replies: 12 Views: 10,761 Hi
Just noticed that the call to my lengthy process in the button click event is commented out. Obviously this wasn't the case when I was testing it.
Thanks
Andrew |
Forum: VB.NET Jan 27th, 2008 |
| Replies: 12 Views: 10,761 Code for my button click event.
Private Sub btnGo1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnGo1.Click
aiidb2.ExcludeDuplicates = False
... |
Forum: VB.NET Jan 27th, 2008 |
| Replies: 12 Views: 10,761 Hi
Thanks for the help so far, but I'm still struggling with this I'm afraid.
I have the "lengthy process" running in a thread that is called from a button click on the front end main form... |
Forum: VB.NET Jan 24th, 2008 |
| Replies: 12 Views: 10,761 I think I can manage the RaiseEvent and get it to do some visuals on the form, however, how do I make it call back to th UI to perform updates on the UI.
I have already ran it in a thread and... |
Forum: VB.NET Jan 23rd, 2008 |
| Replies: 12 Views: 10,761 Hi
I've developed an app that reads in a csv file, strips it out to its component fields, validates them and writes it up to the database.
So far, so good.
I now want to enhance it so that... |