I'm having some difficulty using dde to Excel and the page.setup command with the "scale" paremeter. In the help for page.setup, I can see that the scale parameter can take one of three forms:
1. A number to scale by %, ie 55 = 55%
2. Logical True = fit to 1 by 1
3. 2-dimensional array...
Is it possible to perform "looping" outside of the DATA step? For example, do the following 10 times...
DATA ...
PROC SORT ...
PROC FREQ ...
DATA ...
Just as an example.
This is a very general question. I have a pretty extensive Microsoft SQL background, particularly with writing/designing complex queries. I need to make the leap to SAS and start converting some of my tasks. I'm looking for some good resources, hopefully with examples, to replicate some basic...
Ok, I feel stupid for having to ask this but I can't seem to make it work. I'm following what appears to be a simple example too.
SET @v1 = 5;
WHILE @v1 > 0 DO
SET @v1 = @v1 - 1;
END WHILE;
I'm betting two errors:
1.
Error Code : 1064
You have an error in your SQL syntax; check the manual...
I'm running MySQL version 5.0.16-nt, and according to the documentation, the EXECUTE is a valid GRANT option that I can give. Every time that I try however, I get the following:
Error Code : 1144
Illegal GRANT/REVOKE command; please consult the manual to see which privileges can be used
What...
New to MySQL here and am running version 5.0.16. I've created a simple procedure that I can execute as root. I've created another user that will be used to make my connection from the web. Testing this login, I cannot execute the procedure.
I've looked, but can only find ways to grant access...
I'm using vbscript in my code-behind. I know its ugly, but I ended up using a work-around of converting my array in the code-behind to a pipe-delimitted string, and then just pulling that value over and parsing it back into an array format in the javascript. (Lord have I got a long ways to go.)
I've got a page that reads a list of images from a directory and randomly picks one to display in a particular section. Every 5 seconds, it randomly picks a different image to display.
I'm using setTimeout to accomplish this. The problem I've got now, is that whenever it fires on the 5 second...
I have an array in my asp code that I want to access in a javascript. I found an example of doing this, but it was for a non-array var. I can access an individual array element via:
var myVar = "<%=arrImages(0)%>";
I can also access the "count" for the array, so I can get the entire thing...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.