Click here to Skip to main content
15,889,403 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: theming a usercontrol Pin
MatrixCoder7-May-07 17:49
MatrixCoder7-May-07 17:49 
GeneralRe: theming a usercontrol Pin
lee237-May-07 18:15
lee237-May-07 18:15 
GeneralRe: theming a usercontrol Pin
MatrixCoder7-May-07 18:27
MatrixCoder7-May-07 18:27 
QuestionMiddle Mouse Click "Autoscroll" in Webbrowser Pin
Syberaptor7-May-07 10:46
Syberaptor7-May-07 10:46 
AnswerRe: Middle Mouse Click "Autoscroll" in Webbrowser Pin
The ANZAC7-May-07 11:13
The ANZAC7-May-07 11:13 
GeneralRe: Middle Mouse Click "Autoscroll" in Webbrowser Pin
Syberaptor8-May-07 7:39
Syberaptor8-May-07 7:39 
GeneralRe: Middle Mouse Click "Autoscroll" in Webbrowser Pin
The ANZAC8-May-07 14:05
The ANZAC8-May-07 14:05 
QuestionExplanation Parameterised Queries Pin
keninfo7-May-07 10:21
keninfo7-May-07 10:21 
Is there anyone who can explain Parameterised Queries.
I don't get it where the parameters are related to.
How do i write an Updatecommand with parameters, i tried something but it does not work.

Dim command As System.Data.OleDb.OleDbCommand = New System.Data.OleDb.OleDbCommand("Update(Agent)" & _
" SET Nummer_Naam = @NummerNaam, Agentnummer = @AgentNummer, Agentnaam = @AgentNaam " & _
" WHERE(Agentnummer = @agentNummerOud)")

command.Parameters.Add("@NummerNaam", OleDb.OleDbType.VarChar, 20, "NummerNaam")
command.Parameters.Add("@AgentNummer", OleDb.OleDbType.Integer, 10, "AgentNummer")
command.Parameters.Add("@AgentNaam", OleDb.OleDbType.VarChar, 20, "AgentNaam")

Dim parameter As System.Data.OleDb.OleDbParameter = command.Parameters.Add( _
"@agentNummerOud", OleDb.OleDbType.Integer, 10, "AgentNummer")
parameter.SourceVersion = DataRowVersion.Original

daAgent.UpdateCommand = command

daAgent.Update(dsAgent)

AnswerRe: Explanation Parameterised Queries Pin
Colin Angus Mackay7-May-07 10:27
Colin Angus Mackay7-May-07 10:27 
GeneralRe: Explanation Parameterised Queries Pin
keninfo7-May-07 10:49
keninfo7-May-07 10:49 
GeneralRe: Explanation Parameterised Queries Pin
Colin Angus Mackay7-May-07 10:56
Colin Angus Mackay7-May-07 10:56 
GeneralRe: Explanation Parameterised Queries Pin
keninfo7-May-07 11:30
keninfo7-May-07 11:30 
GeneralRe: Explanation Parameterised Queries Pin
Colin Angus Mackay7-May-07 11:36
Colin Angus Mackay7-May-07 11:36 
QuestionHow to Import tab delimited text file into Sybase using VB.Net Pin
VB Prog7-May-07 9:46
VB Prog7-May-07 9:46 
AnswerRe: How to Import tab delimited text file into Sybase using VB.Net Pin
VB Prog9-May-07 6:36
VB Prog9-May-07 6:36 
QuestionVB.Net - XML into a DB Pin
ukfrosty7-May-07 7:38
ukfrosty7-May-07 7:38 
AnswerRe: VB.Net - XML into a DB Pin
MatrixCoder7-May-07 18:44
MatrixCoder7-May-07 18:44 
Questioni need to manage exceptions how can i ? Pin
Hasan Jaffal7-May-07 3:58
Hasan Jaffal7-May-07 3:58 
AnswerRe: i need to manage exceptions how can i ? Pin
Rupesh Kumar Swami7-May-07 4:30
Rupesh Kumar Swami7-May-07 4:30 
GeneralRe: i need to manage exceptions how can i ? Pin
Hasan Jaffal7-May-07 4:39
Hasan Jaffal7-May-07 4:39 
GeneralRe: i need to manage exceptions how can i ? Pin
Rupesh Kumar Swami7-May-07 4:49
Rupesh Kumar Swami7-May-07 4:49 
GeneralRe: i need to manage exceptions how can i ? Pin
Hasan Jaffal7-May-07 4:56
Hasan Jaffal7-May-07 4:56 
GeneralRe: i need to manage exceptions how can i ? Pin
Rupesh Kumar Swami7-May-07 5:03
Rupesh Kumar Swami7-May-07 5:03 
GeneralRe: i need to manage exceptions how can i ? Pin
Hasan Jaffal7-May-07 5:11
Hasan Jaffal7-May-07 5:11 
AnswerRe: i need to manage exceptions how can i ? Pin
Christian Graus7-May-07 13:07
protectorChristian Graus7-May-07 13:07 

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.