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 Chriss Miller 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: *

  • Users: kaeserea
  • Content: Threads
  • Order by date
  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

    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...
  3. 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...
  4. 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
  5. 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...
  6. 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
  7. 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...
  8. 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)...
  9. 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...
  10. 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'...
  11. 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
  12. 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
  13. kaeserea

    Print elements with backgroud color

    Hi there! I have a table with background color. It looks alright on screen. But the color isn't printed. (Yes I have a color printer ;-) ) I tried it with and without css. Doesn't make a difference. Here's the code with css: <table> <tr> <td style="background-color:#00FFFF">Mytext</td> </tr>...
  14. kaeserea

    Join Error

    Hello, I build a join like this: First I join a hold file with a DB2 table, then I Join the same Hold file with another Hold File: JOIN FIELD1 IN MYNAMES TO FIELD2 IN DB2TABLE AS J1 END JOIN FIELD3 IN MYNAMES TO ALL FIELD3 IN MYHOLD AS J2 END (FIELD1 and FIELD2, FIELD3 and FIELD4 have the...
  15. kaeserea

    Conditional Styling

    Hello, I'd like to color some fields in my report. The cells of one column (MYFIELD in the example below) should be green, yellow, red depening on the value they contain: value <= 5 : green value > 5.01 and < 7.5 : yellow value >= 7.5 : red I did the red and green like this...
  16. kaeserea

    Join of 4 tables

    Hello! I'd like to join 4 tables with the following structure: |-------------------| |-------------------| | table1 | | table2 | |-------------------| |-------------------| | | |...
  17. kaeserea

    odbc connect using username and password of dsn or application context

    Hello! Due to security standards I'm no longer allowed to write the username and password for an odbc connection down in a php file (odbc_connect($dsn, "myUsername", "myPassword");). I was told that I should use either of the following options: 1.) the odbc dsn connection on the server (which...
  18. kaeserea

    -READ length of variables

    Hello! I create a hold file from which I get a single row of data. I then use the -READ command to put the field values into one variable each. Unfortunately the field values are cut off in the variables. Can anybody help me? Here's the code: 1.) generate the hold file: TABLE FILE NAMES...
  19. kaeserea

    IE6: Block Window for further use

    Hello! Is it possible to block a IE6 window for other applications than for the one which is currently active? The reason I ask this: We have a browser based application (we only use IE6 in our company no other browser). The user may work with it several hours during the day. During his work...
  20. kaeserea

    database connect with logged-in user

    Hello! the function odbc_connect() needs user and password. Yet I'd like to connect to the database with the logged-in user but don't know how. Is it possible to connect with the username only? In the database I'd then legitimate the indvidual users. (I know the username, but not password of...

Part and Inventory Search

Back
Top