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 Mike Lewis 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. kaeserea

    Connect to ODBC without pw in Code

    Dear all, I use odbc_connect() to connect to a MS SQL database. Of course with that function I have to provide the password as a parameter. Now our company policy says, I should not have the password in code anymore. Can anybody help? I have a windows server 2012 R2 with IIS and I already have...
  2. kaeserea

    Hiding waring does not work

    Hi jpadie, I tried error_reporting(E_ERROR ^ E_NOTICE ^ E_DEPRECATED ^ E_WARNING); ini_set('display_errors', 0); But the warning is still displayed. Best regards, Eva
  3. kaeserea

    Hiding waring does not work

    Dear all, I use PHP 5.3 on an IIS. I had to copy my code from another server (which had PHP 4) to this one and I don't want to change the code as I have not enough time for it. So I'd like to hide all warning as I turned on register_globals in php.ini. PHP shows me the following warning: PHP...
  4. kaeserea

    PATH_INFO not found

    Dear all, the problem is that path_info is not sent. I don't get it with $GLOBALS["PATH_INFO"] neither with $_SERVER["PATH_INFO"] Do you knwo where I should activate the sending of path info? Best regards Eva
  5. kaeserea

    PATH_INFO not found

    Dear all, I use PHP 5.3.1 on an IIS Server. I'd like to use $GLOABALS["PATH_INFO"] which still works in PHP 5 although it is deprecated. In the php-ini file it turned on the register_globals option. So from PHP's point of view it should work. Nevertheless I get the error "Undefined index...
  6. kaeserea

    erase <hr> for many proc reports

    Hello! I have a Stored Process which I display in the SAS portal. When I display two or more proc reports or graphics there is always a horizontal line displayed between two of them. When I view the created HTML code there is <hr size="3">. How can I erase these horizontal lines? Best regards Eva
  7. kaeserea

    order subgroup

    Hello! With a vbar I habe subgroup for the respond axis. Unfortunately by default the subgroup is ordered alphabetically. Yet I#d like to order it my way. How can I do this? My data is date phase price 2008/12/01 b 12 2008/12/01 c 56 2008/12/01 a 33 2008/12/02 b 34...
  8. kaeserea

    PDF pagesize

    Hi Yuthika, ich already have the landscape orientation in it. Yet it'd like to habe something like "fit to one page" with it. Eva
  9. kaeserea

    PDF pagesize

    Hello! I have a report with ods destination pdf. Unfortunately it is too wide and so the page splits into two. So I'd like to squeeze everything onto one page. Does anybody know how to do this? Best regards Eva
  10. kaeserea

    counter

    Hi! I'd like to count how often a stored process has been accessed by the visitors on my application on the sas portal. Does anybody know how? I thought of writing a line in a file anytime somebody accesses the stored process. But because I have many visitors this would be a concurrent access...
  11. kaeserea

    legend position right

    Hello! I have a question on legends. I'd like to position my legend top right outside. Unfortunately it is positioned top center outside... Here's my code: goptions device=javaimg gunit=pt colors(red green yellow) ftext=arial xpixels=400 ypixels=400; legend1 position=(top right outside)...
  12. kaeserea

    Assigning a format to a macro variable

    Hi Chris, thanx for the explanation. Now I understand. Best regards Eva
  13. kaeserea

    Assigning a format to a macro variable

    Hello Chris, thanx a lot, it works. However I had to add some more quotes at the if in the data step: if "&medium" ne all then medium_long = put("&medium",$fmedium.); So the lesson ist, alsways use quotes when a macro variable should be recognized as character... Yet I'm a little disturbed...
  14. kaeserea

    Assigning a format to a macro variable

    Hello Chris, I do it just like that in a data _null_ step to display the variable in a HTML Heading: DATA _NULL_; FILE _WEBOUT &g_sWEBOUT_OPTIONS.; if &medium ne all then medium_long = put(&medium,$fmedium.); else medium_long = "all"; put "<h2>My Heading</h2>"; put "Medium: "...
  15. kaeserea

    Assigning a format to a macro variable

    Hello! I have a macro variable to which I'd like to assign a format: proc format; value $fmedium 'P' = 'Paper' 'F' = 'Fax' 'E' = 'Email'; run; The macro variable has for example the value P and should be displayed as Paper. Can anybody help? Best...
  16. kaeserea

    proc report caption for summarizing row

    Hello! I have a proc report like this: PROC REPORT DATA=work.mydata; COLUMN my_numeric_field my_charcter_field, (field1 field2); define my_numeric_field / group ' '; define my_charcter_field / across ' '; define field1 / 'Caption1'; define field2 / 'Caption2'...
  17. kaeserea

    Pop up with ok and cancel button

    Hi feherke, works fine! Thanks a lot Eva
  18. kaeserea

    Pop up with ok and cancel button

    Hello! I'd like to create a pop up which has some text and two Buttons: "Cancel" (back to page from where the pop up was issued) and "Ok" (show next page). Unfortunately alert() has only the "Ok" Button and prompt() has an input field which I don't need. Best wishes Eva
  19. kaeserea

    Fix Table head and foot for long tables

    Hello both of you! Your advice worked fine. Thanks a lot! Eva
  20. kaeserea

    Fix Table head and foot for long tables

    Hello! How can I fix the first and last row of a table and make the rest inbetween scrollable. I need this as I have a very long table and don't want to use frames. Best regards, Eva

Part and Inventory Search

Back
Top