Forum: VB.NET Sep 1st, 2005 |
| Replies: 3 Views: 7,356 Correct me if I am wrong, but I thought you had to specify the location as well as the report name? i.e. using the UNC for file location.
See link: LINKY! ... |
Forum: VB.NET Jul 11th, 2005 |
| Replies: 6 Views: 7,328 This is not an updated version of VB 6. Visual Basic 6 is done, everything from Microsoft standpoint is moving towards .NET. The latest being .NET 2.0 (currently non-beta is .NET 1.1) and Visual... |
Forum: VB.NET Jun 30th, 2005 |
| Replies: 11 Views: 13,279 Try adding for each parameter, before the value assignment :
objParam.Direction = ParameterDirection.Input
Replace objParam with your parameter variable(s).
That may solve the problem |
Forum: VB.NET Jun 28th, 2005 |
| Replies: 11 Views: 13,279 FYI
By the way you do not add the [Software #] = @SoftwareNum into your Update Statement. It is your Primary Key value, so you wouldn't be updating it on the fly when using a where clause. Not... |
Forum: VB.NET Jun 28th, 2005 |
| Replies: 11 Views: 13,279 Well first off you have the second parameter of the Add Method containing the value you are passing in, and not the datatype. And you have not created any Parameter Objects , to store those parameter... |