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

    VS2003 MSSCCI provider - unable to check in binary files.

    From Visual studio 2003, to a TFS 2005 implementation using the VS2008 MSSCCI provider, I am unable to check in binary files. Text files, are no problem, .aspx,.ascx,aspx.vb,.ascx.vb are no problems. But Images, PDFs, and any other sort of binary file gives me a "The operation could not be...
  2. Wholsea

    Converting the type library to a .NET assembly failed. (COM in vs2003)

    Trying to add a reference to a com object, created in VB6. I can add this reference on my development machine with no issues, but when I try to add it as a reference on our build box, I receive the following error: A reference to "library name" could not be added. Converting the type library...
  3. Wholsea

    CSS 4.01 strict question

    Sorry, I couldn't find this forum yesterday when I posted this question origionally in a .NET forum... Trying to build an elastic DIV box with a minimum width of 25%. Without the doctype definition, we can do the following hack to get minwidth to work in all browsers: min-width:25%...
  4. Wholsea

    Deserialize - Ignore Case on Enum Type

    We have this enumerated type: Public Enum RespCode Info Warn [Error] End Enum This works great with most of the XML messages we get from our host, the problem is, sometimes we get a message with a RespCode of "ERROR" the serializer blows up because, obviously, that value isn't...
  5. Wholsea

    SmallDateTime Wowes

    Try the following queries: --first validate that we have a valid date object select isdate('18560311') --Lets see what it looks like in datetime format select cast('18560311' as datetime) --Woops, doesn't like being converted to smalldatetime select cast('18560311' as smalldatetime) Any idea...
  6. Wholsea

    Simulate new Browser using WebRequest

    Scenerio: We have 6 web servers behind a router that routes the user to any of them based on server load etc. To verify that the router is hitting all 6 servers, you need to open the site, verify the IP addrss, close the browser, re-open the browser, hit the site verify address, close browser...
  7. Wholsea

    How do I exclude values on submit?

    We have a process that needs to submit a form away from our site. The form is submitting the values we want, but it is also submitting other values (Like ViewState and other values we want to exclude) Any idea on how to exclude certain values on page_submit? TIA! ASP, VB, VBS, Cold Fusion...
  8. Wholsea

    Screen Scrape to review image properties

    Is it possible to use a screen scrape to A. validate that an image loaded, and B. what the dimensions and size (kb) said image is? ASP, VB, VBS, Cold Fusion, SQL, DTS, T-SQL, PL-SQL, IBM-MQ, Crystal Reports, Crystal Enterprise
  9. Wholsea

    Crystal not able to form proper SQL

    I have a report that was developed and runs fine in Crystal 10. When the report is opened in XI developer, or tried to run from InfoView it appears as if the linking syntax is not rendered properly... For example, SQL rendered in Crystal 10 looks like this: select field_1, field_2 from...
  10. Wholsea

    Connect by prior run amuck...

    Have an employee table set up like this: tbl_employees -------------------- employee_id manager_id org_id Manager_id is the employee_id of the employee's manager We are trying to do an update on another table that controls some organizational assignments, the other table is set up like...
  11. Wholsea

    Run Server Job based on Stored Proc Result

    Scenario: Oracle Stored Procedure, returns a 1 or a 0. I have a server job that Runs the proc, takes this result, and stores it into a local file on the server. I have another job that takes this file and FTPs it to another server. I only want the FTP job to run if the procedure returns a 0...
  12. Wholsea

    Connect by prior question

    Okay, Looking at an organizational structure, employees and managers. I am trying to find all managers who do not have managers that report to them. The employee table is set up like this: Employees ---------- employee_id manager_emp_id employee_name Manager_emp_id is the employee_id of this...
  13. Wholsea

    FTP Stage remove a file?

    Can the FTP Stage be used to remove a file? ASP, VB, VBS, Cold Fusion, SQL, DTS, T-SQL, PL-SQL, IBM-MQ, Crystal Reports, Crystal Enterprise
  14. Wholsea

    Adobe Reader could not open file after export

    This is sort of a random error we get after a report has been rendered for quite some time (over 1 hour) then is exported to a PDF file... Adobe Reader could not open 'blahblah_pdf.pdf" because it is either not a supported file type or because the file has been corrupted (for example, it was...
  15. Wholsea

    "Error detected by export DLL"

    The error message: Error detected by export DLL: . File 9f98998adsf0980.rpt. [On Cache/Page Server: Server01dv.pageserver] I received this message after opening a report, reviewing the report for a period of about 5 minutes, then trying to export the report to a PDF format. Crystal Enterprise...
  16. Wholsea

    How to get the date of a file

    Is there a simple way in DS to find the date of a file, say, from an FTP source? We have a process that can only run when all the required files (26 of them) are current, as of the first of this month. Any help would be appreciated. Thanks. ASP, VB, VBS, Cold Fusion, SQL, DTS, T-SQL, PL-SQL...
  17. Wholsea

    Best/Easiest way to execute a SQL Command

    I have a few steps of a process that reqire me to submit a delete command ( delete from tablename where blah = 'blah') or an update command (update tablename set blah='blah' where blah = 'blah') What is the best way to do this in datastage, against an Oracle table? TIA! ASP, VB, VBS, Cold...
  18. Wholsea

    Unable to retrieve column from link (Trying to load file)

    I keep getting this error: Unable to retrieve column from link When trying to load a file with fixed columns into an Oracle 9i database My source columns are set up properly. I am executing a trim() against the fields coming into the tables so as not to pass through spaces into the...
  19. Wholsea

    Error trying to open exported PDF

    Export an on-demand to PDF. When trying to open the PDF, the following error occurs: Adobe Reader could not open 'zzz_blah.pdf' because it is either not a supported file type or because the file has been corrupted (for example, it was sent as an email attachment and wsn't correctly decoded)...
  20. Wholsea

    CE10 Error: Data on the Page Server may have Changed.

    We are receiving this error in a CE10 environment, specifically an on-demand report. The report renders completely (1 page report, minimal records). After reviewing the report, and validating the data, we attempted to extract the data to an excel spreadsheet and received the following error...

Part and Inventory Search

Back
Top