Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Fuzemmo

    DDE page.setup scale

    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...
  2. Fuzemmo

    Format vs Informat

    Thank-you Chris. That is what I "thought" it was, but its nice to get confirmation.
  3. Fuzemmo

    Format vs Informat

    Does anyone have an easy to understand/explain definition of the difference between these two concepts?
  4. Fuzemmo

    Looping

    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.
  5. Fuzemmo

    SAS Samples

    Absolutely Klaz, and thank-you for your reply. First, let me give some sample dataset defines. DS1 (col1 string 40) DS2 (col1 string 1) (col2 string 9) (col3 string 5) (col4 number) DS3 (col1 number) (col2 string 5) (col3 number) DS4 (col1 string 5) (col2 string 9) (col3 number) Now, given...
  6. Fuzemmo

    SAS Samples

    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...
  7. Fuzemmo

    WHILE Loop

    5.0.16-nt If I'm reading the "manual" correctly, my version should be fine.
  8. Fuzemmo

    WHILE Loop

    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...
  9. Fuzemmo

    GRANT EXECUTE

    Fore example... GRANTE EXECUTE ON PROCEDURE db.proc_nm TO user
  10. Fuzemmo

    GRANT EXECUTE

    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...
  11. Fuzemmo

    Granting Access to a Procedure

    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...
  12. Fuzemmo

    Imagre refresh is affecting my drop-down

    Nevermind. Looks like its only happening if I try to view the page from within my IDE. Sorry.
  13. Fuzemmo

    Getting an array var from asp

    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.)
  14. Fuzemmo

    Imagre refresh is affecting my drop-down

    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...
  15. Fuzemmo

    Getting an array var from asp

    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...
  16. Fuzemmo

    Randomly change image based on directory contents???

    Is it possible to do the following? I have an image with say an id="sponsor" on my web page. I need to be able to randomly pick a new image to display in that spot say every 20 seconds. I pick the image from a list of jpg files in the imgSponsors directory on the server. Is it possible for...
  17. Fuzemmo

    Object reference not set to an instance of an object

    I'm pretty knew to ASP/Web programming as well, but I've done something similar to what you are trying. The difference, is that inside the sub, I declared an instance of the object type that held my data, for example text box. I then got a reference to the text box on the form inside my sub...
  18. Fuzemmo

    Fitting an image in a certain area

    Here is the scenario that I have. I've got a table with one row and two cells. In one cell I have an image that will not change. In the other, will be one of several different images. Each image on the right, regardless of which one is displayed at any given time, needs to take up the same...
  19. Fuzemmo

    Change default month in asp:calendar

    Awesome....thank-you much.
  20. Fuzemmo

    Change default month in asp:calendar

    How do I set the default month to be something other than the current month when I display an asp:calendar? I'm sure it must be possible, just not sure how. Jim

Part and Inventory Search

Back
Top