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

    How do I set up the proxy for a web request?

    Good day, I am using the following code to get the HTML from a web page. But I get a proxy authentication error. How would I set up the proxy details (server, port, username and password) for our proxy server to get past it? // Setup our Web request System.Net.WebRequest request =...
  2. Henk1

    How do I add the values of a field that contains a duration?

    Good day, How would I add nVarChar fields with values "00:00:02", "00:00:05", etc, etc, simulating the duration of a telephone call together? I tried using SUM(field) but it cannot add up a nVarChar field. I also tried using SUM(CONVERT(datetime, field)) but that does not work either, saying...
  3. Henk1

    How do I get this data(from DB) into a dataset

    Good day all, I have been playing around with diffirent ways of getting data from DB's. I have this code: SqlConnection mySQLConn = new SqlConnection("workstation id=AT007359;packet size=4096;user id=sa;data source=AT007359;persist security info=True;initial...
  4. Henk1

    Creating a file with C#

    Good day, I am creating a file with this statement... xlApp.ActiveWorkbook.SaveAs(FilePath + "\\Summary.html", Excel.XlFileFormat.xlHtml, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Excel.XlSaveAsAccessMode.xlNoChange, Type.Missing, Type.Missing, Type.Missing, Type.Missing...
  5. Henk1

    Basic things that I just don't understand

    Good day, I have a couple of basic concepts that I just don't understand. Maybe you can explain it to me? 1. Get and Set on a property 2. Struct Why would you want to use get and set? What does it do? What is a struct and why does it get used? Thanks alot for all the help.
  6. Henk1

    How to read an Excel file

    I need to open an excel file from a specific folder, and read a value from the A1 field. Does anyone know what I need to do to do this? I have never worked with office objects before, and just need a starting point. I am using Office 2003 and MS Visual studio .Net Enterprise developer edition...
  7. Henk1

    IP Addresses

    I need to write a program that needs to do four things. Firstly, it needs to scan the network, and bring back the IP Address and Machine Name of all the machines on the network. Secondly, it needs to scan all ports on these machines, coming back with a list of open and closed ports. Thirdly...
  8. Henk1

    Looking for advice in emigrating to USA doing IT

    Hi, I am from South Africa, and would like to emigrate to America. Just a bit about myself. I do not have any formal tertiary qualifications, but have 6 and a half years experience in programming. I started doing Cobol, moved to lotus notes and have for the last 4 years been doing web...
  9. Henk1

    XML/XSL Help Please!

    Hi, Sorry for the vague subject, but I don't know the word for what I am looking for. I have the following XML code: <?xml version=&quot;1.0&quot;?> <Report> <Settings width=&quot;100%&quot;></Settings> <Heading> <Title>My Report Title</Title> <Columns> <Column id=&quot;A&quot...
  10. Henk1

    Variables in XSL?

    Can you use variables in XSL. I know about the <xsl:variable command, but I cannot seem to change the value. Is there a way of changing its value or is there another command? Thank you, Henk
  11. Henk1

    Menu Structure in XSL using XML input

    Is there any way to create a menu structure using XSL to output HTML from XML input? Please let me know as I am stuck with this.
  12. Henk1

    Is there a goto command, or something alike in XSL

    Hi, I would like to create a menu structure, based on a directory structure on a server. Obviously I would like to have unlimited depth of this structure. My problem is that except for hardcoding a million sub-loops within the parent loops, I don't know how to get out of the loop and let it...
  13. Henk1

    New to vbscript. Where can I learn

    I am new to vbscript. The language itself doesn't look too difficult, but I need to know where I can get some help. I have found a couple of tutorials, but they don't go into a lot of detail. How do I add info into db's. How do I read. Can I create a GUI using only vbscript, or must I use some...

Part and Inventory Search

Back
Top