Click here to Skip to main content
15,905,073 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: sql statement ignored Pin
Christian Graus21-Aug-08 0:07
protectorChristian Graus21-Aug-08 0:07 
GeneralRe: sql statement ignored [modified] Pin
peanutong21-Aug-08 0:39
peanutong21-Aug-08 0:39 
GeneralRe: sql statement ignored Pin
Christian Graus21-Aug-08 0:49
protectorChristian Graus21-Aug-08 0:49 
GeneralRe: sql statement ignored Pin
peanutong21-Aug-08 0:54
peanutong21-Aug-08 0:54 
GeneralRe: sql statement ignored Pin
Christian Graus21-Aug-08 1:17
protectorChristian Graus21-Aug-08 1:17 
GeneralRe: sql statement ignored Pin
peanutong21-Aug-08 1:19
peanutong21-Aug-08 1:19 
GeneralRe: sql statement ignored Pin
Christian Graus21-Aug-08 1:31
protectorChristian Graus21-Aug-08 1:31 
QuestionNeed Help!! DataGridView can't save Pin
Ultrajet20-Aug-08 23:29
Ultrajet20-Aug-08 23:29 
I'm doing a masterdetail form, so far when you typed the data in the detailed form and datagridview, it works, but the moment you save it and load it again nothing appears in the datagridview, but the one in the detailed form works properly

here is the code I used:
  Private Sub FrmMain_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Me.OrderIDTableAdapter.Fill(Me.Database1DataSet.OrderID)
        Me.ProductsTableAdapter.Fill(Me.Database1DataSet.Products)
    End Sub

Private Sub ProductsBindingNavigatorSaveItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ProductsBindingNavigatorSaveItem.Click
        If Validate() Then
            ProductsBindingSource.EndEdit()
            OrderIDBindingSource.EndEdit()
            Try
                Me.OrderIDTableAdapter.Update(Me.Database1DataSet.OrderID.Select("", "", DataViewRowState.Deleted))
                ProductsTableAdapter.Update(Me.Database1DataSet.Products.Select("", "", DataViewRowState.Added Or _
                DataViewRowState.ModifiedCurrent Or DataViewRowState.Deleted))
                Me.OrderIDTableAdapter.Update(Me.Database1DataSet.Products.Select("", "", DataViewRowState.Added Or _
                DataViewRowState.ModifiedCurrent Or DataViewRowState.Deleted))
            Catch ex As Exception
                MessageBox.Show(ex.Message)
            End Try
        End If

    End Sub

Questionsql update sum Pin
maytel mynt20-Aug-08 22:04
maytel mynt20-Aug-08 22:04 
AnswerRe: sql update sum Pin
Christian Graus20-Aug-08 22:26
protectorChristian Graus20-Aug-08 22:26 
AnswerRe: sql update sum Pin
astanton197821-Aug-08 9:48
astanton197821-Aug-08 9:48 
GeneralRe: sql update sum Pin
maytel mynt21-Aug-08 15:13
maytel mynt21-Aug-08 15:13 
QuestionDLL Pin
karthigachawla20-Aug-08 18:55
karthigachawla20-Aug-08 18:55 
AnswerRe: DLL Pin
Mycroft Holmes20-Aug-08 19:10
professionalMycroft Holmes20-Aug-08 19:10 
GeneralRe: DLL Pin
Paul Conrad21-Aug-08 18:44
professionalPaul Conrad21-Aug-08 18:44 
AnswerRe: DLL Pin
Christian Graus20-Aug-08 19:29
protectorChristian Graus20-Aug-08 19:29 
GeneralRe: DLL Pin
Paul Conrad21-Aug-08 18:45
professionalPaul Conrad21-Aug-08 18:45 
QuestionGetting list of Visited Sites by Vb.net Pin
Anubhava Dimri20-Aug-08 18:51
Anubhava Dimri20-Aug-08 18:51 
AnswerRe: Getting list of Visited Sites by Vb.net Pin
Christian Graus20-Aug-08 19:30
protectorChristian Graus20-Aug-08 19:30 
QuestionImport CSV file to MS Access Pin
scothykonma20-Aug-08 18:19
scothykonma20-Aug-08 18:19 
AnswerRe: Import CSV file to MS Access Pin
emimmortal20-Aug-08 18:53
emimmortal20-Aug-08 18:53 
GeneralRe: Import CSV file to MS Access Pin
scothykonma20-Aug-08 22:57
scothykonma20-Aug-08 22:57 
AnswerRe: Import CSV file to MS Access Pin
Mycroft Holmes20-Aug-08 19:13
professionalMycroft Holmes20-Aug-08 19:13 
QuestionUnedited Articles Pin
Taylor Kobani20-Aug-08 8:35
Taylor Kobani20-Aug-08 8:35 
AnswerRe: Unedited Articles Pin
jzonthemtn20-Aug-08 9:29
jzonthemtn20-Aug-08 9:29 

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.