Click here to Skip to main content
15,887,331 members
Home / Discussions / C#
   

C#

 
QuestionHow to draw? Pin
MasterSharp29-Sep-07 11:06
MasterSharp29-Sep-07 11:06 
AnswerRe: How to draw? Pin
Lutosław29-Sep-07 11:28
Lutosław29-Sep-07 11:28 
AnswerRe: How to draw? Pin
Luc Pattyn29-Sep-07 11:45
sitebuilderLuc Pattyn29-Sep-07 11:45 
Questionerror : The left-hand side of an assignment must be a variable, property or indexer Pin
Landie11029-Sep-07 9:39
Landie11029-Sep-07 9:39 
AnswerRe: error : The left-hand side of an assignment must be a variable, property or indexer Pin
Colin Angus Mackay29-Sep-07 9:50
Colin Angus Mackay29-Sep-07 9:50 
GeneralRe: error : The left-hand side of an assignment must be a variable, property or indexer Pin
Landie11029-Sep-07 9:57
Landie11029-Sep-07 9:57 
GeneralRe: error : The left-hand side of an assignment must be a variable, property or indexer Pin
Colin Angus Mackay29-Sep-07 10:01
Colin Angus Mackay29-Sep-07 10:01 
GeneralRe: error : The left-hand side of an assignment must be a variable, property or indexer Pin
Landie11029-Sep-07 10:13
Landie11029-Sep-07 10:13 
this is the full code:

if (klantID > 0)
{
strSQL = "INSERT INTO [IBAX].[dbo].[klanten] ([klantOndNr],[klantNaam],[klantStraat]" +
",[klantPostcode],[klantGemeente],[klantLand],[klantContact],[klantTelefoon]" +
",[klantGSM],[klantFax],[klantEmail],[klantURL],[klantTaal]) VALUES (";
strSQL = strSQL + "'" + klantOndNr + "', '"
+ klantNaam + "', '"
+ klantStraat + "', '"
+ klantPostcode + "', '"
+ klantGemeente + "', '"
+ klantLand + "', '"
+ klantContact + "', '"
+ klantTelefoon + "', '"
+ klantGSM + "', '"
+ klantFax + "', '"
+ klantEmail + "', '"
+ klantURL + "', "
+ klantTaal + ")";
}
else
{
strSQL = "UPDATE [IBAX].[dbo].[klanten] SET [klantOndNr] = '" + klantOndNr
+ "', [klantNaam] = '" + klantNaam
+ "', [klantStraat] = '" + klantStraat
+ "', [klantPostcode] = '" = klantPostcode
+ "', [klantGemeente] = '" + klantGemeente
+ "', [klantLand] = '" + klantLand
+ "', [klantContact] = '" + klantContact
+ "', [klantTelefoon] = '" + klantTelefoon
+ "', [klantGSM] = '" + klantGSM
+ "', [klantFax] = '" + klantFax
+ "', [klantEmail] = '" + klantEmail
+ "', [klantURL] = '" + klantURL
+ "', [klantTaal] = " + klantTaal
+ " WHERE klantid = " + klantID;
}

GeneralRe: error : The left-hand side of an assignment must be a variable, property or indexer Pin
Landie11029-Sep-07 10:20
Landie11029-Sep-07 10:20 
AnswerRe: error : The left-hand side of an assignment must be a variable, property or indexer Pin
Guffa29-Sep-07 10:42
Guffa29-Sep-07 10:42 
GeneralRe: error : The left-hand side of an assignment must be a variable, property or indexer Pin
Colin Angus Mackay29-Sep-07 10:49
Colin Angus Mackay29-Sep-07 10:49 
GeneralRe: error : The left-hand side of an assignment must be a variable, property or indexer Pin
Christian Graus29-Sep-07 13:21
protectorChristian Graus29-Sep-07 13:21 
GeneralRe: error : The left-hand side of an assignment must be a variable, property or indexer Pin
Colin Angus Mackay29-Sep-07 13:26
Colin Angus Mackay29-Sep-07 13:26 
GeneralRe: error : The left-hand side of an assignment must be a variable, property or indexer Pin
Christian Graus29-Sep-07 13:54
protectorChristian Graus29-Sep-07 13:54 
GeneralRe: error : The left-hand side of an assignment must be a variable, property or indexer Pin
Colin Angus Mackay29-Sep-07 10:47
Colin Angus Mackay29-Sep-07 10:47 
GeneralRe: error : The left-hand side of an assignment must be a variable, property or indexer Pin
Landie1101-Oct-07 2:18
Landie1101-Oct-07 2:18 
QuestionHelp with Prining Pin
MumbleB29-Sep-07 9:39
MumbleB29-Sep-07 9:39 
AnswerRe: Help with Prining Pin
Lutosław29-Sep-07 10:51
Lutosław29-Sep-07 10:51 
GeneralRe: Help with Prining Pin
MumbleB29-Sep-07 11:44
MumbleB29-Sep-07 11:44 
GeneralRe: Help with Prining Pin
Lutosław29-Sep-07 12:21
Lutosław29-Sep-07 12:21 
GeneralRe: Help with Prining Pin
Paul Conrad29-Sep-07 13:09
professionalPaul Conrad29-Sep-07 13:09 
GeneralRe: Help with Prining Pin
MumbleB30-Sep-07 3:41
MumbleB30-Sep-07 3:41 
GeneralRe: Help with Prining Pin
Lutosław30-Sep-07 5:33
Lutosław30-Sep-07 5:33 
GeneralRe: Help with Prining Pin
MumbleB30-Sep-07 10:57
MumbleB30-Sep-07 10:57 
Questionbarcode Pin
k36madman29-Sep-07 8:12
k36madman29-Sep-07 8:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.