In V6..
-----------------------
How do I write this so a variable will
dictate which sub proc will run?
If x = 2 then
DoThat <----how can I make this a variable?
End If th...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_20095983.html
Zones:
Visual BasicDate Answered: 03/26/2001 Grade: A Views: 0
Is it possible to call a procedure by using a variable name for the procedure? If so, I can't get the syntax right. I have a group of subs that I'd like to name with numbers: Sub_1; Sub_2; Sub_3, e...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_20280426.html
Zones:
Visual BasicDate Answered: 06/14/2002 Grade: A Views: 0
I have a modal form which, on the click of a button, has to call a subroutine in the form that opened it and pass a few parameters to it.
I've made the procedure Public and have tried calling it...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_20496867.html
Zones:
Visual BasicDate Answered: 02/05/2003 Grade: A Views: 0
In my script I have a loop that loops out matches. For each match a subroutine match() is run. Inside match() two other subroutines are called for: result() and test().
Now to the question:
I...
http://www.experts-exchange.com/Web_Development/Web_Languages-Standards/ASP/Q_21405845.htm...
Zones:
ASPDate Answered: 05/02/2005 Grade: A Views: 0
I have a rather long ASP page that I've broken up into functions.
The order goes like this:
call GetReportRules()
GetReportRules() calls ProcessSupplierReport()
Based on a field value, ...
http://www.experts-exchange.com/Web_Development/Web_Languages-Standards/ASP/Q_21449851.htm...
Zones:
ASPDate Answered: 06/08/2005 Grade: A Views: 0
Hi experts,
Having trouble with this code, I need to email many members from a database here is the code I need cleaned up:
Dim rs
Dim sSQL
Dim strEmailAddr
Dim strLastName
Dim strFi...
http://www.experts-exchange.com/Web_Development/Web_Languages-Standards/ASP/Q_21746327.htm...
Zones:
ASPDate Answered: 02/21/2006 Grade: A Views: 0
I have several files I need to parse and then combine the data. Here is a rough idea of what I plan to do:
open REPORT, ">report.txt" or die "Cannot open report.txt $!";
open AAA, "aaa.txt" or...
http://www.experts-exchange.com/Programming/Languages/Scripting/Perl/Q_21775121.html
Zones:
PerlDate Answered: 03/20/2006 Grade: A Views: 0
Is there a way to define a sub-routine in a stored procedure so that I could invoke it multiple times when executing my stored procedure. For example, I need to perform a set of commands several ti...
http://www.experts-exchange.com/Microsoft/Development/MS-SQL-Server/Q_10062432.html
Created a sub routine like so:
Public Sub FixedPutFile()
Dim db As Database, rs As Recordset
Dim FileNumber As Variant
Dim Weights As String
Set db = CurrentDb...
http://www.experts-exchange.com/Microsoft/Development/MS_Access/Q_10459456.html
Zones:
MS AccessDate Answered: 06/15/2000 Grade: A Views: 0
I'm in sort of a dilemma, and I would like to hear your opinions, as experienced developers, on this matter. It's sort of an ethical issue, concerning the use of GOTOs.
In the old days, I used...
http://www.experts-exchange.com/Programming/Languages/Pascal/Delphi/Q_20300403.html