Forum: VB.NET Aug 5th, 2009 |
| Replies: 4 Views: 213 Have you tried taking renamed "Colour Name" to something like "ColourName"? It might not like the space. |
Forum: C# Mar 24th, 2009 |
| Replies: 5 Views: 631 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: ASP.NET Feb 24th, 2009 |
| Replies: 5 Views: 658 Get rid of the surrounding ' for the values in your insert statement.
INSERT INTO DataStatus(CedantID, CompanyType, CompanyName, TypeOfFile, FileName,Reportingperiod) VALUES ('@CedantID',... |
Forum: C# Feb 20th, 2009 |
| Replies: 8 Views: 1,970 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: VB.NET Feb 20th, 2009 |
| Replies: 2 Views: 735 You would probably have to play with the count and where the message box is displayed to get this to be exactly what you want, but I think something like this should work.
Public Class Form1
... |
Forum: C# Feb 13th, 2009 |
| Replies: 9 Views: 1,157 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: Python Jan 9th, 2009 |
| Replies: 8 Views: 527 I actually just started to pick Python back up a couple of days ago. What has probably helped me most is going through the problems at Project Euler (http://www.projecteuler.net/). It's a great way... |
Forum: VB.NET Nov 26th, 2008 |
| Replies: 3 Views: 1,105 I'm assuming you want to check the values before making the call to the FV function. If that's the case, you could accomplish what you're trying to do with three simple if statements. Something like... |
Forum: Database Design Apr 30th, 2008 |
| Replies: 3 Views: 1,626 Do some research on normalization.
You might want to consider a simple setup where you have three tables.
Menu
MenuID (Primary Key)
MenuOutlet
Starter
StarterID (Primary Key) |
Forum: C# Apr 25th, 2008 |
| Replies: 6 Views: 2,227 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... |