Forum: VB.NET Jul 7th, 2005 |
| Replies: 10 Views: 11,684 Could I see some code? Maybe post some in code tags? Thanks. ;) |
Forum: VB.NET Jul 6th, 2005 |
| Replies: 3 Views: 10,372 Yep, having a default value for drop down lists is a good habit to get into I think. Try code something like this:
Dim rdrCategory As SqlDataReader
myConnection.Open()
rdrCategory =... |
Forum: VB.NET Jul 6th, 2005 |
| Replies: 4 Views: 2,262 He's right man, you can't expect that anyone is going to bail you out just because you beg and use exclamation marks. Work it out, this stuff isn't easy, you gotta earn it. Come up with some code,... |
Forum: VB.NET Jul 6th, 2005 |
| Replies: 11 Views: 13,239 Well, after much effort I have stumbled on the solution. The problem was merely that my update statement, composed of a number of string parameters needed to have single quotes around each item. ... |
Forum: VB.NET Jun 30th, 2005 |
| Replies: 2 Views: 7,687 myConnection.Close() for each connection |
Forum: VB.NET Jun 30th, 2005 |
| Replies: 3 Views: 15,905 Correct me if I'm wrong, but I believe you can simply use the public property "font" for this, as in "MyControl.Font.Style" Or "FontStyle.Bold". |
Forum: VB.NET Jun 30th, 2005 |
| Replies: 11 Views: 13,239 OK, I'm back with modified code- but no dice. Same error. I changed the parameter entry stuff according to Paladine's advice, and I got my debugger working, and checked all 10 of my parameters-... |
Forum: VB.NET Jun 29th, 2005 |
| Replies: 11 Views: 13,239 Thank you all for your time in replying to my question. I am bogged down today, working on switching some servers from Novell to Windows NT (hooray!), ;) but hopefully I'll be able to address... |
Forum: VB.NET Jun 27th, 2005 |
| Replies: 11 Views: 13,239 This may clarify, I changed the UPDATE statement to be more accurate, what you see before each parameter there is the actual column names, many in brackets b/c they would otherwise be illegal in VB... |
Forum: VB.NET Jun 27th, 2005 |
| Replies: 11 Views: 13,239 OK, yeah u guessed it. VBnoob here. Like so many other poor souls, lost in a sea of code...heres the dealio-
I know param's need to be completely done and in the correct order for... |