Viewing 4 posts - 1 through 4 (of 4 total)
Put a breakpoint after those lines and will see your quotes are in the wrong place.
Me.Discharged_.Value = 0
Evaluates to True or False. If discharged is a number then you...
July 5, 2006 at 7:02 am
Shouldn't this
"insert into Artistas (nome_cd)" + "values(sNomCD)"
be
"insert into Artistas (nome_cd) values('" + sNomCD + "')"
You are inserting the string sNomCD and not the contents of that variable and it...
August 9, 2005 at 2:00 am
I think he/she has two tables with autonumbers and another one using these numbers to relate the records. Which is why it's a bit crucial to keep the...
July 26, 2005 at 11:30 am
You need to replace a single quote with a double one. How you do this depends on the language you are using, but Replace works fine in VB.
June 10, 2005 at 1:46 am
Viewing 4 posts - 1 through 4 (of 4 total)