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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by gizzy17

  1. gizzy17

    Who is running the report - USERNAME

    Depending on how the security has been setup.....and other changes may need to be applied.... You can use either GETUSER which is the ID that is being used on the system if the reporting server security is turned on -SET &USERID = GETUSER('A8'); or if security is off, this will provide you...
  2. gizzy17

    Help.. report to count rows based on criteria..

    Putting the Received column on the end would be the difficult part. For this, the easiest solution would be to create a field for each type as jimster had pointed out. If recieved could be before the across columns then you would just need to join the tables together. The syntax for the join...
  3. gizzy17

    Accept Numeric Values Only - TextBox

    add an onblur event which will validate the text to ensure that only numeric values are in place. You should be able to find the script in the FAQ javascript section on this site
  4. gizzy17

    online webfocus max function?

    I don't see any JCL that you provided above. Everything that you provided above looks like perfectly legitimate focus/webfocus code. Make sure you take out the OFFLINE statment when running under webfocus though.
  5. gizzy17

    Help.. report to count rows based on criteria..

    Also try TABLE FILE TABLE1 SUM CNT.POLL_ID ACROSS TYPE_IND BY EFF_DATE END
  6. gizzy17

    Adding Parameter

    Carefull..... If you selected 'ALL' or 'No Selection' for pyramid or job_level, no selection would take place except for core_group (unless that is also on the same line. I suspect that everything is on one line on one of the values is has been selected as 'ALL' (using defaults from html...
  7. gizzy17

    Suppressing Values and NOT Supressing

    You could try setting up a line counter and include it with your compute... DEFINE FILE XXX LINECNT/I2 = IF LINECNT GT 55 THEN 1 ELSE LINECNT + 1; END .... COMPUTE FIELD_ABC/A25 = IF FIELD1 NE LAST FIELD1 THNE FIELD1 ELSE IF LINECNT EQ 1 THEN FIELD1 ELSE '';
  8. gizzy17

    online webfocus max function?

    Just checking, but you do have an OFFLINE command just after your DEFINE ends. Also, you will need to make sure that the two files that you are reading at the begining are allocated before the -READ occurs. What error messages are you getting?
  9. gizzy17

    VBRSTK1 graph & color correspondent

    I'm not sure what your graph request looks like, but my guess is that your categories are in one field. If they are, you may want to define separate fields for each category and set a color for the field using the example below. GRAPH FILE CAR SUM SALES RETAIL_COST DEALER_COST BY COUNTRY ON...
  10. gizzy17

    JScript Global Variables

    I've also had problems with variables declared outside of my functions not being recognized. I've found that if I prefix them with "window." resolved many of my issues. e.g. window.logFileName = "c:/...
  11. gizzy17

    Setting "default" domain for website logins

    bumping and subscribe I'm having this same issue with one of my servers. I have two other servers that I do not have this issue with and have tried my best to find the difference between the servers but cannot. Issue only occurs when an xp user access the server.
  12. gizzy17

    Mute volume using vbs in win98?

    tsuji, I have sent the link to my wife and hope it works, thanks for your help. By the way, as I was looking for a solution using vbs, this thread was not off topic.
  13. gizzy17

    Mute volume using vbs in win98?

    She says that it is checked, but it is grayed out.
  14. gizzy17

    Mute volume using vbs in win98?

    I'm not sure if this is possible, but does anyone have any idea if you can mute the volume control using vbs in Windows 98? If so how? My wife uses a 98 box at work and the volume icon does not show in the lower right hand screen, and when she tries to open it from the Entertainment menu, it...
  15. gizzy17

    Saving a Generated Report.

    APP HOLD appname

Part and Inventory Search

Back
Top