Click here to Skip to main content
15,892,059 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionHow to create a text box that accepts only numbers and full stop in VB.Net Pin
tiagu7-Jun-09 3:47
tiagu7-Jun-09 3:47 
AnswerRe: How to create a text box that accepts only numbers and full stop in VB.Net Pin
DidiKunz7-Jun-09 4:18
DidiKunz7-Jun-09 4:18 
AnswerRe: How to create a text box that accepts only numbers and full stop in VB.Net Pin
dan!sh 7-Jun-09 4:39
professional dan!sh 7-Jun-09 4:39 
AnswerRe: How to create a text box that accepts only numbers and full stop in VB.Net Pin
Johan Hakkesteegt7-Jun-09 21:16
Johan Hakkesteegt7-Jun-09 21:16 
GeneralRe: How to create a text box that accepts only numbers and full stop in VB.Net Pin
tiagu8-Jun-09 0:33
tiagu8-Jun-09 0:33 
GeneralRe: How to create a text box that accepts only numbers and full stop in VB.Net Pin
Johan Hakkesteegt8-Jun-09 0:43
Johan Hakkesteegt8-Jun-09 0:43 
AnswerRe: How to create a text box that accepts only numbers and full stop in VB.Net Pin
Kschuler8-Jun-09 7:57
Kschuler8-Jun-09 7:57 
QuestionAmazing !!! Problem (SQL Insert Command - SqlServer 2005) Pin
Paramu19737-Jun-09 1:10
Paramu19737-Jun-09 1:10 
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()
----------------------------------------------------------------
Problem is if the

itm_description=BULB .........working nice....But if the
itm_description=COUPLING 54"x64" is not insering...because of this " and '

Better ideas are always welcome.!!!Suspicious | :suss:
AnswerRe: Amazing !!! Problem (SQL Insert Command - SqlServer 2005) Pin
Moreno Airoldi7-Jun-09 1:33
Moreno Airoldi7-Jun-09 1:33 
GeneralRe: Amazing !!! Problem (SQL Insert Command - SqlServer 2005) Pin
Paramu19737-Jun-09 1:49
Paramu19737-Jun-09 1:49 
GeneralRe: Amazing !!! Problem (SQL Insert Command - SqlServer 2005) Pin
Moreno Airoldi7-Jun-09 2:04
Moreno Airoldi7-Jun-09 2:04 
QuestionHow do you Draw around (inside) a Group of adjacent Cells in a Column of a DataGridView Control Pin
Graham Irons6-Jun-09 22:17
Graham Irons6-Jun-09 22:17 
AnswerRe: How do you Draw around (inside) a Group of adjacent Cells in a Column of a DataGridView Control Pin
Christian Graus7-Jun-09 0:09
protectorChristian Graus7-Jun-09 0:09 
GeneralRe: How do you Draw around (inside) a Group of adjacent Cells in a Column of a DataGridView Control Pin
Graham Irons7-Jun-09 1:29
Graham Irons7-Jun-09 1:29 
GeneralRe: How do you Draw around (inside) a Group of adjacent Cells in a Column of a DataGridView Control Pin
Mycroft Holmes7-Jun-09 3:09
professionalMycroft Holmes7-Jun-09 3:09 
GeneralRe: How do you Draw around (inside) a Group of adjacent Cells in a Column of a DataGridView Control Pin
Graham Irons7-Jun-09 12:58
Graham Irons7-Jun-09 12:58 
GeneralRe: How do you Draw around (inside) a Group of adjacent Cells in a Column of a DataGridView Control Pin
Mycroft Holmes7-Jun-09 14:14
professionalMycroft Holmes7-Jun-09 14:14 
GeneralRe: How do you Draw around (inside) a Group of adjacent Cells in a Column of a DataGridView Control Pin
Graham Irons7-Jun-09 16:52
Graham Irons7-Jun-09 16:52 
QuestionIs it possible to create controls from a new thread in a multithreading windows form application Pin
Amer Rehman6-Jun-09 21:31
Amer Rehman6-Jun-09 21:31 
AnswerRe: Is it possible to create controls from a new thread in a multithreading windows form application Pin
Moreno Airoldi7-Jun-09 1:30
Moreno Airoldi7-Jun-09 1:30 
AnswerRe: Is it possible to create controls from a new thread in a multithreading windows form application Pin
Dave Kreskowiak7-Jun-09 7:18
mveDave Kreskowiak7-Jun-09 7:18 
Questionimage loop in vb.net Pin
bapu28896-Jun-09 11:56
bapu28896-Jun-09 11:56 
AnswerRe: image loop in vb.net Pin
Alan N6-Jun-09 12:23
Alan N6-Jun-09 12:23 
QuestionRe: image loop in vb.net Pin
bapu28896-Jun-09 23:21
bapu28896-Jun-09 23:21 
AnswerRe: image loop in vb.net Pin
Alan N7-Jun-09 0:34
Alan N7-Jun-09 0:34 

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.