The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
26 views

VBA ByRef argument acting differently whether passed by parenthesis or not

Just regarding passing arguments in vba, ByRef seems to act differently if the argument is passed in parenthesis rather than explicitly stating them using ':=' for example: Sub CallingProcedure() ...
1
vote
2answers
88 views

Access VBA - Changing TextBox value from within a function (ByRef)

I'm trying to write a sub that will get two parameters - a textbox in a form and a text. My intention is that the function will append the text into any textbox. Sub AppendTextBox([any textbox in my ...
4
votes
2answers
94 views

By Ref parameters in VB.NET and C#

I have question related passing parameters byRef, I have VB.NET based class library in which some functions are defined with byref argument types. These parameters are parent class objects and when I ...
0
votes
1answer
28 views

term being added to a string without instruction to do so

I have a function which sets a variable for the current user. The variable name is prefixed with the name of the module - basically, the way the application is set up, Client is a class, Server is a ...
0
votes
0answers
18 views

Silverlight 5, ByRef triggers OnPropertyChange, ByVal doesn't?

VB.NET in an SL5 project. I was trying to debug a problem with my MVVM where a OnPropertyChanged was being triggered because I passed in an object (objSize) ByRef and then assigned a local property ...
0
votes
1answer
48 views

Error in values passed byref calling a dll in python

I have to different dlls exporting this functions (one function each dll): dll1: DECLDIR void getFrameworkVersion(int* pMajor, int* pMinor, int* pBugfix); dll2: void __stdcall ...
0
votes
3answers
65 views

Using ByRef and ByVal

