Skip to main content
The 2024 Developer Survey results are live! See the results

Questions tagged [parameter-passing]

parameter-passing is the process of assigning values to the parameters of a function

0 votes
1 answer
24 views

VB.net Multiple ListBox Selected Items carried into to separate form

Not even sure if what I am trying to do is possible. My goal is for the user to select multiple items from a list box. which are file names and be able to plot the data that's in the files on a ...
Nate's user avatar
  • 25
0 votes
1 answer
34 views

"The object square is not applicable" but `square` is one internal procedure in MIT-Scheme

Recently when I self-learnt MIT 6.5151 course, I first read CS 61AS Unit 0 as the preparation. Then I have read SICP 1 to 2.1 (with related lecture notes) as ps0 requires (also read 2.2.1 as CS 61A ...
An5Drama's user avatar
  • 377
0 votes
0 answers
14 views

Problems with parameter estimation in R for an SIRD model [closed]

I've made an SIRD model using the deSolve package for the spread of COVID-19 in early 2020 in Mexico. It involves 4 parameters and I am now trying to estimate the values of these parameters using it's ...
Tom FitzGerald-Jones's user avatar
1 vote
0 answers
69 views

Argument passing and dangling pointers [duplicate]

I know that, in general, when calling a function, the evaluation of the arguments of the function call can happen in any order, but I'm in doubt about this particular situation (imagine T has a move ...
ABu's user avatar
  • 11.4k
0 votes
1 answer
28 views

Jetpack Compose NavGraphBuilder uses composable as a method parameter. How?

This is from an Android compass app project at https://github.com/AkarshGuptaa/Compass.git which compiles and runs without bugs I'm wanting to know how compassComposable: @Composable () -> Unit is ...
Doug las's user avatar
0 votes
0 answers
28 views

Invalid length parameter passed to the RIGHT function. SQL

I have this code in my View on a sql database RIGHT([Site].Site, CHARINDEX('-', REVERSE([Site].Site)) - 2) AS [Project Code] and it's causing this error as there are some entries that would make it ...
Dasal Kalubowila's user avatar
0 votes
0 answers
44 views

master-detail: modify all rows in detail table on click of master row

I've created a master-detail page in Oracle APEX with the master table st_training_details, where t_id is the primary key, and the detail table st_tni_master, where tni_details references t_id as a ...
Rohan Mathur's user avatar
0 votes
2 answers
37 views

Protected Local Storage is very slow

I have 13 parameters that when a user log in website will be set like this: `ProtectedSessionStore.SetAsync("iduser", iduser); ProtectedSessionStore.SetAsync("unitid", unitid); ...
Kasra Ghavami's user avatar
1 vote
1 answer
45 views

Nested Parameters in unix

export ABC=1 a="RESOLVED VALUE IS : ( \$ABC )" echo $a ...emits as output: RESOLVED VALUE IS : ( $ABC ) I would like to resolve the ABC parameter value when I do echo/eval or anything on ...
Rowdy's user avatar
  • 11
-1 votes
1 answer
40 views

Dynamic menu building and navigation using URL parameters PHP [closed]

<!DOCTYPE html> <html lang="en"> <head> <title>Web Programming using PHP - Coursework 2 - Task 1</title> </head> <body> <header> ...
Muhammad Ali's user avatar
0 votes
0 answers
23 views

Passing variable from shell script to another script using expect

I'm trying to write a script to be able to pass a variable using script_a.sh which extract a value from the database to pass another script script_b.sh which uses this value as part of the input for ...
Toonzen's user avatar
2 votes
1 answer
51 views

How to accept inline inputs in a noninteractive powershell script

I'm trying to put together a powershell script that we can use for some custom scripts to a commercial IT monitoring solution (StableNet by Infosim.de). The product has a neat feature on passing on ...
ThomasN's user avatar
  • 23
1 vote
1 answer
53 views

PowerShell Call SSIS package, Pass Two (or More) Parameters

I am writing a group of PowerShell scripts to call SSIS packages, passing in the SQL password obtained from an Azure key vault. When the SSIS package has a single connection it works just fine - this ...
Marianne Seggerman's user avatar
0 votes
0 answers
30 views

How to Dynamically update a parameter value based on data from a client’s website to PowerBI Desktop report

I am currently working on a Power BI Desktop project where I need to dynamically update a parameter value based on data from a client’s website. The goal is to have this parameter value automatically ...
Viral Gajjar's user avatar
2 votes
1 answer
58 views

Why doesn't `randrange(start=100)` raise an error?

In the docs for randrange(), it states: Keyword arguments should not be used because they can be interpreted in unexpected ways. For example randrange(start=100) is interpreted as randrange(0, 100, 1)...
Joe's user avatar
  • 891

15 30 50 per page
1
2 3 4 5
543