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!

Recent content by Wholsea

  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)

    You may want to re-post this in the forum as it's own thread. More people will see it and you may get a response faster... On a different note, I figured out what my issue was. I was trying to add a reference to a COM library, that referenced another COM library, which I didn't have on that...
  3. 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...
  4. 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%...
  5. 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...
  6. Wholsea

    SmallDateTime Wowes

    Yeah, I read the bol, but only read the top part (1753) reading is fundamental... ASP, VB, VBS, Cold Fusion, SQL, DTS, T-SQL, PL-SQL, IBM-MQ, Crystal Reports, Crystal Enterprise
  7. 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...
  8. Wholsea

    Simulate new Browser using WebRequest

    This is the "GetWeb" class: Imports System.IO Imports System.Net Imports System.Text Public Class Base Implements IDisposable ' Implement IDisposable. Public Overloads Sub Dispose() Implements IDisposable.Dispose Dispose(True) GC.SuppressFinalize(Me) End Sub...
  9. Wholsea

    Simulate new Browser using WebRequest

    The page itself renders the IP from which it came from. We are able to manually verify functionality, I'm trying to write a utility that will do it for us, but we need it to get the router to forget the previous route. Closing the browser does just this when we are doing it manually, but we...
  10. 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...
  11. Wholsea

    How do I exclude values on submit?

    Not sure if it is the best way or not, we have a bit of JavaScript that is rendered at run-time that changes the "action" property on the form (We do this because other buttons do different things on the form) Maybe I should explain the process a bit different... Customer enters page. Customer...
  12. 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...
  13. 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
  14. Wholsea

    Crystal not able to form proper SQL

    Synap: We tried that, I went so far as to remove all of the tables, re-add them and re-link them with no luck. We haven't had any issues with any other reports, it seemed to only be with this one. Gortuk: We tried that as well, to no avail... The only way we could figure how to fix it was to...
  15. Wholsea

    InfoView user prompted for Database Logon?

    Is this the same issue as over here? http://www.tek-tips.com/viewthread.cfm?qid=1283875&page=1 ASP, VB, VBS, Cold Fusion, SQL, DTS, T-SQL, PL-SQL, IBM-MQ, Crystal Reports, Crystal Enterprise

Part and Inventory Search

Back
Top