If A Property Has No Explicit Return What Is It Returning?
Feb 27, 2012
I have some code I inherited which has a lot of warnings that I would like to get removed. Many are of the form Property '<propertyname>' doesn't return a value on all code paths. I know why it is saying this, I'm just trying to determine what the correct 0 impact way of fixing this is.[code]Unfortuantely if I put this in my code (having changed the local variable name to avoid collisions) it then complains that it is being used before it has been assigned a value.Try to analyze IL in LinqPad (not sure if this is a good test or not) reveals that the empty method is the same as the above that Reflector gave me but it is different from return Nothing and return "".What can I use to get rid of this warning while guaranteeing the code runs 100% the same? [code]I'm not sure what ldloc.0 does here. I'm wondering if it is trying to get something from a register which will be null and if that is therefore the same as ldnull in this situation but I havent' ever really studied IL much before...
View 2 Replies
ADVERTISEMENT
Jun 4, 2010
I have an sp that deletes a bunch of rows and returns the number of rows deleted...
ALTER PROCEDURE [dbo].[DeleteChangeLog]
@ChangeEntityType bigint,
@StartDate datetime,[code]......
View 12 Replies
May 11, 2011
I have the following function (in a WCF)
[code]...
Problem is, I'm getting the following error on 'Return ImageData':Value of type '1-dimensional array of Byte' cannot be converted to 'Byte'.I've been playing with it, but can't seem to figure out what I need to do to ImageData.
View 1 Replies
Jul 21, 2009
I've just been burned again by the fact that there is no compiler warning when you fail to return a result in a Function that returns a Value type. I wrote the function:
Public Function CompareTo(ByVal other As MessageIndex) As Integer Implements System.IComparable(Of MessageIndex).CompareTo
Me._messageIndex.CompareTo(other._messageIndex)
End Function
which performs the CompareTo Function for two integers, then throws the result away and returns 0, because I forgot to either assign a value to CompareTo, or use Return, and that isn't flagged by the compiler because it's valid VB for a Value type.
I happen never to use "FunctionName = ReturnValue" because it hides information from maintenance programmers and also because I think it's insane .
Is there any way I can get the compiler to issue a warning whenever my Functions are missing a Return, whether it's a Value type or not?
View 11 Replies
Sep 27, 2011
Is there anyway to have a class that can return a default type without specifying the property.
If I had a class that had a few properties and one property returned a string value and others returned additional types, could I do the following?
Dim StudentGrade as new StudentGradeClass
'call and get default property
Dim CurrentGrade as string=StudentGrade
'instead of this
Dim CurrentGrade as string=StudentGrade.Current
The reason I am asking this is when I have classes that have other classes as properties and would like to just get a default return value,.
View 2 Replies
May 23, 2012
I have a class classed class1.vb, it has a public property named prop1 with a get and a set clause. I add one to the value passed in the set clause and in the get clause return the value variable as determined in the set clause. However, I get an error on the variable in the get clause...
Public Property prop1()
Get
Return value
[Code].....
View 1 Replies
May 23, 2012
That was probably bad title, but I'll illustrate what I'm trying to do. I have a method in a class that I need to call several times. The method returns a List(Of String). I'm just grabbing some information from a database.
VB.NET
Public Function GetTestList() As List(Of String)
Dim int As Integer = 0
[code]....
View 4 Replies
Jun 8, 2011
I have a custom class named Location with multiple properties.
[Code]....
How can I get the value of each p.Name and return "Main St", "AnyTown" o "USA"
View 1 Replies
Feb 13, 2009
I have created a class called clsLogIn [code]Now I am on a different form, frmSchedule, and I want to get the ProviderNum property from clsLogin into a text box.
View 10 Replies
Jul 6, 2009
I'm using RhinoMock in VB.NET and I need to set the return value for a readonly list.Here's what I want to do (but doesn't work):
dim s = Rhino.Mocks.MockRepository.GenerateStub(of IUserDto)()
s.Id = guid.NewGuid
s.Name = "Stubbed name"
[code].....
View 1 Replies
Jun 9, 2011
I would like to be able to return the text generated from an httphandler and insert it into my web page during an onload event. There are examples that show how to return an image by setting the image source to the path of the handler. But how do you do this for just text as in the "hello world" basic template. I would like the text value of a label on my page to be set to "hello world", preferably withour using javascript.
View 2 Replies
Jun 2, 2010
I have myself a problem here. I created myself 2 classes like the ones below:
1) Vehicles
2) SportsCars
I then created some "Properties" like the ones below:[code]I want to get the price of a selected car, but when i try to build i get the following error: Property 'Cars' doesn't return a value on all code paths. A null reference exception could occur at run time when the result is used.
View 6 Replies
Jun 22, 2010
My question is, the SelectedItem property of the Combobox is supposed to return a integer value, is it not? Because I am getting back integers, sometimes, then the next time through I get back a String. Has anyone else had a problem like this with the Combobox?
View 4 Replies
Nov 4, 2010
So I've run into a case where I have a class that can store either a string or a numeric value, and I want a single property to return one or the other (it would be a failure for both to be set). I'm using a custom generic class to deal with the numerics (so I can use signed, unsigned, and nullables), and will be storing the string in a separate variable.
In theory, if overloading could be done based on the return type, I could do this quite easily. But .NET currently disallows this. So I am wondering if there is some other really-far-out-there trick (outside of MSIL generation via Reflection.Emit) that could accomplish the same thing.
I'm open to ideas via delegates, pointer dereferencing, generics, mystical rites, etc. Also interested in any thoughts or pros/cons of such possibilities as a learning tool. If using a standard Object is the only way to achieve what I want, then that's fine with me. But It's difficult to find the correct set of keywords to hunt down this kind of capability on Google, so I thought I'd ask here before I moved on to doing something else on the project.
View 2 Replies
Jun 19, 2010
I am trying to use the right function in VS 2008. I am simply trying to get the right 5 characters of a string.
VendorID = Right(cboVendors.Text, 5)
I am getting an error when I type that:
Error1'Public ReadOnly Property Right() As Integer' has no parameters and its return type cannot be indexed.
View 3 Replies
Jan 28, 2009
I have this application which has one class. I need to return a recordset of data to the calling form. If i use Properties to return, it can only return only a single value at a time. Right now i'm returning a datareader object with one of the properties.Can anyone suggest a better way to return multiple rows of data to the calling method via Class Property?
View 1 Replies
Mar 15, 2012
I have an ASP.NET web application (VB.NET) using an Oracle database. On an insert, I need to get the identity of the inserted row back. I am trying to use RETURNING, but I keep getting a value of 1 returned.
Dim strInsert As String = "INSERT INTO L.TRANSACTIONS (LOCATION_KEY, TRANS_CREATOR, TRANS_EMAIL, TRANS_PHONE) VALUES (:location_key, :trans_creator, :trans_email, :trans_phone) RETURNING TRANS_ID INTO :ukey"
[Code].....
View 2 Replies
Apr 7, 2010
I run understanding code in my bridge program to call the double dummy solver dds.dll.
<DllImport("dds.dll", CallingConvention:=CallingConvention.StdCall)> _ Public Shared Function SolveBoard(ByVal deal As dealstruct, ByVal target As Integer, ByVal solutions As Integer, ByVal mode As Integer, ByRef tricks As futureTricks) As Integer End Function <StructLayout(LayoutKind.Explicit)> _ Public Structure dealstruct <FieldOffset(0)> Public trump As Integer <FieldOffset(4)> Public first As Integer
[code].....
After filling in the variables, the double dummy solver is called by:
calldll = SolveBoard(dealStr, target, solutions, mode, futureStr)
With a 32-bits machine this code is functioning correct, but with a 64-bit machine the code generates next error code:
System.TypeLoadException:Could not load type 'Dealstruct' from assembly B-Bridge version 1.1.7, Culture=neutral, PublicKeyToken=null' because an object field at offset 20 that is incorrectly aligned or overlapped by a non-object field.
hich adjustments I have to make to the code so it will function correctly on 64-bit machine.
View 1 Replies
Mar 14, 2012
If default 'sa' account has sys_admin permissions for the whole SQL instance and all its databases. On the database itself, if I don't have db_datareader permission enabled, I would assume it doesn't need it as it is implied but I was wondering in .net, is there way to check if db_datareader has explicitly been enabled and not just implied from the 'sa' being a sys_admin.
View 1 Replies
Feb 25, 2009
What are the main functions needed to create a .dll file in vb.net which needs to be Explicitly linked i.e at run time to an application Plz post me an equivalent code snippet in VB.Net
Explicit run-time linkingDLL files may be explicitly loaded at run-time, a process referred to simply as run-time dynamic linking by Microsoft, by using the LoadLibrary (or LoadLibraryEx) API function. The GetProcAddress API function is used to lookup exported symbols by name, and FreeLibrary — to unload the DLL.
[Code]...
View 2 Replies
Jun 14, 2011
If a field called X in a datarow called R is an int32 and Y is an int32 how can I make this statement work:
r!x += y with option strict on.
Error 8 Option Strict On prohibits operands of type Object for operator '+'.
View 6 Replies
Sep 13, 2011
How do I add an explicit reference to system.drawing in visual basic 2010 express console application?
View 1 Replies
Jan 10, 2011
In C# you can define explicit add/remove code when an event is subscribed/unsubscribed.
Is this possible in VB.net?
View 2 Replies
Oct 16, 2009
How to implement explicit interface implementation in VB.NET?
View 3 Replies
Dec 12, 2011
My brain may just be fried since it's the end of the semester, but my teacher kicked this back to fix and resubmit...she said that I am "returning the name of your function rather than your variable name".
Here is my code for all 3 forms.
code:
These are forms to calculate the cost of getting a cell phone package.
View 6 Replies
May 24, 2012
I have a json object from the facebook api
"comments": {
"count": 2
},
"updated_time": "2012-05-24T02:46:36+0000"
The entire json object is a dynamic object.
I can easily read the value of the updated_time with:
post.updated_time
However this returns the count of items in the collection, not the value of the "count" property in the json object.
post.comments.count
Is it possible to get the value of post.comments.count without it using the "count" keyword?
I should note that the JSON is much larger than this. If there are actually comments there is another collection of the actual comments so something like post.count(0) would not work in that case.
View 2 Replies
Jul 22, 2009
That is the question. Is there anything you can do with c++ unions that you can't with c# Explicit structs?
View 3 Replies
Aug 16, 2005
would like to define some custom Implicit conversion function within my VB class. How can i do that. I have seen samples in C# but not in VB
View 8 Replies
May 21, 2010
Right now I'm using the following code in my markup[cod]e...
I would like to be able to call it by index instead of explicitly by "SpeakerName". Is there a way to do this in ASP.NET 4.0?
View 1 Replies
Jul 22, 2010
When creating a T4 template in VB.NET, how do you specify Option Explicit, Option Strict,and Option Infer settings? There's some sort of <#@ #> tag for doing this, but I can't find it.
View 1 Replies