subroutine
excel vba subroutine call fails
I have the following problem. I want to call a soubroutine for changing the background color for a cell range. The cell range is calculated with cells(1,1) and then the address is calculated to receiv[详细]
2023-03-10 18:52 分类:问答excel vba call subroutine with variables
I defined the follow开发者_开发知识库ing subroutine: Sub EnterCellValueMonthNumber(cells As range, number As Integer)[详细]
2023-03-10 12:28 分类:问答Perl not printing properly
Ok, so I have some sub routines similar to what you see below, my issue is that the print function is not printing out until the actual command is complete, I want it to print[详细]
2023-03-08 08:26 分类:问答How to create a Perl subroutine that accepts a block of code
I have a set of subroutines that look like this: sub foo_1($) { my $name = shift; my $f; run_something();[详细]
2023-03-08 06:32 分类:问答Callback functions: what are they in computer programming languages?
I see a lot of callback functions in low-level API\'s like Win32. But I am confused on what a callback function or callback subroutine is. Is an event in c# considered a 开发者_开发问答callback functi[详细]
2023-03-03 11:35 分类:问答How do you access function parameters in Perl?
In C++ I would do something like this: void some_func(const char *str, ...); some_func(\"hi %s u r %d\", \"n00b\", 420);[详细]
2023-02-27 06:15 分类:问答Using a TRAP routine from within a subroutine? - LC3 Assembly
So, I have finished an assembly program that asks for a character, reads it, echos it, repeats that four times, then prints out those characters in a consecutive string. I then wanted to experiment wi[详细]
2023-02-13 06:33 分类:问答perl subroutine reference
I have a set of fields with each field having different set of validation rules. I have placed the subroutine reference for validating a hash-ref.[详细]
2023-02-05 15:32 分类:问答Why does this Perl produce "Not a CODE reference?"
I need to remove a method from the Perl symbol table at runtime.I attempted to do this using undef &Square::area, which does delete the function but leaves some traces behind. Specifically, when $[详细]
2023-02-03 18:21 分类:问答why are sub routine arguments slower to use than outer variables?
Running the following code : use strict; use warnings; use Benchmark; my $defaultArray = [1,2,3,4]; sub VARIABLE {[详细]
2023-01-27 02:27 分类:问答