What Does 'Return Not (s Is Nothing)' Return
Feb 8, 2010
Can someone explain me the behaviour of the following line in VB Return Not (s Is Nothing)I am looking to translate this in C# and i am not sure about those negation and do not understand the conditions.
View 3 Replies
ADVERTISEMENT
Dec 12, 2011
I use this code to return records in a DataGridView:
[Code]....
View 3 Replies
Oct 7, 2010
I'm working up a system where I plan on using RealProxy objects to enable intercepting method calls against a set of objects, handling the call, and then returning appropriate results. This works just find for simple return types like strings or ints, but I can't seem to return objects from the RealProxy.Invoke method. Everything works. I get no errors, but the returned value is always NOTHING, instead of an object.
I've worked up the smallest sample code I could, and have included it below. Essentially, just call RPtest and single step through. The code creates a simple object, RPTestA, with a string field and an object valued field It then retrieves the string
[Code]...
View 1 Replies
Dec 28, 2010
I'm making a Visual Basic GUI application to display whether a number of my ports are open for people to know whether things like my website and my Minecraft server are open.My problem is I have absolutely no idea how to do this in Visual Basic.Basically, I'm asking for something which sends a signal to an IP with a specific port, if it is open then return true, if it's closed, return false. Similar to: http:[url]....
View 1 Replies
Mar 3, 2011
I would like the following function to return Nothing if the element with the specified key is not in the collection. Instead, it returns an error - something to the effect of "no element found"
Public Class MyCollection
Inherits System.Collections.ObjectModel.Collection(Of MyType)
Public Function FindByActivityKey(ByVal searchValue As Integer) As MyType
[code]....
View 1 Replies
Jan 16, 2009
In order to return a value from a VB.NET function one can assign a value to the "Functions Name" or use "return value." I sometimes see these inter-mixed in the same function. Personally, I prefer the return. My question is, what is the internal difference, if any, between the two?
View 5 Replies
Feb 17, 2009
I am working in Microsoft Visual Studio 2003.
I want to execute file using command line argument.
Actually my requirement is run the vb.net exe file in PHP. In Php exe is running using the exec command.
In my exe file i copy a file from one folder to another folder. I have to return whether that file is copied successfully or not to php.
how can i send this information to php from vb.net.
My code is
Dim sourcepath, source, filename As String
Dim destinationpath As String
Dim processvalue As Integer
[Code]....
View 1 Replies
Aug 13, 2011
[Code]...
Dim mappath As MatchCollection = r.Matches(randomstring) when changed to derp doesn't work. Derp does work when you put it in a message box too. I tried .tostring. I don't know what to do D:) I tried tostring, I tried converting with cstr but it say's it cannot return a value, what do?
View 1 Replies
Aug 2, 2011
view the code below
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
[Code]....
Why when click the button1, the return is 0 but not -1?
View 4 Replies
Mar 5, 2010
I am new to n-tier applications.should the DAL return a class or dataset to the BLL?
View 2 Replies
Aug 17, 2011
I have a WCF service wich has this function:
[Code]...
wich returns the values specified here:
[Code]...
Each one of this functions returns a List of entities. If I call this functions individually they return their values ok. But what I want is to make only one call to the service and no several! I want to be able to receive it in another application like this:
[Code]...
View 1 Replies
Jun 15, 2011
Possible Duplicate: VB.NET Function Return If I have a function that returns a boolean, what is the difference between:Return False and Function = False
View 2 Replies
Mar 20, 2012
Why the 'index' always return value 0 although the ticker running and there is a statement 'index = index + 1'?
'Dim index as integer = 0
'EDIT
Dim GridRowIndex as integer
[code]....
View 2 Replies
Aug 19, 2011
I have tried ADO, now I've moved to SQLClient and I still cannot retrieve the return value from my procedure.
Here is my VB code:
cmd.CommandText = "usp_executeMerge"
cmd.CommandType = CommandType.StoredProcedure
Dim retparm As New SqlClient.SqlParameter
[code]....
My mergeResults table shows the return value of 99 but I cannot get any value back to my VB program.
View 1 Replies
Oct 14, 2011
In C#, I can do this:
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)[code]....
Notice the line int i = c1.GetInt();. I can't seem to get VB.NET 4.0 to do something similiar.
View 3 Replies
Feb 12, 2010
take a look at the following Code:
Private Sub btnDebug_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnDebug.Click
Dim d As Date
[Code]....
The Funtion ZZNull always returns Nothing, so IsNothing(d) in the calling method should evaluate to True.
But it does not !
When you run these lines, then you will see that IsNothing(d) evaluates to False
View 7 Replies
Jan 14, 2012
In the documentation of FileInfo.Create Method it says:
'Declaration
Public Function Create As FileStream
'Usage
[code].....
View 7 Replies
Sep 21, 2011
I need to read the status of HP RAID Controllers out of the HP CLI.Thats quite simple, but I need to get the return of the CLI back to VB.
Sub Main()
Dim myString As String
Dim my2string As String
[code]....
View 15 Replies
Sep 27, 2010
I am currently using a C .dll file in my vb.net project, and need to access a string that it returns (as a pointer to a char array). How can I access this?
Private Declare Function src_error Lib "libsamplerate.dll" (ByVal err As Integer) As (???) 'i've tried intptr, string, integer, none work
<MarshalAs(UnmanagedType.LPTStr)> Dim ptr As String
...and then in the actual function,
ptr = src_error(6) 'returns an error based on what combination of things I've tried
View 2 Replies
Oct 2, 2009
I am converting C# code to VB.Net and the C code has this above the function:[return: System.Xml.Serialization.XmlElementAttribute("Name", IsNullable=true)]
View 3 Replies
Apr 20, 2012
I created a ATL project and I got a function like
idl File:
[id(1)] HRESULT COM_TEST( [in] int parm_count, [in, out] SAFEARRAY(PARM) *parm, [out, retval] short *return_code )
cpp file:
STDMETHODIMP CTEST::COM_TEST( int parm_count, SAFEARRAY **parm, short *return_code
[Code].....
My question is how do I input a array and output it?
View 1 Replies
Dec 10, 2010
1. How to return the variable name itself? Public Class test Public Shared as String = "111" End Class I want to return AAA but no 111, test. = "111", and test. Tostring = "111"
2. I want to join the space char into the variable, for example A B but no AB, how to do?
View 7 Replies
Mar 8, 2009
So the program I am writing validates the controls on the page on button_click.
I want to write a function which checks which step the program is at (0-7) then return something depending on whether or not it validated.
My plan was to return the control which was not valid.
Private Function ValidateInputs() As Control
Select Case wizardStep
Case 0
[Code].....
1. could I return the names off all the controls which did not validate?
2. should I be returning a control type or would something like a string be better?
View 3 Replies
Jun 25, 2010
Do any one knows what has happened here?
gRef = Panel1.CreateGraphics
Dim r = gRef.MeasureCharacterRanges("123456", SystemFonts.CaptionFont, New RectangleF(PointF.Empty, New SizeF(Single.PositiveInfinity, Single.PositiveInfinity)), StringFormat.GenericDefault)
result -> r.Count = 0
View 1 Replies
Feb 3, 2012
I'm connecting my program to some external code. I'm setting it up so that the external code can instance objects and I've come across a problem. I've created this function here:
[Code]...
I'm trying to create a System.Diagnostics.Process object. For what ever reason though, it always return Nothing instead of the object. Does anybody know what I'm doing wrong? I'm doing this in VB.net so all .net responses are accepted :)
View 2 Replies
Feb 28, 2012
Why does props return .name and .type but no .value ? Am I maddd?
Dim MyObj As New ManagementObject
_MyObj.Path.NamespacePath = "root\CIMV2"
_MyObj.Path.ClassName = "Win32_Desktop"
[code].....
View 4 Replies
May 27, 2011
How can I return a string from c++ dll to VB? I want to return a string through return value, not param.So many times, googling but i couldn't find the solution.Here is my sample code, but when the function(testBSTR()) is called,the sample program is crashed.[code]
View 4 Replies
Oct 17, 2009
I tried to make a thread (address of function) , but vb.net didn't accept that.
is there any way to return a value from a thread ?
View 2 Replies
Mar 1, 2012
One over time hours and one week's pay @10 hourly pay. I wanted to display those two in two listboxes 1 and 2.
Public Class Form1
Dim overTimeHours As Double
Dim weekPay As Double
[Code].....
View 4 Replies
Jun 2, 2009
how return four value from a function. In general function will return single value but here i am going to return four different values. If possible please tell me how to store the function return values.
[Code]...
View 4 Replies