Forum: VB.NET Aug 16th, 2009 |
| Replies: 2 Views: 196 I've been reading about delegates and don't see how this answers my question? |
Forum: VB.NET Aug 16th, 2009 |
| Replies: 2 Views: 261 hm I don't see how inheritance shows me how to make a List(of abstractClass) and fill it with DerivedClass and then use DerivedClass operatons? |
Forum: VB.NET Aug 14th, 2009 |
| Replies: 2 Views: 261 I have a superclass NetworkTest and 3 derived classes PingTest, Pop3Test, SMTPTest. I want to create a big list of all the tests, like this:
Dim Tests As New List(Of NetworkTest)
Dim... |
Forum: VB.NET Aug 14th, 2009 |
| Replies: 2 Views: 196 I have an abstract class NetworkTest and some derived classes PingTest, SMTPTest, and POP3Test. Each Test class overrides a Run() function and has it's own private member variables.
I have a txt... |
Forum: VB.NET Aug 9th, 2009 |
| Replies: 3 Views: 1,128 Ah, this does exactly what I want!
http://www.vbdotnetheaven.com/UploadFile/mahesh/MultiColumnListViewControl04252005023924AM/MultiColumnListViewControl.aspx
Not sure if the colors can be... |
Forum: VB.NET Aug 8th, 2009 |
| Replies: 3 Views: 1,128 Hm I tried setting AutoSizeMode to GrowAndShrink and docking was indeed off, but still getting a really goofy result:
http://rpi.edu/~doriad/TableLayoutPanel.zip
I'd be all for a... |
Forum: VB.NET Aug 8th, 2009 |
| Replies: 3 Views: 1,128 (As a warning - if at any point you think "umm why don't you just use X to get your 2 column display - I'm all for that! This is the only way I came up with).
I want to end up nice looking display... |
Forum: VB.NET Mar 8th, 2009 |
| Replies: 0 Views: 218 I have two functions: GetDayTime and GetLunchTime. From some places in the program, all I have is the associate name and a date and I want to determine these quantities. So I just query the... |
Forum: VB.NET Mar 7th, 2009 |
| Replies: 5 Views: 1,261 I got it to work... shouldn't have been this difficult to figure out.
The key was to use the filter() method of the binding source, rather than setting the DataGridView datasource to the select()... |
Forum: VB.NET Mar 6th, 2009 |
| Replies: 5 Views: 1,261 So you can actually change the row index of a row in a table?
I mentioned I tried calling acceptchanges after deleting the row with no change, which does seem odd? |
Forum: VB.NET Mar 5th, 2009 |
| Replies: 5 Views: 1,261 I have a delete button which does this:
TTDataSet.PunchEventTable.Rows(dgvData.SelectedRows(0).Index).Delete()
The problem is that if I delete row 0 (the 0th index in the... |
Forum: VB.NET Mar 2nd, 2009 |
| Replies: 3 Views: 366 I'm not sure how to do this, but looks like this is what you want:
http://www.devx.com/vb2themax/Tip/18773 |
Forum: VB.NET Mar 1st, 2009 |
| Replies: 0 Views: 263 I have a program with about 20 forms, almost all of which use the data from a tables in a dataset (from a datasource I added to the project). So I have made a global variable in a module:
Public... |
Forum: VB.NET Feb 28th, 2009 |
| Replies: 0 Views: 453 I have a typed datatable that I am viewing part of with a datagridview
dgvData.DataSource = TTData.PunchEventTable.Select(FilterString, SortString)
My question is how do I delete the row... |
Forum: VB.NET Feb 16th, 2009 |
| Replies: 1 Views: 375 I am trying to make a simple demo of a DataGridView bound to a database table. I want to add a row, delete a row, and save the table.
I used the IDE to do just about everything. It created the... |
Forum: VB.NET Jan 4th, 2009 |
| Replies: 1 Views: 3,837 Please wrap your code in code tags.
I think you have to explicitly define an update command for the data adapter. |
Forum: VB.NET Jan 3rd, 2009 |
| Replies: 2 Views: 2,939 I agree, I have been unable to find anything good about this so far! |