Forum: C# Mar 24th, 2009 |
| Replies: 5 Views: 585 To answer you questions about the different source files, if you're using Visual Studio, each time you add a new component to your solution (as explained by ddanbe above), it is placed in its own... |
Forum: C# Feb 20th, 2009 |
| Replies: 8 Views: 1,840 An easy approach would be to separate the values in the array by a comma before putting it into the database as a comma delimited string. Then when you bring it back from the database, just do a... |
Forum: C# Feb 13th, 2009 |
| Replies: 9 Views: 1,098 If I'm reading this correctly, it sounds like you just want to be able to manipulate the ListView on a Form from another class somewhere in your application. Have you tried making a public instance... |
Forum: C# Apr 25th, 2008 |
| Replies: 6 Views: 2,180 I've always run into issues with using the IDENTITY property in Access. If your using an autonumber, you could always just do something like:
SELECT MAX(autonumber_column_name) AS alias FROM... |