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: warpped
  • Content: Threads
  • Order by date
  1. warpped

    Blocked Page - Sometimes

    We have a user that needs to go to a web site that requires a login. On the first attempt, we get in without any trouble. Future attempts yields this message from the web site: "Web application returned no output to the Web server or the output was not accessible." We are logged in though...
  2. warpped

    Response.Write a PDF

    I have a VS2003 .Net 1.1 app. that when the page loads, it calls a sub routine that exports a Crystal report to a PDF. It then redirects to another page that displays the PDF in the browser. I am upgrading my apps. to VS2005 and .Net 2.0. The above no longer works, all I get is a blank page...
  3. warpped

    Web Page Caching on Server

    Is it possible to cache a page on the web server so that all users see the same data from that page? Then after a period of time, the server refreshes the data on the page. So, the user gets cached data, queried from SQL Server, even after clicking refresh until the server updates the content...
  4. warpped

    Claculated Measure - Different Tables

    I have a field in a fact table - QTY. I have a unit of measure conversion field - CONVERSION_RATE - in another table. My cube needs to display a value that is QTY/CONVERSION_RATE. How do I do this if both columns are not in the same fact table? The only way I can see is to use a view as the...
  5. warpped

    Error when running view with outer join

    I have a view with several joins, including an outer join. The view is run from within a stored procedure. The stored procedure is executed from a custom VB application. When the custom VB application executes the procedure, it runs ok. We have a logic problem with the stored procedure (not...
  6. warpped

    Netmeeting Remote Desktop Sharing Fails to Start

    I am running a Win2k server SP2. I have to run service pack 2 because of an application running on the server. After a security patch was installed, remote desktop sharing fails to enable. Then RDS icon appears in the system tray, but disappears when the mouse is moved over it. Is there some...
  7. warpped

    ASP.NET Windows Integrated Security

    This is the first time I'm useing Integrated Security, and I am probably missing something silly. I have IIS set to use Integrated Security and anonymous access is disabled. My web.config file is set to: <authentication mode="Windows" /> <authorization> <allow roles="Domain Admins" />...
  8. warpped

    Eliminate zero from summary calculation

    I have a report that does group summaries. The values that are summarized can be string or numeric. At the detail level, I check for one or the other. If it is numeric, I convert to a number, and then summarize Average and Standard Deviation. The problem is that when it is not a number, it...
  9. warpped

    Manipulating Data into New Columns

    I have a table that basically look like this: Item# Test# Val1 Val2 Val3 Val4 Val5 12345 QA-01 12.1 12.2 13.2 NULL NULL 12345 QA-02 EX EX EX GD GD 12345 QA-03 45 32 52 45678 QA-02 EX GD EX GD EX 78945 QA-01 15 14 10 I need to put this is...
  10. warpped

    Routing with two NICs

    I have a Win 2000 Server with two nics. One is for the company LAN, and the other is for our manufacturing LAN. The server is a file server, no domain security. Configs look like this: Workgroup side: IP - 10.0.0.2 Subnet - 255.255.255.0 Gateway - Domain (Corporate) Side: IP -...
  11. warpped

    PCAnywhere 10.5 Dial-Up

    I have a host set up to take dial-up calls for tech support. The host is running as a service, and the icon shows &quot;waiting&quot; in the system tray. I can connect, and remotely administer the pc. Occasionally, I'll connect fine, and then later it won't take my call. When I get to the...
  12. warpped

    Forwarded messages

    In Outlook, when I forward a message, the original message tells me that it has been forwarded on such a date and such a time. It doesn't tell me who I sent it too. Is there any way to display this information? Thanks
  13. warpped

    Calendar Notification

    We have a general, departmental account set up for our maintenance department to use to let each other know what's going on. There are about 8 people set up to access this one calendar. We have one person defined as the owner. That person would like to receive notification when there is a...
  14. warpped

    Using an array in a sql statement

    Is it possible to use a vb array in the where clause of an sql statement? I have a datagrid that is populated with data from a table. I want to have the ability to select one to several records from the grid storing the values of one of the columns into an array. Then use that array in the...
  15. warpped

    ADO Data Control does return data

    I am using the ADO Data Control connecting to a SQL Server 7.0 database. I have a datalist control to display a field. I am connecting using ODBC. On the computer where VB 6 is installed, it works fine. When I set it up on another pc it does not work. The app. is logging in to SQL Server...
  16. warpped

    Stored Procedures and OpenQuery

    I am trying to write a stored procedure that uses openquery and gets a date range fron the user. The query works when I use: Create Procedure (proc1) as Select * from OpenQuery(Server,&quot;select avg(col1),avg(col2),avg(col3) from tablename where col1 > 0 and col2 > '31 oct 01 12:00pm' and...
  17. warpped

    Suppressing Zeros

    I have a complex report in Access 2000 with several unbound text boxes that are set up as fixed, 2 decimal places. The values are loaded with code. When the value is zero, the box shows 0.00. Is there any way, other than code, to suppress the zeros and display a blank box? Thanks
  18. warpped

    Report Printing Problem

    I have a report with totals in the report footer. The report is run from a form with two command buttons, &quot;Preview&quot; and &quot;Print&quot;. If the &quot;Print&quot; button is clicked, the report prints fine. When the &quot;Preview&quot; button is clicked, the report displays on the...
  19. warpped

    Using VBA and Finding the end of a column

    I am using Excel to extract data from a DDE aware application. The format of the data is in CSV, and it is based on a date and time range plus the desired data fields. Because the range can vary, the amount of rows in the spreadsheet can be different. I want to then perform calculations based...
  20. warpped

    Access Report

    I have a report that is grouped by a unique number. Within that group each record has a field that contains a code along with a field that stores the time when that event occurred. I need to have a control on the report that shows the total time elapsed between each of the unique numbers. For...

Part and Inventory Search

Back
Top