I'm fairly new to programming and I was told that I should be passing things using ByRef and ByVal, but when I do so, I get an error saying: Error 3 Method 'Private Sub Activate_Click(ByRef ...
0
votes
2answers
97 views

VB dictionary of Objects ByRef

I want to create a Dim Dict As New Dictionary(Of String, Object) which would point my strings to specific COM Object classes, i.e. Dict.Add("NODES",Visum.Net.Nodes) I'd have around 20 keys in ...
0
votes
3answers
163 views

Classic ASP - passing a property as byref

In classic ASP I have an object, call it bob. This then has a property called name, with let and get methods. I have a function as follows: sub append(byref a, b) a = a & b end sub This is ...
2
votes
1answer
83 views

converting vb.net to c#- optimise parameter passing

I want to move a vb.net app to c#. The vb.net app has thousands of byref parameters that should be byval. Does anybody know a way to automate checking whether each parameter passing approach can be ...
1
vote
3answers
118 views

How to reference a class variable from another class in vb.net

I have the following (simplified to make this easy to read) first class: Class MainWindow Private mFile As myFile 'myFile is a class containing a bunch of stuff Sub go() dim ...
1
vote
1answer
191 views

ByRef argument type mismatch error on Join()

I've looked through the ByRef errors reported here, but still can't find the error of my ways. I have this, where OrderedCaseList() is a function of type Variant. It's called correctly and returns an ...
1
vote
1answer
78 views

implement abstract byref method in c#

I have an abstract class method: Public Class Base_BLL { Public Overridable Function Persist(ByRef x As Base_BO) As Base_BO { } } Public CLass ActualBLL Inherits Base_BLL { } public ...
0
votes
3answers
128 views

PHP modifying array elements by reference

I have a large data-set that I'm checking the contents of; I do this validation while creating an internal array of the data; to avoid looping over the array again later, I would like the validation ...
3
votes
2answers
172 views

Is it faster to transfer strings by reference between functions?

Is it better to transfer small or large strings by reference in C#? I assumed transferring by value would force the runtime to create a clone of the input string, and thus be slower. Is it recommended ...
4
votes
1answer
105 views

How to accept a function reference as an argument?

I'm currently passing a EventHandler object to a util function like this: Timer newTimer(int interval, System.Timers.ElapsedEventHandler handler) { .... timer.Elapsed += handler; .... } ...
0
votes
1answer
359 views

Declare a function to take byref and byval argument

What do you do (in recent PHP) when you want to call a function with byref arguments only some of the time? function blah_byval ($arg) { /* some code */ } function blah_byref (&$arg) { /* same ...
1
vote
4answers
646 views

Is it possible to declare a local/class instance member reference variable in VB.net to read/update same object referred by another variable

In C++, it is possible to do: int x; int& foo = x; // foo is now a reference to x so this sets x to 56 foo = 56; But is an equivalent possible in Visual Basic .net (VB.net)? I am aware of the ...
1
vote
1answer
63 views

PHP 5: return by ref method produces unexpected results

I created a simple class to manage a tree data structure which seemed to behave strangely (code to follow). When it became apparent that this was not a mistake by me I created a test case which ...
1
vote
2answers
215 views

VBA byref argument mismatch

I have created a class called Class1, and in another module, I want to use the class like this: Dim budgeunit As Class1 Sub Creattree() Dim lvl1p, lvl1m, lvl1dm As Class1 Set lvl1p = New ...
1
vote
3answers
89 views

.NET COM Dll passing byte[] by reference

I have a COM dll that I have created in .NET. I am accessing it via silverlight. The issue I am having is that I am passing a byte[] to the COM dll but it does not seem to work properly. I have tried ...
0
votes
1answer
157 views

use caption of pressed button from main form in query of other form

My problem is: Main form has 9 command buttons and continuous subform. Click on some button open other form with text box for entering quantity and two command buttons. When click on the first ...
0
votes
1answer
535 views

Class Not Updating Variables passed byref

I have a class in vb.net defined as public class A class A is created on Load and gets called once per program loop The constructor for class A includes the argument (byref Value as long) I have a ...
1
vote
3answers
2k views

What does ByRef mean in vbscript when passing to a procedure?

I have the following start to a procedure call strReturn = OrderCreate(strGen8, _ strUID, _ Order, _ boolRecapFlag, _ And on ...
2
votes
4answers
1k views

Pass PHP Class as Parameter

How can i pass a class as a parameter in my function So far i've tried $sc = new SampleClass(); SampleFunction($sc); function SampleFunction(&$refClass) { echo $refClass->getValue(); } ...
3
votes
0answers
274 views

passing byref parameters to VB6 COM DLL from Python

I have a VB6 COM DLL with a function declared as follows: Public Function testFunc(ByRef v1 As Long) As Boolean When I try to call this from Python2.7 using: var1 = c_long() VB6DLL.testFunc(X1) ...
3
votes
2answers
2k views

Why is it not necessary to indicate ByVal/ByRef anymore?

I just installed Visual Studio 2010 Service pack (proposed on Windows Update), and I can see a new feature on the "intellisense" that means when I write a Function or Sub in VB.NET it doesn't ...
2
votes
1answer
211 views

Why can't a function with byref be converted directly to delegate?

Under normal circumstances, F# functions can be converted to delegates by calling new DelegateType and passing in the function as an argument. But when the delegate contains byref parameter, this is ...
1
vote
3answers
337 views

VB.Net, EventArgs, ByRef and ByVal

In VB.Net, I have an object named WorkflowButtonEventArgs that inherits from System.EventArgs. The WorkflowButtonEventArgs class contains two ByRef Properties. These are objects that are in memory, ...
3
votes
5answers
254 views

Invoke generic method with the generic type from a System.Type

below is a code example and the question, please note that I can NOT use C# 4.0 and the dynamic keyword. static class TestClass { static void Main(string[] args) { Object o = ...
0
votes
1answer
261 views

Updating SelectedItem in DataGrid ByRef and Retaining SelectedItem Behavior WPF

I have a datagrid with an Observable Collection of a custom object. The selectedItem binding is set to SelectedCustObject in my view model. I've wired up a property Changed handler so I can update ...
0
votes
1answer
291 views

How do you access an object by reference (not by value) in a jsp:include file?

a little back story: I am working on a file that got to be very large, eventually resulting in the following error: The code of method _jspService(HttpServletRequest, HttpServletResponse) is ...
0
votes
1answer
299 views

How do I get SingleOrDefault to return object by reference from a list?

Consider these lines of code: //prodProdGroup is a list within the itm object that I need to search. The items //within the list are of type ProductionCostCalcHelper. I need to find one //of ...
2
votes
1answer
87 views

Is a static member movable or fixed anyway?

In another topic, a nice guy told me by quote Eric Lippert's words:The significance of static has to do with the knowledge and certainties the compiler has at compile time of a certain ...
3
votes
1answer
416 views

Does specifying the OutAttribute on ByRef internal methods currently do anything?

VB.NET doesn't have out parameters, but you can specify <Out()> ByRef on COM and P/Invoke methods to get the same effect for external methods. Does specifying the same on internal methods (i.e. ...
2
votes
1answer
157 views

PHP4 parameter by reference?

I'm quite used to PHP5 but have to write a PHP4 sync script, now I'm doing some digging to find the differences between PHP5 and 4. Problem is that I get alot of contradiction, some sites tell me that ...
0
votes
3answers
436 views

cache being modified instead of local variable (pass by ref)

I am writing a .net c# application. I retrieve some data from an xml file, cache the data to the .net cache and return it from my method. I perform some processing on the data and return it another ...
2
votes
3answers
2k views

Classic asp: Function call by reference doesn't work with an array

I have an array witch I pass to a function by reference to sort it. However, seems like the array is passed byval. Can anyone solve what's the problem? (Also sort workarounds accepted) 1) The ...
0
votes
1answer
18 views

The Question of By Reference Recommended on Arrays?

This is something I needed to clear up awhile back. In PHP 5.3+, I wanted to ask if this improves performance on a very large array result? And do you have a way I can demonstrate the proof? ...
4
votes
2answers
3k views

VBA - Returning array from Property Get

If arrays are returned by reference, why doesn't the following work: 'Class1 class module Private v() As Double Public Property Get Vec() As Double() Vec = v() End Property Private Sub ...
1
vote
2answers
257 views

In .NET if you pass a struct into a method with an interface parameter does it box the value?

From a simple test I can see that if you pass the struct into the method it is passed by value but if you first assign it to an interface it is passed by reference. interface IFoo { int Val { get; ...
5
votes
2answers
2k views

Func(Of Tin, Tout) using a lambda expression with ByRef argument gives incompatible signature error

Why does this: Private [Function] As Func(Of Double, String) = Function(ByRef z As Double) z.ToString gives the following error: Nested function does not have a signature that is compatible ...
1
vote
2answers
5k views

Return object from Powershell using a parameter (“By Reference” parameter)?

I have one PowerShell (2.0) script calling another. I want to receive back not only the main output, but an additional object that I can use separately, e.g. to display a Summary Line in a message. ...
4
votes
5answers
2k views

Passing string ByVal in VB.NET AND C#

So strings are reference types right? My understanding is a reference to the string in the heap is passed even when you pass the string ByVal to a method. Sooo..... String myTestValue = ...
3
votes
1answer
443 views

Understanding byref, ref and &

Well, I came to understand that F# is able to manage references (some sort of c++ like references). This enables the possibilities to change value of parameters passed in functions and also enables ...
0
votes
1answer
712 views

'ByRef' parameter '<parametername>' cannot be used in a lambda expression

I'm using SharpZipLib to compress files. The library is wrapped in a plugin interface, in a separate DLL. I pass the plugin dll a ByRef parameter to keep track of the compression progress. ...
6
votes
3answers
683 views

F# member constraints + ^a byref parameters

After some playing around F# member constraints feature and writing function like this: let inline parse< ^a when ^a : (static member Parse: string -> ^a) > s = (^a: (static member ...
3
votes
4answers
7k views

ByRef vs ByVal Clarification

I've read a lot on this, but am having a hard time thinking through this tonight. (Maybe it's the hydrocodone... just had a root canal. Anyway...) I'm just starting on a class to handle client ...
0
votes
5answers
161 views

Passing an object to a method and then calling an extenstion method on that object

I was working on a method yesterday and ran into something strange, here is dumbed down version of the code: Basically the problem is that the OrderBy applied in the Bar.PopulateList method is not ...
0
votes
1answer
377 views

VB.NET Pointer to value types

VB.NET 2010, .NET 4 Hello all, I'm by no means a good programmer and I'm just trying to wrap my head around some of this stuff, so please forgive me if this is a dumb question. I want the following ...

1 2