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 TouchToneTommy 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. Legion13

    Forcing SSL

    Have you tried these directives? <VirtualHost *:80> ServerName site.domain.com ## These are for proxy to SSL RewriteEngine On RewriteCond %{SERVER_PORT} !^443$ RewriteRule ^/(.*) https://%{SERVER_NAME}/$1 [L,R,NC] </VirtualHost>
  2. Legion13

    Apache support two SSL certificates?

    Assuming you have multiple IP's on your box you can make it work. I used an apache server to proxy to two separate orion servers in a similar manner. In my httpd.conf I redirected to https from htpp. <VirtualHost 192.168.174.101:80> ServerName site1.domain.com RewriteEngine On...
  3. Legion13

    How do you set default field values in ADO?

    I am building a tool that will create a dynamic load table that can be imported into a database, for legacy data conversion. The premise is that I can get the legacy data and map the appropriate fields for the CMMS application I implement. Then the tool checks which fields are present in the...
  4. Legion13

    Forcing Print size with ActiveX Viewer.

    Here is my problem. I have a report that is formatted to be 4&quot;x6&quot;. If I print it directly from Crystal Reports 8 it prints fine. However, if I access the report through the web browser and the ActiveX Viewer it shows up on the screen twice as large as it should, with the printed...
  5. Legion13

    Help with Info and Lotus

    Actually I found it on the seagate knowledge base. Lotus Notes does not use the P.O. Path so you must leave it blank. A lotus notes client must be installed on the same machine with the id file for the account you wish to use for the seagate info's e-mail function. Enter the account name and...
  6. Legion13

    Help with Info and Lotus

    Anybody know how to configure Seagate Info 7 to e-mail via NotesMail? I found the dialog box for the config, and the name and password fields are self explanatory. But what is the Post Office Path? I pathed it to a local instal of Lotus Notes R5 but it failed saying that it was unable to find...
  7. Legion13

    SEAGATE INFO 7 INFO NEEDED

    I am in the process if setting Seagate info now and I can tell that it does have the option to schedule a recurring report. You can set it for daily, weekly, monthly, etc. As for compatibility with CR8, it isn't really, however if you aren't using any of the CR8 features and you can do a Save...
  8. Legion13

    Help with triggers

    Unfortunately no. Essentially what I have to do is pull the names and phone numbers of the various facility managers for a specific location code. Since there is no direct reference between the two tables the maintenance software can't make the link itself, so I must use a trigger to do so.
  9. Legion13

    Help with triggers

    I have a trigger that is fired off when a location field in a workorder record is updated. The problem is, the trigger needs to update 6 other fields in the same record and this causes a deadlock in SQL Server 7 because the record is already in the middle of an update. Does anyone know a...
  10. Legion13

    Exporting groups individually.

    I haven't created a naming structure yet. First I wanted to establish whether or not it was possible to have the rport handle the exporting internally via a formula of some sort and using the group name in the excel file name.
  11. Legion13

    Exporting groups individually.

    Is it possible to get CR8 to export each group (or subreport) in a report into a separate Excel file? I have a report that I need to run for 25 or 30 facility managers and I would love to be able to run it once instead of once for each one. Thanks in advance.
  12. Legion13

    Help with web based parameters.

    Yes the loop definitely fits better into what I am doing here, since I don't know exactly how many items they might choose to select. I appreciate your help.
  13. Legion13

    Help with web based parameters.

    Wow. Thank you very much. I certainly do appreciate it! I would have been happy just to know about .addcurrentvalue, but that bit of code was definitely above and beyond. Thank you again, you have been very helpful, and I have voted you tipmaster for sure. :-)
  14. Legion13

    Help with web based parameters.

    Thank you very much for your help! If you happen to recall what it is please let me know. In the mean time, thanks again for your help.
  15. Legion13

    Help with web based parameters.

    I have a report that I am running from an asp page. I am using input boxes to get text from the user that is passed to the report like so: set session(&quot;ParamCollection&quot;) = Session(&quot;oRpt&quot;).Parameterfields set Param01 = session(&quot;ParamCollection&quot;).Item(1)...
  16. Legion13

    Charts

    Ouch! Thanks for looking into it for me. I wracked my brain too and could find nothing to get past that. You can't seem to chart formulas with variables in them either or I could use my formulas I have in the report now. Anyway, thanks again.
  17. Legion13

    Charts

    CR8. And I do want one bar per month. The problem is that the totals for the running total do not match the chart for the same period. RTotal0 - Jan. = 10 Chart - Jan. = 0 (no bar) Feb. = 15 Feb. = 10 Mar. = 25 Mar. = 15 Apr. =...
  18. Legion13

    Charts

    I am trying to chart a running total on workorders that are grouped by month. If I set the chart on change of reportdate it gives me totals up to the change, i.e. for 3/2000 I get the total through the end of 2/2000 and what I want is the total through the end of 3/2000. How do I get around this?
  19. Legion13

    Problem passing variables from subreport

    Thank you very much. The piece I was missing to the puzz was underlaying that section. Ian Nelson

Part and Inventory Search

Back
Top