The documentation on Microsofts web site suggests script control can be used to update variables..
why when I try scriptcontrol1.executestatement "x=100"
does nothing happen
I've tried sc.addcode...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_10174231.html
Zones:
Visual BasicDate Answered: 06/22/1999 Grade: A Views: 0
It works great if I pass a single string, i.e.,
Public Property Let ExcludeText(ByVal sNewExTxt As String)
psExcludeText = sNewExTxt
End Property
But re-dimensioning everything for an...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_20468583.html
Zones:
Visual BasicDate Answered: 01/22/2003 Grade: A Views: 0
Hi,
Simple question, what are the advantages and dis-advantages of pass by ref and pass by val in c++. Also is pass by vlass and pass by ref the same as saying call by val and call by ref?
Th...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_21832648.html
Zones:
C++Date Answered: 05/03/2006 Grade: A Views: 0
I need to know how to create a function that will accept a parameter, allow me to populate it and then after I come back to the program that called it, my variable is populated. in 6.0, I was abl...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_21924592.html
Zones:
C++Date Answered: 07/19/2006 Grade: A Views: 0
How can you pass a DOUBLE variable from VB to a C++ DLL byref so I can update the variable in the c++ DLL with a value and pass it back to VB?
I know the C++ int type maps to the VB long type......
http://www.experts-exchange.com/Programming/Languages/CPP/Q_21934758.html
Zones:
C++Date Answered: 07/28/2006 Grade: A Views: 4
I am trying to do 'assignment by reference' (I'm not sure if that's what it's technically called) in vb.net.
Say I have a method,
Public Sub ChangeColor ( ByRef x as Color )
x = Color.Red...
http://www.experts-exchange.com/Programming/Languages/.NET/Visual_Basic.NET/Q_22006370.htm...
I want to access variants "by reference", because I want to be able to access and modify those variants. But I haven't found a way to do it yet in the case I am working on.
I am working with ...
http://www.experts-exchange.com/Programming/Languages/.NET/Visual_Basic.NET/Q_22073352.htm...
Can you please give me a simple example on how to pass values by REFERENCE in Java Script ?
http://www.experts-exchange.com/Programming/Languages/Scripting/JavaScript/Q_22121789.html
Zones:
JavaScriptDate Answered: 01/13/2007 Grade: A Views: 0
Hi,
I have a question about the performace issue of byref. I have a senerio where I want to pass a dynamic datagrid and an SQL data reader over to a sub using ByRef. The reason for this is for c...
http://www.experts-exchange.com/Programming/Languages/.NET/Visual_Basic.NET/Q_23529758.htm...
When an argument is passed to a function or sub, is the argument passed by value or by ref?
http://www.experts-exchange.com/Web_Development/Web_Languages-Standards/ASP/Q_10252181.htm...
Zones:
ASPDate Answered: 12/29/1999 Grade: A Views: 73