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 SkipVought 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: Smeat
  • Order by date
  1. Smeat

    Not strictly a C# question, but...

    Management have decided we can't use ftp (I don't know why). They want to use a web service. I could just build my own but my manager has asked me to try and find a third party component rather than spend the time coding this up myself. Smeat
  2. Smeat

    Not strictly a C# question, but...

    I'm not sure which forum to ask this question so here seems as good as any. Can anyone recommend a third party component that will do the following please: I'm looking for a component that can sit on our server (server A) and transfer files a second server (server B), every hour. The second...
  3. Smeat

    XSD - Optional Integer

    Hi tsuji You are right. The problem was in my validation logic. Thanks for pointing that out Smeat
  4. Smeat

    XSD - Optional Integer

    Could someone please point me in the right direction. I have an XSD file which declares an element of type Location: <xs:element name="location"> <xs:complexType> <xs:sequence> <xs:element name="autologid" type="optionalIntType"/> <xs:element name="locationname"...
  5. Smeat

    SFTP

    Yes I've already googled and there's a fair few components out there, of which some will be better/easier/cheaper than others. I'm hoping someone can recommend a component based on their experiences. Thanks Smeat
  6. Smeat

    SFTP

    I need to write a component to automatically pull files from an SFTP (NOT FTP) server every 15 minuites. Can anyone recommend a thirdy party component for SFTP connections, preferrably one they have had experience with? TIA Smeat
  7. Smeat

    Excel Reader Component

    Hi Jason I've already tried this and everything seems fine. Saving as a .csv and viewing in notepad shows the expected dates: 26/02/2010,07/01/2005 26/02/2010,01/03/2004 26/02/2010,10/03/2007 I'll try querying the .csv file just out of curiosity but in practice I will be reciving .xls...
  8. Smeat

    Excel Reader Component

    Yes I'm sure the data is reliable. In my test file I have 2 columns which have their cell format set to dd/mm/yyyy. When I attempt to read the data from the first column it always returns the correct data but the second column is sometimes empty. Here is how my code looks: string...
  9. Smeat

    Excel Reader Component

    You would think so but unfortunately it doesn't work consistently. For example, one file I was testing this morning had 2 date fields side by side, both in the same format but the oledb provider returned one date but only an empty string for the other date. Ther are numerous quirks like this...
  10. Smeat

    Excel Reader Component

    Does anybody know of a good thrid party component I can use to read data from an Excel (.xls) file? Nothing fancy required, I just need to read data and insert it into a database. I've been writing a component to do this using both the Office interop components and the OleDb provider and have...
  11. Smeat

    Treview Problem

    Yes, the rest of the site is running fine and 3.5 is listed in the add/remove programs. I've also tried repairing the install so I don't think it is the framework installation that is at fault Smeat
  12. Smeat

    Treview Problem

    Is there a seperate install for Ajax? I thought the Ajax libraries would have been installed as part of the .Net framework 3.5 installation. I found this quote on http://www.asp.net/ajax Any ideas where I can find the assemblies so that I can copy them to my bin directory? Smeat
  13. Smeat

    Treview Problem

    All images are showing as broken images and the following javascript errors: Webpage error details User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2) Timestamp: Wed, 21...
  14. Smeat

    Treview Problem

    My website is using a treeview control and everything is working fine on my development machine (win xp) and the pre-production server (win 2k3) but the treeview doesn't work when deployed to the production server (win 2k3). I've been digging around and it seems the cause is that it is unable...
  15. Smeat

    SQL Syntax - Query Multiple Instances

    I have a stored procedure running on sql server A that needs to pull data from sql server B. Sql server B has been linked to sql server A. What is the syntax to query sql server B when sql server B has an instance name specified? I.e. SELECT field1, field2 FROM...
  16. Smeat

    Reading Deleted Files

    Ignore my previous post, I've just realised it's in C++.
  17. Smeat

    Reading Deleted Files

    Check this out: http://www.codeproject.com/KB/shell/recyclebin.aspx Smeat
  18. Smeat

    Having Cursor Blues - Help Need

    Thanks both for your comments, thanks also for the offer of help George. Based on your comments I decided to do this within a business object which turned out to be a lot easier in the end. Smeat
  19. Smeat

    Having Cursor Blues - Help Need

    Hi All I'm having a problem with an SP im using to produce a report. In summary, I'm using a cursor which is working but when I execute the SP I get a resultset for every loop in the cursor. Any ideas how I get it to just return the results of the last SQL statement? Here's the code I use to...
  20. Smeat

    password protect a page

    Ok, I'm not going to do your homework for you but will suggest you look at using a javascript "confirm" on the client side. Smeat

Part and Inventory Search

Back
Top