5
votes
5answers
84 views
how to use function(1)(2) in javascript? and how does it work?
I understand calling function(1) but not function(1)(2), how does it work?
also possible for function(1)(2)(3)(4) too?
0
votes
3answers
31 views
How to know how many words a paragraph contains using Jquery or Javascript? What function?
How to know how many words a paragraph contains using Jquery or Javascript? What function?
For example, the sentence
How to know how many words a paragraph
contains using J …
0
votes
1answer
16 views
What is the right way to call an Oracle stored function from ado.net and get the result?
I've got a vb.net codebase using ado to connect to an Oracle database. We have lots of stored procedures that we call, some with multiple out parameters. However, I now need to cal …
0
votes
7answers
130 views
C - how to check whether all required fields of a structure are filled? (most elegant method)
I have a function, which has a pointer to some structure as its argument. How can I check within this function, whether all required fields of the structure have been filled before …
0
votes
2answers
41 views
Rails Custom Model Functions
I'm in a databases course and the instructor wants us to develop an e-commerce app. She said we can use any framework we like, and now that we're halfway through the semester she d …
4
votes
3answers
75 views
How to write an Emacs function to wrap the marked region with specified text
I'm not too familiar with elisp, and am trying to learn. In emacs, I'd like to be able to do the following:
Mark via C-space
Go to where I want the the marking to end, so I hav …
1
vote
2answers
25 views
Call a function in Vim’s `autocmd` command
I want to use the expand function in an autocmd. In particular, I am adapting a tip by Paul Biggar and I wanted to use the following auto command in my .gvimrc:
autocmd FileType t …
0
votes
2answers
26 views
Assembly code as an argument to inline assembler in Visual Studio
I need to pass assembly code as arguments in Visual Studio, therefore have a function e.g.: myasm(char *x) that will accept arguments like "mov eax,eax\n add eax,eax"
Unfortunatel …
2
votes
1answer
83 views
+100
Calling functions with parameters using SOAP with Perl
I am attempting to access a web service using SOAP through Perl and am having issues calling the service's functions that require parameters. The XSD that dictates the SOAP call sa …
0
votes
4answers
65 views
Javascript function as callback
The following script produces "Hello", "undefined", "Hello" message boxes:
function action(callback) {
window.setTimeout(callback, 1000);
}
var obj = {
text: "Hello",
f: …
1
vote
5answers
117 views
Python: Convert string into function name; getattr or equal?
I am editing PROSS.py to work with .cif files for protein structures. Inside the existing PROSS.py, there is the following functions (I believe that's the correct name if it's not …
0
votes
2answers
37 views
Including a function inside single quotes
I am trying to figure out why I can't include a function into this. I am trying to make it so $client will make it's way into the request string. http://test.com/next.xml?file=$cli …
1
vote
6answers
182 views
Access variables in C structures
Dear all!
I am not too familiar with C programming, and I have to do few modifications on a source code, here is the problem:
I have this in a header file :
typedef struct word …
0
votes
1answer
19 views
copy data from sheet 1 to sheet 2 in the same workbook in excel
Hi all,
An excel sheet (sheet 1), gets updated on a daily basis by the Admin dept. I need to copy this data in sheet 1 to sheet 2 automatically in the same workbook.
Is this pos …
0
votes
3answers
75 views
“error: too few arguments to function”
I have a C program called opencv2.0 function :
cvSaveImage( out_img_name, img);
Compiler gcc reports that
too few arguments to function cvSaveImage
The prototype of cvSave …
