Click here to Skip to main content
15,891,951 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionInfragestics using VB - Help Please! Pin
lavanya_satheesh10-Sep-07 21:31
lavanya_satheesh10-Sep-07 21:31 
AnswerRe: Infragestics using VB - Help Please! Pin
Tom Deketelaere10-Sep-07 23:45
professionalTom Deketelaere10-Sep-07 23:45 
GeneralRe: Infragestics using VB - Help Please! Pin
lavanya_satheesh12-Sep-07 0:44
lavanya_satheesh12-Sep-07 0:44 
Questionplotting graph Pin
saraswathy14310-Sep-07 20:44
saraswathy14310-Sep-07 20:44 
AnswerRe: plotting graph Pin
Christian Graus10-Sep-07 23:52
protectorChristian Graus10-Sep-07 23:52 
QuestionHow to Save changes in DataGridView into Database programmatically without using DataGridView Wizard Pin
vbDigger'z10-Sep-07 20:33
vbDigger'z10-Sep-07 20:33 
AnswerRe: How to Save changes in DataGridView into Database programmatically without using DataGridView Wizard Pin
rohitsrivastava10-Sep-07 23:34
rohitsrivastava10-Sep-07 23:34 
GeneralRe: How to Save changes in DataGridView into Database programmatically without using DataGridView Wizard [modified] Pin
vbDigger'z11-Sep-07 15:04
vbDigger'z11-Sep-07 15:04 
thanks for the reply... i appreciate that...

your connection is SQLConnection Type so i've a little convertion as OleDBConnection type because im using an .MDB database..

********************
Dim strinsert As String

oleConnection.ConnectionString = dbConnectionString
oleConnection.Open()
Dim i As Integer

For i = 0 To dgDailyTimeRecord.RowCount - 1
strinsert = "insert into tablename(fieldname1,fieldname2) values('" & dgvDailyTimeRecord.rows(i).cell(0).value & "', '" & dgvDailyTimeRecord.rows(i).cell(0).value & "')"

oleCommand = New OleDbCommand(strinsert, oleConnection)
oleCommand.ExecuteNonQuery()

Next
MessageBox.Show("Record Successfully Saved ")

********************

Thank you so much...

QuestionHow can I disable back and forward button in browser? Pin
Ashish Kumar Vyas10-Sep-07 20:32
Ashish Kumar Vyas10-Sep-07 20:32 
AnswerRe: How can I disable back and forward button in browser? Pin
Chetan Patel10-Sep-07 20:35
Chetan Patel10-Sep-07 20:35 
GeneralRe: How can I disable back and forward button in browser? Pin
Ashish Kumar Vyas10-Sep-07 20:48
Ashish Kumar Vyas10-Sep-07 20:48 
GeneralRe: How can I disable back and forward button in browser? Pin
Chetan Patel11-Sep-07 22:59
Chetan Patel11-Sep-07 22:59 
QuestionHow to get the list of all the PCs connected in a network Pin
tonymathewt10-Sep-07 18:49
professionaltonymathewt10-Sep-07 18:49 
Questionauto update database Pin
MidoYC10-Sep-07 18:48
MidoYC10-Sep-07 18:48 
AnswerRe: auto update database Pin
Paul Conrad30-Sep-07 13:43
professionalPaul Conrad30-Sep-07 13:43 
QuestionHow do i place my ocx in vb.net form Pin
Kolachana10-Sep-07 17:32
Kolachana10-Sep-07 17:32 
AnswerRe: How do i place my ocx in vb.net form Pin
Chetan Patel10-Sep-07 20:33
Chetan Patel10-Sep-07 20:33 
QuestionVB.NET Codefiles Pin
newbie1234567891010-Sep-07 15:53
newbie1234567891010-Sep-07 15:53 
AnswerRe: VB.NET Codefiles Pin
Chetan Patel10-Sep-07 20:31
Chetan Patel10-Sep-07 20:31 
QuestionRe: VB.NET Codefiles Pin
newbie1234567891011-Sep-07 5:47
newbie1234567891011-Sep-07 5:47 
AnswerRe: VB.NET Codefiles Pin
Chetan Patel11-Sep-07 23:10
Chetan Patel11-Sep-07 23:10 
GeneralRe: VB.NET Codefiles Pin
newbie1234567891012-Sep-07 3:19
newbie1234567891012-Sep-07 3:19 
QuestionGo Sub is gone how do I do it now? [modified] Pin
frankiebaby210-Sep-07 12:29
frankiebaby210-Sep-07 12:29 
AnswerRe: Go Sub is gone how do I do it now? Pin
Christian Graus10-Sep-07 13:15
protectorChristian Graus10-Sep-07 13:15 
GeneralRe: Go Sub is gone how do I do it now? [modified] Pin
frankiebaby210-Sep-07 13:55
frankiebaby210-Sep-07 13:55 

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.