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

Visual Basic

 
AnswerRe: Problem in Crystal report using password? Pin
Skymir8-Jun-09 4:32
Skymir8-Jun-09 4:32 
AnswerRe: Problem in Crystal report using password? Pin
calvenyow12-Jun-09 17:01
calvenyow12-Jun-09 17:01 
Questionfiles names under a process - vb.net 2008 Pin
Pankaj Garg7-Jun-09 21:30
Pankaj Garg7-Jun-09 21:30 
AnswerRe: files names under a process - vb.net 2008 Pin
Christian Graus7-Jun-09 21:34
protectorChristian Graus7-Jun-09 21:34 
AnswerRe: files names under a process - vb.net 2008 Pin
Dave Kreskowiak8-Jun-09 1:26
mveDave Kreskowiak8-Jun-09 1:26 
GeneralRe: files names under a process - vb.net 2008 Pin
Pankaj Garg8-Jun-09 1:43
Pankaj Garg8-Jun-09 1:43 
AnswerRe: files names under a process - vb.net 2008 Pin
EliottA8-Jun-09 5:31
EliottA8-Jun-09 5:31 
QuestionDataGridView UnCompleted Last Row values & It's Datatable Last Row Problem !!! Pin
Paramu19737-Jun-09 21:26
Paramu19737-Jun-09 21:26 
I have a DatagridView with 10-columns and Allow user to add new row is True.
But the problem is when the user entering the data's in new row's from the last row, when they
entered the data in 4th cell, they like to save the data.

But it's not saving, the uncompleted last row.
Iam using the following for save.

-----------------------------------------------------------

Dim DAD31 As SqlDataAdapter,DS31 As New DataSet,DTB31 As New DataTable

Dim Save_4 As String = "insert into itemmst (itm_description) values (&itm_description)"

DAD31.InsertCommand = New SqlCommand(Save_4, con)
con.Open()

Dim Trans As SqlTransaction
Trans = con.BeginTransaction
DAD31.InsertCommand.Transaction = Trans

Try
DAD31.Update(DS31.Tables(0))
Trans.Commit()

Catch ex As Exception
If Not Trans Is Nothing Then
Trans.Rollback()
End If
MsgBox(ex.Message)
End Try

con.Close()
----------------------------------------------------------------

THANK YOU ! For Your Valuable Minutes !!!Suspicious | :suss:
AnswerRe: DataGridView UnCompleted Last Row values & It's Datatable Last Row Problem !!! Pin
Dave Kreskowiak8-Jun-09 1:25
mveDave Kreskowiak8-Jun-09 1:25 
QuestionHow to implement queues in vb 6.0 Pin
Member 30578877-Jun-09 20:29
Member 30578877-Jun-09 20:29 
AnswerRe: How to implement queues in vb 6.0 Pin
Christian Graus7-Jun-09 20:35
protectorChristian Graus7-Jun-09 20:35 
GeneralRe: How to implement queues in vb 6.0 Pin
Member 30578877-Jun-09 20:42
Member 30578877-Jun-09 20:42 
GeneralRe: How to implement queues in vb 6.0 Pin
DidiKunz7-Jun-09 21:14
DidiKunz7-Jun-09 21:14 
GeneralRe: How to implement queues in vb 6.0 Pin
Member 30578877-Jun-09 21:28
Member 30578877-Jun-09 21:28 
GeneralRe: How to implement queues in vb 6.0 Pin
DidiKunz7-Jun-09 21:32
DidiKunz7-Jun-09 21:32 
GeneralRe: How to implement queues in vb 6.0 Pin
Member 30578877-Jun-09 22:02
Member 30578877-Jun-09 22:02 
GeneralRe: How to implement queues in vb 6.0 Pin
DidiKunz7-Jun-09 22:14
DidiKunz7-Jun-09 22:14 
GeneralRe: How to implement queues in vb 6.0 Pin
Nagy Vilmos8-Jun-09 1:58
professionalNagy Vilmos8-Jun-09 1:58 
GeneralRe: How to implement queues in vb 6.0 Pin
DidiKunz8-Jun-09 4:15
DidiKunz8-Jun-09 4:15 
GeneralRe: How to implement queues in vb 6.0 Pin
Nagy Vilmos8-Jun-09 4:20
professionalNagy Vilmos8-Jun-09 4:20 
GeneralRe: How to implement queues in vb 6.0 Pin
Nagy Vilmos8-Jun-09 1:56
professionalNagy Vilmos8-Jun-09 1:56 
GeneralRe: How to implement queues in vb 6.0 Pin
Jon_Boy8-Jun-09 5:39
Jon_Boy8-Jun-09 5:39 
QuestionHow to Antivirus check the .EXE Pin
Anubhava Dimri7-Jun-09 18:30
Anubhava Dimri7-Jun-09 18:30 
AnswerRe: How to Antivirus check the .EXE Pin
Christian Graus7-Jun-09 19:06
protectorChristian Graus7-Jun-09 19:06 
GeneralRe: How to Antivirus check the .EXE Pin
Anubhava Dimri7-Jun-09 19:13
Anubhava Dimri7-Jun-09 19:13 

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.