A subroutine (e.g. procedure or subprogram) is a portion of code within a larger program, which performs a specific task and can be relatively independent of the remaining code. The syntax of many programming languages includes support for creating self contained subroutines, and for calling and ...
2
votes
1answer
32 views
Perl Hex CRC-16 bit script
I'm new to perl and i would like to know why the arguments are not correcly passed to the subroutine.
Also, are the output values correct?
use strict;
sub crc16 {
use constant POLY => $_[1];
...
1
vote
2answers
47 views
Perl subroutine assistance
Using Data::Dumper and List::Util I'm able to sum the total of each row within my array with a subroutine. This part is correct.
With an easier approach I attempted to print the grand total of all ...
1
vote
2answers
30 views
I can't Wscript.Run a command created by a subroutine
I have an array of folder/subfolder combinations. My subroutine grabs the folder combinations, along with constant paths and a provided date-stamp, and builds the command, returning the variable ...
1
vote
1answer
22 views
How do I pass a variable as a parameter?
I am a newbie in Visual Basic and I got stuck while trying to program a Tic Tac Toe game. I was trying to pass a variable as a parameter for a subroutine but I have no idea how. Here is my code.
...
0
votes
1answer
31 views
VBA: Call Subrountine From A Dynamic Module Reference
If you check out my history you will see that I have been calling Worksheets references through method calls. A working example of one such method:
'In module GlobalRefs
Function W_ExampleWS() As ...
0
votes
1answer
31 views
Assembly, PDP11, using ascii code to jump to specific label
I have a small question:
I have a subroutine that receives a letter (let's say "A") from the stack, and I want to jump to a label with the same name.
For example:
main: mov -(sp), r1
br r1
A: mov ...
2
votes
1answer
54 views
perl: passing subroutines rexexp replace with search results
i have the following perl subroutine:
sub rep {
defined ($filein = shift) || die ("no filein");
defined ($fileout = shift) || die ("no fileout");
$look = shift;
$replace = shift;
open (infile, ...
0
votes
2answers
42 views
How to write a subroutine for forming an xml in perl
Suppose, I have 2 cases one is for sms and another for mail. I need to send a message in both cases. Now, for sending sms I use the following xml.
my $addxml="<tolist><to>";
...
0
votes
1answer
29 views
LinkedCell to Checkbox calling onAction Subroutine in VBA?
I have a great number of checkboxes calling a subroutine whenever a checkbox is ticked/unticked. Now I would like to get the address to the linked cell of the checkbox that called the sub. I've tried
...
5
votes
2answers
103 views
perl subroutine argument lists - “pass by alias”?
I just looked in disbelief at this sequence:
my $line;
$rc = getline($line); # read next line and store in $line
I had understood all along that Perl arguments were passed by value, so whenever ...
0
votes
1answer
99 views
Excel VBA calling sub from another sub with multiple inputs, outputs of different sizes
I just started to use Excel VBA today. Therefore, I will have a simple question. I am sure this question was asked before but neither the questions nor the answers did not get me there.
I would like ...
1
vote
3answers
52 views
Java: What is the difference between subroutine and methods?
What is the difference?
public write(){
// dostuff
}
Is the code above a subroutine, a method, or a program block?
I don't understand these terms because the meaning of them are all so similar?
...
1
vote
3answers
43 views
Perl sub made from string
I am trying to use a sub in perl that is contained in a string.
Currently I have something like
$sub = "sub{ my $in = shift; if($in =~ /bla.*wam/){return 1;}}";
I try and use it by doing
...
7
votes
1answer
118 views
perl assignment to hash in subroutine return gets weird
Running perl 5.12.4
Am getting disparity between result of a function when a hash is assigned within the return statement or beforehand. Easiest example is:
perl -e 'sub s1 {
my @a=qw/b 1 c 2 a 3 a ...
1
vote
1answer
36 views
Nasm entry and exit code of routines
Is there any way to generate the following header and footer for routines in nasm without the need to explicitly code them every time I define a new routine?
Header:
push ebp
mov ebp, esp ...
0
votes
1answer
36 views
calling one autohotkey from another
^!a:
run do
run lots
run of
run things
return
^!b:
run dosomething small
; --- and here I want to do everything that is done for ^!a
I can think of two theoretical ways of doing it: 1. By somehow ...
0
votes
1answer
39 views
Openmp Fortran Subroutine
I am trying to parallelize a subroutine using Openmp.
The subroutine contains a successive over relaxation loop which runs on the total
error which is a shared variable. Now, when I parralelize the ...
1
vote
2answers
74 views
Fortran90: how to keep variables defined in a recursive subroutine from updating upon internal calls?
With the following code, when variable "a" and "a1" are equal to 2, I would like the recursive subroutine to create 2 nested do loops of length 4 (maxdev=4). I am attempting to control the level of ...
0
votes
0answers
54 views
Trapezoidal rule using subroutine
I am trying to write a program on fortran using subroutines. The program needs to be able to integrate the function 3x^2-5x-4 from x=3 to x=8 using the trapezoidal rule.
So far I have wrote:
PROGRAM ...
1
vote
2answers
52 views
What kind of enhancement is this (FORM USEREXIT_*), and how do I implement such an enhancement
I have an include RV60AFZZ, and a form USEREXIT_NUMBER_RANGE.
On one system, this form contains an addition
*{ INSERT ASDF555555 1
"Custom code ...
0
votes
1answer
86 views
MIPS Assembly subroutines & stacks, Exception 5 bad data address, Exception 7 address error in store
I'm trying to figure out some stack frame business with assembly, and i admittingly have little idea what i'm doing... but i think i'm close?
My program calls a subroutine that counts down from 10 ...
0
votes
1answer
39 views
Pass value to referenced subroutine in perl
I have few referenced subroutine and I need to pass the value to the referenced subroutine.
Is there any way to do it.
#Sample Code
sub CreateHtmlBox {
my ($box_type,$hash_ref) = @_;
...
0
votes
0answers
57 views
fortran code optimization-How to auto-generate the number of times each subroutine has been called
Is there any way we can figure out how many times each subroutine has been called? not obviously by adding a counter for each subroutine but like a self-generated report after the program finished ...
6
votes
4answers
222 views
What is the reason to use parenthesis-less subroutine calls in Perl? [closed]
As per perldoc perlsub:
The & is optional in modern Perl, as are parentheses if the subroutine has been predeclared.
I notice that a lot of times, people use the fact that you can omit ...
3
votes
2answers
100 views
Copying the first N keys and values of a Hash of array
I have a hash of arrays.
%HoA = (
'C1' => ['1', '3', '3', '3'],
'C2' => ['3','2'],
'C3' => ['1','3','3','4','5','5'],
'C4' => ['3','3','4'],
'C5' => ['1'],
);
...
1
vote
1answer
112 views
How to know the procedure by which subroutine called? in excel vba
I sometimes has error on subroutine.The subroutine is called by many procedure. So, I try to find caller procedure for step over.
By the way, user-defined function can know the caller.
It is ...
-1
votes
1answer
90 views
Calling subroutine N number of times within a foreach loop
I have the two hash of arrays (HoA) that correspond to the following file:
A 10 15 20 25
B 21 33 21 23
C 43 14 23 23
D 37 45 43 49
Here are my HoAs.
my %first_HoA = (
...
1
vote
2answers
18 views
a generic dialog load routine
i have alot of dialog in my winform app and i do this for each one of them when i need to load
Dim frm As New Settings
frm.ShowDialog()
frm = Nothing
i was thinking if its possible ...
1
vote
2answers
157 views
How to pass value of a hash of arrays into a subroutine?
I have a hash of arrays. I'm trying to do the following: as I'm looping through the keys of the hash, I would like to pass the value of the hash (in this case the array) into a subroutine.
Once I'm ...
0
votes
2answers
40 views
Retrieve hash between two subroutines
I would retrieve my hash table when i pass it in argument at a function. In my case, function1 return my hash table, then i pass my hash table in argument to my function2 and in my function2 i would ...
-1
votes
1answer
74 views
Perl : retrieve array of hash from subroutine return 2 hashes [closed]
I have a subroutine which return two hashes and contains in key a ID and in value an ARRAY.
So i would access with key to retrieve my array.
sub sub1{
my code
return (\%hash1, \%hash2);
}
sub sub2{
...
-1
votes
2answers
96 views
Visual Basic - How to send values in a subroutine back to the main program?
I have an assignment in Visual basic I don't know how to do. I am to create 2 sub routines and 1 function that send values back to main calling program. The main program populates the combobox and ...
0
votes
1answer
113 views
Is there a way in Fortran to write to an output file from subroutine when the file has open statement in main program.
In Fortran, I am trying to write to an output file from subroutine when the file has open statement in the main program. In other words, how do I pass file unit number (terminal number) to subroutine ...
0
votes
1answer
160 views
FORTRAN: Segmentation fault, when passing functions with array arguments to subroutine
I am working on a project (which is due tomorrow :/) and encountered a problem when I tried to use a simplex algorithm on a function I wrote myself. It didn't work, and after now 5 hours of searching ...
0
votes
2answers
193 views
Pass variable from a child to parent in KSH
I have to work with KSH (yeah that hell shell).
I need to use a fork, a subroutine as following:
#!/bin/ksh
PIPE=PIPE_$$
PIPE_ERR=PIPE_ERR_$$
export TEST_FILS
$(. ...
2
votes
3answers
108 views
Getting wrong argument value when using @_ in Perl subroutine
I encountered a strange bug while using @_ to pass a single argument to a Perl subroutine. The value passed to a subroutine changes right after entering the subroutine.
Code example:
my $my_def = ...
0
votes
2answers
54 views
How to generate hash from subroutine?
I am trying to collect some snapshots of my db and do some math with it , but I'm failing to return my hash from my subroutine ...
As you can see I have 2 hashes %dbmcfg,%bufsnap,%dbsnap I have ...
0
votes
2answers
93 views
Perl variable set from query string not available in subroutine (available in some subroutines!)
Perl has beaten me down good today and I have a question. I'm accessing a perl script via a link from another perl script. agent.pl?agentid=40
In the agent.pl script I'm using the displaying the ...
1
vote
1answer
110 views
Fortran: Calling a function in a module from a procedure in another module
I admit the title might be a bit obscure, so let me give an example of what I want to do and what doesn't work. I have a main program which calls a subroutine which is in a module:
Program ...
2
votes
1answer
247 views
How to define a procedure type that works for a local procedure? [closed]
I'm creating a request queue in a custom thread TMyThread and I'm having difficulties defining a procedure type which can be used for a subroutine. I have a record which represents the request, a ...
1
vote
1answer
178 views
Passing multi-dimensional array in fortran subroutines
I am trying to understand a Fortran code written by someone else. The code is doing what it is supposed to do so I am assuming that it works fine. A subroutine called "fft" is being called from ...
0
votes
1answer
134 views
nasm calling subroutine from another file
I'm doing a project that attaches a subroutine that I wrote to a main file included by the teacher. He gave us the instructions for making our subroutine global but apparently I'm an idiot. The two ...
1
vote
2answers
108 views
How to create subroutine in mysql perl with variables
I have two mysql commands. I want to create a subroutine with these two mysql commands for the rest of my data that I have to search through. I have a lot of entries. Is there a way to create a ...
3
votes
3answers
118 views
Why does Perl sub s require &
The following file does not compile:
sub s {
return 'foo';
}
sub foo {
my $s = s();
return $s if $s;
return 'baz?';
}
The error from perl -c is:
syntax error at foobar.pl line 5 ...
-1
votes
2answers
67 views
how to use particular external subroutine in Perl
I have a pm file that contains several subroutines. Following is the example of the script "myscript.pm":
sub a();
sub b();
sub c();
a(); #this can not be deleted in my situation in this pm ...
1
vote
1answer
89 views
Access Continuos Subform Repeating Information
Access Database Form1 is a Continuous Form that has an EmployeeID field you can double click to take you to another form that contains information about the Employee. In order to retain the correct ...
1
vote
4answers
120 views
Perl Anonymous Subroutine/Function error
I have the following piece of code: (extremely simplified for the purposes of this question, but perfectly illustrates the problem I am having)
#!/usr/bin/perl
use strict;
use warnings;
&outer;
...
0
votes
1answer
111 views
How to reference and dereference a hash of hashes for subroutines in Perl
Does anyone know how to dereference a hash of hashes so that I can use it in my subroutine. As you can see, I'm having trouble accessing my Hash of Hashes data structure in my subroutine.
my ...
4
votes
1answer
73 views
local($?) in END blocks - Why does it matter what value was assigned to it?
At work, we encountered an error when interacting with child processes in an object's destructor, and eventually traced it to the $? variable being overwritten during the wait calls. This happens ...
0
votes
1answer
218 views
For VBScript, what's the advantage of a subroutine?
I may simply misunderstand the difference between the two: If the only difference between a subroutine and a function is that a function has the option of returning a value while a subroutine does ...
