Click here to Skip to main content
15,914,070 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerDO YOUR OWN HOMEWORK Pin
leckey14-Mar-07 9:03
leckey14-Mar-07 9:03 
Questionurgent Pin
Ajeet mittal14-Mar-07 0:08
Ajeet mittal14-Mar-07 0:08 
AnswerRe: urgent Pin
PlayByTheRules14-Mar-07 0:47
PlayByTheRules14-Mar-07 0:47 
GeneralRe: urgent Pin
Ajeet mittal15-Mar-07 1:01
Ajeet mittal15-Mar-07 1:01 
AnswerRe: urgent Pin
chandru7014-Mar-07 1:12
chandru7014-Mar-07 1:12 
AnswerRe: urgent Pin
Navneet Hegde14-Mar-07 1:20
Navneet Hegde14-Mar-07 1:20 
QuestionData Insertion Problem in Vb.net Pin
nabeelkhan13-Mar-07 23:41
nabeelkhan13-Mar-07 23:41 
AnswerRe: Data Insertion Problem in Vb.net Pin
Mudsoad14-Mar-07 0:13
Mudsoad14-Mar-07 0:13 
Try the following code with some modifications.


Dim connectionString As String = _
"Data Source=data source;Initial Catalog=your database;Integrated " + _
"Security=True"

Dim trans As SqlTransaction = Nothing
Dim connection As SqlConnection = _
New SqlConnection(connectionString)
connection.Open()
Try
trans = connection.BeginTransaction
Dim command As SqlCommand =
command = New SqlCommand(yourSQL, connection, trans)
command.ExecuteNonQuery()
' add your loop to the following 2 lines
' Put the sql that will update the order details table here
command = New SqlCommand(yourSQL, connection, trans)
command.ExecuteNonQuery()

trans.Commit()

Signature has been encrypted

GeneralRe: Data Insertion Problem in Vb.net Pin
nabeelkhan14-Mar-07 0:24
nabeelkhan14-Mar-07 0:24 
GeneralRe: Data Insertion Problem in Vb.net Pin
Mudsoad14-Mar-07 0:30
Mudsoad14-Mar-07 0:30 
GeneralRe: Data Insertion Problem in Vb.net Pin
nabeelkhan14-Mar-07 0:39
nabeelkhan14-Mar-07 0:39 
Questionposition of runtime controls Pin
my codes13-Mar-07 22:20
my codes13-Mar-07 22:20 
AnswerRe: position of runtime controls Pin
N a v a n e e t h13-Mar-07 23:16
N a v a n e e t h13-Mar-07 23:16 
AnswerRe: position of runtime controls Pin
Navneet Hegde14-Mar-07 1:35
Navneet Hegde14-Mar-07 1:35 
QuestionUse C# class in Vb.Net Class Pin
Sun Rays13-Mar-07 20:42
Sun Rays13-Mar-07 20:42 
AnswerRe: Use C# class in Vb.Net Class Pin
Dmitry Khudorozhkov13-Mar-07 22:20
Dmitry Khudorozhkov13-Mar-07 22:20 
AnswerRe: Use C# class in Vb.Net Class Pin
The Man from U.N.C.L.E.14-Mar-07 4:09
The Man from U.N.C.L.E.14-Mar-07 4:09 
AnswerRe: Use C# class in Vb.Net Class Pin
Dave Doknjas14-Mar-07 13:32
Dave Doknjas14-Mar-07 13:32 
QuestionPlease help me on scanning from vb.net Pin
Nemoneetor13-Mar-07 19:44
Nemoneetor13-Mar-07 19:44 
AnswerRe: Please help me on scanning from vb.net Pin
Dmitry Khudorozhkov13-Mar-07 22:24
Dmitry Khudorozhkov13-Mar-07 22:24 
GeneralRe: Please help me on scanning from vb.net Pin
Nemoneetor14-Mar-07 6:10
Nemoneetor14-Mar-07 6:10 
QuestionBased on month all dates want to display datagrid... Pin
Member 387988113-Mar-07 19:41
Member 387988113-Mar-07 19:41 
AnswerRe: Based on month all dates want to display datagrid... Pin
N a v a n e e t h13-Mar-07 23:12
N a v a n e e t h13-Mar-07 23:12 
QuestionSpell check utility in win forms with text editor Pin
Pushpa Setty13-Mar-07 18:17
Pushpa Setty13-Mar-07 18:17 
AnswerRe: Spell check utility in win forms with text editor Pin
Dmitry Khudorozhkov13-Mar-07 22:30
Dmitry Khudorozhkov13-Mar-07 22:30 

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.