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

    Accessing Web Service Without Proxy Class

    Has anybody accessing Web Service Without Proxy Class using the HttpWebRequest class and making a direct request.
  2. stsuing

    HTTP Inspector

    I'm looking for a program that will intercept http requests and tell me all the information in them. Header, Post, ect. Then it would reroute it to the normal iis process.
  3. stsuing

    Web Service Versioning

    Can someone give me advice or article links on strategies for versioning webservice. So that when I change a webservices, clients calls that didn't upgrade are handled gracefully. Thanks
  4. stsuing

    Convert html special Characters

    How would you convert <span> to &lt;/span&gt I would like to convert all characters that an XSLT would choke on. Thanks in advance
  5. stsuing

    XPath WildCard Help

    What is the XPath syntax to do the following Here is the XML <?xml version="1.0" encoding="utf-8" ?> <clientAddressRanges xmlns="http://www.test.com/test"> <clientAddressRange start="192.128.133.0" end="192.128.133.255" /> <clientAddressRange start="192.128.134.0" end="192.128.134.255" />...
  6. stsuing

    Radio Buttons Are Not Mutually Exclusive

    This artical describes a problem http://support.microsoft.com/default.aspx?scid=kb;en-us;316495 They don't give a solution though. I've found a couple solutions like this one http://aspnet.4guysfromrolla.com/articles/122602-1.aspx or if(e.Item.ItemType == ListItemType.Item ||...
  7. stsuing

    Do we need a new forum for VS 2005

    The differences are significant so I think so.
  8. stsuing

    Book recommendation for technically challenged beginner

    My wife is just starting on photoshop. She is using the adobe book and is finding it too confusing and is having a hard time learning from it. She needs a book that starts at the ground level of graphic design and works simple examples in photoshop. Like drawing a straight line. Can someone...
  9. stsuing

    Winform GUI Error

    Hi All, Having a problem has anyone seen this before? Environment: Windows Forms, .NET 1.1, Win2K client It is not something easily reproduced. When this error happens, the user said that all the controls on the screen get the old red X in them (as an aside, we inherit from just about every...
  10. stsuing

    TSql Syntax Using Set and EXEC

    The trigger I made for auditing a table uses an INSERT to do the auditing. Because of the permissions I can not do an insert and must use a stored procedure. How can I Convert this to not use the INSERT and instead EXEC a stored procedure. INSERT INTO [dbo].[GlassUserAudit] (...
  11. stsuing

    Create Object from Name

    Say I have the string "System.Xml.XmlException". How can I create an object from that? object[] args = new object[2]; args[0] = "Message"; args[1] = new Exception("Inner Exception Message"); Exception fooBar = (Exception)Activator.CreateInstance(typeof(System.Xml.XmlException), args)...
  12. stsuing

    Reflection Error Object Help

    I want to instanciate an error type returned from a soap exception. My current example on the client tells me that the type is "XmlException". Which in the .Net framework System.Xml.XmlException. I also have the message How do I Instanciate an XmlException Object given only the name...
  13. stsuing

    Accessing Exchange Server Global Address Book

    I am trying to retrieve information from Exchange Server Global Address book for a user like phone, first name, lastname, alias. Can someone point me in the right direction?
  14. stsuing

    No-Touch Deployment and app.config

    I am have a problem doing a no-touch deployment of an winforms application The client computer has the .net framework. I compiled my application into a virtual directory and set the permissions on the clients computer to allow code on the intranet to execute. When I type the url to the .EXE...
  15. stsuing

    Printing Word Doc on the server

    I use Crystal Reports to generate a report and then I export it to Word. This works great, I can even redirect the user to the Word document. What I really need is to print the Word document from the webserver to a specified location. So I'm looking for code to open the word document, set the...
  16. stsuing

    Group on a datatable in a dataset

    I would like to return an array of rows from datatable. The Array returned should be the datatable rows grouped on certain fields. Ex Dataset table 1 3 124 2 3 444 3 3 444 4 3 555 5 4 123 6 4 123 Rows Returned 3 123 4 123 3 444 3 555...
  17. stsuing

    Windows Security

    How do I get the current user that is logged into the computer and the roles that they are assigned. I am on an NT domain and using Active directory. I just need the namespace. ei system.security.etc
  18. stsuing

    Export .txt then Save File to FTP Site

    I know how to create an ascii file out of SQL Server to the hard disk, but what is the best way to then save it to an FTP site. I need to login using a user name and password. I tried setting up the FTP site as a network place, but the DTS wizard wouldn't write to the site. Thanks
  19. stsuing

    Access 2000 to Lotus Notes

    Is it possible to convert an Access 2000 database to Lotus Notes, including all tables, queries, reports, and data. Basically everything.
  20. stsuing

    Dll Writing Textfile but Permission denied

    I have a dll on my web server that creates a text file on the same webserver using FSO. Set TxtFile = fso.CreateTextFile(File_Name, True) This works fine when I'm logged in or a sys Admin is logged in, but when using a typical users account I get permission denied. Does anyone know...

Part and Inventory Search

Back
Top