Search:
Type: Posts; User: dr223
Search :
Search took 0.01 seconds.
December 18th, 2012 05:06 AM
Hi,
I have changed a data type of a field (fieldsize) from int to Bigint.
Now, the problem is it generated the following error:
Microsoft VBScript runtime error '800a000d'
Type mismatch
November 27th, 2012 10:16 AM
Hi,
I want to update my statement to read 2 values from what is available -
1) user_full_name (concatenation of firstname and lastname) eg., firstname = John lastname= Smith user_full_name =...
October 31st, 2012 06:24 AM
Hi,
I have the following code;
Private Function findauthoremail(ByVal name As String) As String
Dim ConString As String =...
October 25th, 2012 08:16 AM
Hi,
Why when I click the checkbox and submit it stills submit a False value?
Thank you
Try
query = "UPDATE TblChangeControlDet SET PeerRvwApp=@PeerRvwApp WHERE...
October 25th, 2012 08:15 AM
Hi,
I am having the follwing code;
Try
Dim PeerValue As New System.Data.SqlClient.SqlCommand(("Select PeerRvw From dbo.TblChangeControlDet WHERE ChangeID=@ChangeID"), conn)...
October 23rd, 2012 09:25 AM
please tell how to do it in one SQL update statement..
Many thanks
October 23rd, 2012 08:36 AM
Ok Changed it to;
nextconn.Open()
Dim query As String
Dim cmdB As New System.Data.SqlClient.SqlCommand(("Select RefNo From dbo.QryRefNo WHERE ChangeRaisedDate =...
October 23rd, 2012 07:13 AM
Hi,
I have the following code;
Dim query As String
Dim RefID As New System.Data.SqlClient.SqlCommand(("Select RefNo From dbo.QryRefNo WHERE ChangeRaisedDate = @ChangeRaisedDate"),...
October 19th, 2012 09:03 AM
Tried;
Protected Sub btnsubmit_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnsubmit.Click
Dim strConn As String
strConn =...
October 19th, 2012 06:59 AM
Tried that it gave same error message.
Even tried to create another string;
Dim nextconn As New SqlConnection(strConn)
Then I opened and closed same location as you did in bold.
Same...
October 19th, 2012 06:36 AM
How can you do the first one please
October 19th, 2012 05:59 AM
Hi,
I have the following code;
Protected Sub btnsubmit_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnsubmit.Click
Dim strConn As String
September 5th, 2012 06:19 AM
Hi,
I have a datagridview (DgvProductDet) it has 5 columns (data bounded)
TruckModel
ProductName
Quantity
Priceperitem
Buy Now (Button Click)
September 4th, 2012 05:24 AM
Hi,
At button click on my form I have the code;
Private Sub BtnChk_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnChk.Click
...
September 4th, 2012 05:20 AM
It didnt work!!
I even tried
If CmbTruckTyp.SelectedIndex > -1 Then
It never gives any error, however, both comboxes are visible regardless of "Daf" or "MEercedes-Benz" being selected.....
September 3rd, 2012 08:48 AM
Hi,
The following code gives an error - at run time
InvalidCastException was unhandled
Operator '=' is not defined for type 'DatarowView' and 'Nothing'
If Not...
September 3rd, 2012 08:46 AM
Hi,
I have a button on click event I have the following code;
Private Sub BtnChk_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnChk.Click
If...
August 14th, 2012 10:30 AM
Hi,
I receive the error -
Incorrect syntax
Unclosed syntax near 's'
Unclosed quotation mark after character string ".
query = "UPDATE dbo.TblPracExclude SET " & _
August 14th, 2012 05:19 AM
Hi,
I have a datagridview (DgvPracExcl), on it I have a bounded field with a design name 'Notes' and columntype: DatagridviewTextBoxColumn.
At runtime a user can type in text on this textbox...
August 14th, 2012 05:18 AM
Hi,
I have a datagridview (DgvPracExcl) which at runtime allows a user to update the records to a table in the database.
Now, I want to save a history prior to the update. Therefore, create a...
August 14th, 2012 05:17 AM
Hi,
I have a form with a datagridview - on form load I have;
Dim irown As Integer
For irown = 0 To DgvPracExcl.Rows.Count - 1
DgvPracExcl.Rows(irown).Cells(0).ReadOnly...
August 13th, 2012 08:49 AM
August 13th, 2012 06:49 AM
Ok - Changed it to
Dim conn As SqlConnection = GetDbConnection()
Dim sql As String = "INSERT INTO dbo.TblPracExclude (prac_no, Goldpracid, prac_name, prac_status, prac_enabled,...
August 10th, 2012 10:34 AM
If I exclude the '' I receive the error message - Incorrect syntax near ','.
Thanks
August 10th, 2012 09:43 AM
Hi,
I have the follwoing code;
query = "INSERT INTO dbo.TblPracExclude (prac_no, Goldpracid) VALUES (" & _
chk_prac_no & ", '" & _
...
Click Here to Expand Forum to Full Width