VS 2005 - How To Call A Return From A Class From A Sub
Oct 24, 2009
I have a Class in a Windows Form project. I would like to call the class return value from the Form1 sub on button click. How do I do that? Lets say I would like to display the Return in a MsgBox?
View 4 Replies
ADVERTISEMENT
Jun 22, 2010
I'm trying to call an external .vb file class function, is it like dim a as ClassName=new ClassName()? so how do you do with this kind of.. I try to search for return value from .vbs to project that i will compiled, but none got the answer..#The reason why i'm doing this is for feature maintenance..
View 1 Replies
Aug 13, 2009
I'm using ASMX web services in VB.Net in VS 2005. I am calling a function method on the web service that returns a true or false value. This works fine if I call the the web method synchronously, but if I want to call the method asynchronously, the function returns to a sub and there is no return value; therefore, I can't tell whether the result of call is true or false. Is there a way to make an asynchronous call and still get the true or false result (perhaps using the userState Object)?
For Example:
Dim MyResult as Boolean = MyService.GetResult(10)
Dim MyResult as Boolean = MyServer.GetResultAsync(10)
This doesn't work the compiler complains: "Expression Does Not Produce a Value"
View 2 Replies
Apr 17, 2009
How do i call a script on another class? for example
MainForm Page
Private Sub MySub
Call Another_Sub_From_Another_Class_Form
[Code].....
View 3 Replies
Aug 7, 2009
This is my vb6 programme for creating recordset in a module. and call it in class
and form
[Code]...
View 4 Replies
Mar 1, 2010
I need to create unit testing project for my current website. The currentw ebsite si written in VB. All unit testing examples are using interface to create mock object. My current VB class does not implment any interface. Can I add interface and implement it to my current class and functions without affecting or changing codes to any pages in my website that call the functions? For examples my current class is like:
[Code]...
View 2 Replies
Apr 22, 2012
Base class has one field to hold numeric balance value. With 2 methods that accept arguments for adding and subtracting the new input calculating new balance. Sub class has four fields dates, transaction, memo and amount.I have a deposit form, and withdraw form. Each time one transaction is entered it creates an object with sub class fields, then adds to the account collection. My problem is not understanding how to call the deposit/withdraw method and pass the current transaction amount back to the base class to alculate the new balance. Does anyone have any links to information/tutorials on how to perform something like this? As you can see with my code I have tried various different approaches without any success.
[Code]...
View 5 Replies
Nov 30, 2009
Iam trying to make a call to a thred by does not find how to start a Thred on a Function that should have a value and should return a value,I got it to work on Function or Subs that does not pass or return values.
Like this (Exampel)My Function TEST ( byval Par1 as integer ) as integer Par1 = par1 * 100 Return Par1 End Function
The call Public Thred1 As System.Threading.Thread
Thred1 = New System.Threading.Thread(AddressOf TEST (10) ) ' Does not work
Control.CheckForIllegalCrossThreadCalls = False
Thred1.Start()
How do a get the return value from my Function in a thred?and it seems like the System.Threading.Thread does not like fuctions with parameters?
View 3 Replies
May 14, 2010
Should I call .Dispose() after returning an object that implements IDisposable? [code]In other words, is the object I return a copy, or is it the object itself?
View 11 Replies
Aug 18, 2009
I have a Web Service with one WebMethod for which return value is boolean.It accepts XML file as string and process data. How can I first return status as true and then call the ProcessData method.
As the processing data takes time I need to return true first and then process the data.
[webmethod]
Public function receiveData(ByVal xmlstr as string) as boolean
dim status as boolean=false
try
[Code]...
View 2 Replies
Mar 23, 2012
Is there a way to call functions within a class upon instantiation of that same class? Basically, I have functions within a class, but I want to automatically call some of those functions simply when there is an instance of the class created.
Basically, I have this structure:
Dim instance as new class
instance.function1
instance.function2
[Code].....
View 1 Replies
Mar 11, 2009
I'm using VB6 and trying to get an instance of a Type Library object.After i retrieved the object and i'm trying to invoke a method. I'm getting this exception. However, i've checked with the parameters and its type. it is correct.I found something fishy, that method doesnt have return value. But it is throwing a compiler error whenever i'm trying to call the function and the compiler error went off when i get a return value from that method.I don't know,
View 1 Replies
Jul 22, 2010
I'm new to LINQ and am having a problem getting proper results from a simple (working) stored procedure that takes no parameters and returns a single Integer. When calling this sproc with LINQ its returnvalue is always 0. When run using tableadapter or directly on the sql server it works, returning 6 digit values like 120123.
Here is my LINQ code:
Dim MeetingManager As New MeetingManagerDataContext
Dim MeetingID As Integer = MeetingManager.NewMeetingID().ReturnValue Here is the NewMeetingID procedure:
ALTER PROCEDURE [dbo].[NewMeetingID]
AS
SET NOCOUNT ON
BEGIN
[Code]...
View 1 Replies
Jan 31, 2012
Can I connect phone landline to my computer and when someone call me his information appears by his phone number this information already exist in database.. I want to know is it a service from communication company or can i do it by code just plug the cable into my computer ?
View 1 Replies
Sep 8, 2011
I working on a project that includes to call a certain type of method to each control, i have this
Private Sub txtBcNum1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles txtBcNum1.KeyPress
[Code]...
This code works like a charm if i want to allow only numbers and backspace on my textbox.Problem: I have 15 textboxes( txtBcNum1,txtBcNum2,....,txtBcNum15 ), what's the best way to call this function inside KeyPress method on each textboxes with out manually adding it to KeyPress method?
View 3 Replies
Jun 4, 2012
Background: My application is used to execute tests using Selenium RC servers, and occasionally I'm running into a problem when my call to a Selenium command doesn't return the response from the RC server - it then ends up blocking the thread that is executing the test.
[Code]...
View 1 Replies
Nov 14, 2010
I have a class i've called "buttons", which passes in 1 variable, the button text, and then returns a new button with that text. however, i do not know how to get the class, when called to return a button.
similar to how 'toString' works, except it would return a button object instead of a string. (im not sure how toString works in vb.net. in java it is automatically called when you call the new class, so newclass and newclass.toString(); return the same) [code]...
View 2 Replies
Jan 27, 2010
I wrote the following two functions in a class to take a gpib reading and also take a measurement from an LCR meter.
HTML
Public Function gpibRead(ByVal Channel As Integer, ByVal buffer As Integer) As String
Dim readingBufferA1 As String
Select Case Channel
Case 1
readingBufferA1 = gpibLCRA1.ReadString(buffer)
Return readingBuff
[Code] .....
When on the main form I call the funtion takeMeasurement(1) how can I get the LCR readings back. If I try and use readingBufferA1 on the mainform it doesn't recognize that as a variable. I know that it is taking the reading and storing the correct numbers because I am monitoring on NI Spy.
View 6 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
May 18, 2012
I'm moving code from code-behind to classes and run into a problem. I have a method which makes a string (an html invoice). In the method a final amount is created. I want to make a class called Invoice which will have the method "CreateInvoice" which will return a string and I also want to set the finalCharge property of the object.[code]
View 1 Replies
Jun 19, 2012
I have question about returning an object from a class. example of my codeclass ADDBUTTON:
Dim test As New Button
test.name ="NAME" (radom generated)
start.controls.add(test)
[code].....
View 2 Replies
Jun 26, 2012
i have the web service that return a class Dto the name of the service is GetDto and the element of the class that return are Id and name.
how to manage a return class from web service?
View 5 Replies
Jun 7, 2010
I am utilizing a centralized class object that needs to call another class object. The program itself will do something like the following
sFieldValue = CentralObject.ObjectHandler(1, TestFunction, "FunctionVar,FunctionVar2,FunctionVar3")
In the central object I have a function
Public
Function ObjectHandler(ByVal ObjectType
As
Integer,
[code]....
View 5 Replies
Feb 18, 2012
I have this code which i got from another forum.[code]...
View 2 Replies
Mar 9, 2007
i have 2 classes. Temp1 and Temp2
Instead of doing
dim clsname as new Temp1
Temp1.GetData("dfs","dfd","fff")
How can i do it where I specify the class name
int=1
dim clsname as string = "Temp" & int
Then somehow use clsname - i tried Activator.CreateInstance but need some help
Public Class Temp1
Private _Account As String
Public Sub New()
[code]....
View 4 Replies
Jul 17, 2009
How can I call a class from a variable ?
Something like :
Dim strClassName As string = "clsAction"
Dim newclass = strClassName
I know that this code doesn't work, but how can I do it, if possible.
View 4 Replies
Nov 27, 2011
i am trying to call a public sub within a class that resides within my form1 code:
[Code]...
View 1 Replies
Nov 9, 2009
I have database with class names listed in string field. I want to circle thru records and call certain class.
Eg.
Data table
ID ClassName
1 ClsCreateButton
2 ClsCreatePanel
After retriving this data in dataset(ds.tblClass) I want to do next:
Dim aClass as New ds.tblClass("ClassName")
Do something with aClass...
View 2 Replies
Apr 30, 2010
I'm trying to create a application using VB.Net 2008 and my database is SQL Express 2005 (currently on visual studio installation)Here's my codeThis is on code on class (I'm using data adapter and data set)
Imports System.Data.SqlClient
Public Class Code1
Dim connection As New SqlConnection(Mod1.connString)
[code]....
In the other form its works, but its just for show the data/table itself. in this case i want to make validation for login form. i want user get a notice when they user name and password are wrong.my code doesn't works, is there something wrong?
View 3 Replies
Mar 11, 2011
Im creating a class that will have my common database functions. So for example I've created a function db_con in a class called db_functions.
How do i use that db_con function in for example my homepage vb code?
View 1 Replies