I'm getting a sporadic 'Unable to cast object of type 'System.Int32' to type 'System.String' Exceptions at .SingleorDefault() in the below code. It works 9/10 times but randomly it throws an exception. I made sure that SettingID that i'm passing has no Null Values and the data in the table always exists for the settingID, and i'm always passing SettingID as Integer.
I don't understand that error that occurs on the second line of code below. I'm trying to skip over the first 18 bytes of a byte array that I'm accessing from a c# dll into a local vb.net byte array
I am using VB2008 in VS Prof and try to convert at Byte arry stored as a Image format in Sql2000 database.
Code: Using acnLoc As New SqlConnection(CSLoc) acnLoc.Open() Dim G As SqlCommand = New SqlCommand("SELECT [SignatureData] FROM [MyTable] where [OID]=@OID", acnLoc) G.Parameters.Add("@OID", SqlDbType.Int).Value =Cint(bxShipmentno.Text.Trim()) dim P= G.ExecuteScalar() 'returns a system arry
Code: Dim sql2 As String = " SELECT * FROM Etiqa_Image_Details where TransmissionID='" & Request("id") & "' " With objDB.OpenDataReader(sql2) While .Read() If .Item("ImageType") = "Invoice" Then imgInv.ImageUrl =
[code]....
However,i get this error while retrieving the image path(Varchar in sql server 2000) and display the image on the web.
Unable to cast object of type 'System.String' to type 'System.Byte[]'.
Actually in my database, i am just storing the image path where the image store...And now when I browsing the web, it should get the image path out and find the image through the image path and then display on the web....
I wrote the code below which calculates the length of a line on the form and save record. An error occurs when the programme tries to save the record. It gives me "Cannot perform '=' operation on System.Int32 and System.String" error. I checked the data type of "ID"(int), "Microscope"(Varchar), "Magnification"(int) and "Calibration"(Decimal), and they are fine so far as I know.
Code: Private Sub btnEnd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnEnd.Click 'Check if the length textbox is not empty
Is it possible to extend primitive types such as System.String and System.Int32 (IE: integer) in .Net 4 and if so how?
To be more specific, I am aware of the concept of partial classes but this doesnt seem to be the answer. Also I find that System.String is not inheritable and Int32 is a structure.
Lastly I am interested in knowing both a VB.Net and C# answer to the above question.
For this code, I'm trying to have it pull the ID of the doctor from the database and only show their patients. I keep getting this error when I try selecting one from the list though, right at the red section.
I get an error "Cannot perform '=' operation on System.String and System.Int32" on the following code:
VB.Net Code:
Public Sub board2_OnGameWon(ByVal sender As Object, ByVal e As EventArgs) If Not board2.isCheated() Then Dim time As Integer = board2.getGameTime()' I have tried changing this to String
[code]....
The exception is in the lines where I 'Dim betterScores' above. The idea is that when the player wins a game their score is placed and held in the betterScore variable. It is then written to an xml file later on.
I have a Difficulty Menu item (System.Windows.Forms ToolStripMenuItem) containing 4 choices, 3 of them work but one doesn't. The one that doesn't work is "1.0 (Normal)" and in the Sub New is "adjustDifficulty(mnuDifficulty100)"I have copied some other subs that are associated with this code below.
VB.Net Code:
Public Sub New() ' This call is required by the Windows Form Designer. InitializeComponent()
I have a text-boxes that use both the validating event as well as the lostfocus event.I have pinpointed the exception in the post title to the validating events.[code]Maybe I am unaware that CancelEventArgs are not suppose to be used in the validating event? [code]
i have a table in sql server with some fields set as Byte() (System.Byte[]) when i import them in my application to be used with linq they are converted in Binary (System.Data.Linq.Binary)why is that?is there a way to prevent this wrong translaton???if i update the database how can i update the classes that has been craeted in visual studio2008?
I am getting the following erro message: "Unable to cast object of type 'System.String' to type 'System.Predicate`1[System.String]'." on the line of code: If Not StrgFrag.Exists(wrd) Then I was expecting a True/False response and assumed it would work given that wrd is a String variables and StrgFrag in a List(of String). Do I need to reference the wrd variable differently? Dim StrgFrag As New List(Of String)
I have an InvalidCastException Error in my program. The program is that i try to insert an employee record into a database table after getting the details from a form. I've used Money data type is SQL Server for salary and SqlTypes.SqlDecimal data type in employee template class. i've used a stored procedure to pass the values and i add the basic value by passing a parameter by the method
Dim prm8 As SqlParameter = com.Parameters.Add("@basic", SqlDbType.Money) prm8.Direction = ParameterDirection.Input prm8.Value = emp.Bsc
I've used the money datatype itself even in the stored procedure variable.I get the following error.
failed to convert parameter value from sql decimal to decimal Even if i use prm8.Value = Convert.ToDecimal(emp.Bsc)
I get an error Unable to cast object of type 'System.Data.SqlTypes.SqlDecimal' to type 'System.IConvertible'.
I am getting this error when I am tring to load string type to data table)
Using connection As New SqlConnection("connectionstring;") connection.Open() Using Command As New SqlCommand("SELECT ClientId,forename,surname from t_clientdetails
I'm creating a student evaluation form in a repeater that should submit the evaluation responses and update the SQL database, but I keep getting the error mentioned in the title. I'm coding in ASP.Net using VB.
I am getting a really bizarre error and it makes no sense at all.Basically I have a user entity which has a Password property. This property is of Type Binary, the server data type being Binary(512).I am reading this value in and converting it to a byte array. However whenever I run my code I am getting a completely unrelated error of Unable to cast object of type 'System.Guid' to type 'System.String'.This strikes me as very odd since I am not using a property or variable of type string or GUID anywhere in this procedure where it falls over.
The code is below:
Public Shared Function ValidateUser(ByVal username As String, ByVal password As String) As UserValidationMessage Using db As New EntityMapDataContext Dim u = From user In db.Users Where user.Username = username