1
vote
5answers
21 views
Including template files and dynamically changing variables within them
To make life a little easier for myself I would like to build a very simple template engine for my projects. Something I had in mind was to have .html files in a directory that get included to a page …
0
votes
4answers
33 views
How to create a function and call it on event.
Hello,
I've included code for my textbox/textarea counter I put together. (hope it doesn't get mangled in my post...)
The script works quite well, however I know my code is ridiculously bloated due …
0
votes
3answers
105 views
To clone or not to clone
I wrote a Scale9Bitmap class in AS3 and it requires the dev to set the BitmapData and a Rectangle for the scale9Grid. I'm wondered what is customary for the public get functions of both. Do I return a …
0
votes
2answers
47 views
calling a function in file1.as from file2.as?
How can I call a function in file1.as from file2.as?
here is the code.
package com.modestmaps
{
import com.modestmaps.overlays.MarkerClip;
import flash.display.Graphics;
import …
0
votes
3answers
49 views
ESP Error when I call an API function?
platform : win32 , language : c++
I get this error when I call an imported function I declared:
Run-Time Check Failure #0 - The value of ESP was not properly saved
across a function call. This …
0
votes
2answers
16 views
JSP Problem ussing implicit object (session) in a function
Can the object of type HttpSession called session be accessed from a function?
In a simple jsp page I have a function(see below) defined in the header of the page, and set to an onclick handle of …
0
votes
0answers
18 views
How to reuse custom functions across multiple Crystal Reports? (Visual Studio 2005)
I'm using Crystal Reports within Visual Studio 2005 and I have a few custom functions that I'd like to use in all my reports. Is there a way I can add these to all the reports without simply copying …
0
votes
3answers
29 views
Custom Functions in Crystal Reports 8.5 ?
Hi all... I could've sworn there was a way to do this (without DLLs), but going through the first several pages of google, I can't find it. Maybe I'm thinking of something else.
I'm having to do …
0
votes
3answers
28 views
Drupal theme function not being overridden
I'm using Ubercart and I'm attempting to override the following theme function theme_address_pane() which is in uc_cart_checkout_pane.inc. So I wrote the following function in template.php:
function …
0
votes
4answers
48 views
SQL SUM() function field
I have a database which contains some numerical fields; now i want to create another field which displays the sum of one of these fields. How can I create that field?
thanks
0
votes
4answers
55 views
MS Access 2007 sql functions?
Does MS Access 2007 support creation of user defined sql functions?
if so, where is the option for it in the menu?
-1
votes
1answer
51 views
Matlab loops for a function
Hi, I am trying to make a loop to redo a Matlab function 1000 times. Here's the program
d = unifrnd (0,10,[10,1]);
c = d.^(-2);
a = round(unifrnd(0,1,[1,10]);
e = a*c
btotal = e+1
SIR = 1/btotal
…
1
vote
2answers
85 views
Returning an array from a function (PHP)
I have this function coded to check the status of a Rapidshare link using their API:
function CheckLink($fileid, $filename)
{
$q = …
3
votes
3answers
102 views
Return pointer from function C
In my C program this function is going to handle all the work of opening a specific file and then return the file pointer, so main or other functions can read the content by using fp, but so far i …
0
votes
3answers
42 views
I’m trying to do Ackermann’s Function on IBasic
Ackermann's Function is a recursive mathematical algorithm that can be used to test how well a computer performs recursion. Design a function ackermann(m,n), which solves Ackermann's Function. Use …
