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

    adding an XML node an already existing XMLDocument

    I need to put this into the system <overrides> <override index="1"> <datetime></datetime> <classification></classification> <explanation></explanation> </override> </overrides> This node isn't already a tag in the document so I don't think I can use something like...
  2. dashen

    Modifying an XML Document

    myXmlDoc.LoadXml(myReader("XML")) myReader.Close() myXmlDoc.SelectSingleNode("//dataobject/overridingclassification").InnerText = ddlOverride.SelectedValue.ToString lblResult.Text = myXmlDoc.OuterXml.ToString() I am trying to modify an...
  3. dashen

    String manipulation

    I posted earlier on how I needed to convert an XML I created into a String format for some vendor software. I have done that thanks to earthanfire's help. Problem is the vendor software is being very picky. It doesn't even seem to like the encoding tag for XML, which makes no sense because...
  4. dashen

    Convert XmlDocument to a string

    Private myQuestions As New XmlDocument myQuestions.Load(filename) myQuestions.Value.ToString I have an xml file that I would like to load into a SQL database as a text file. I cannot load the xml file directly because I am using a vendor software that requires the Text field. I am not sure...
  5. dashen

    Trying to convert a text in csv to a certain format of date

    I need to make a text on each line to be MM/DD/YY where the leading zeros are kept Import String function getfile(byval filename) dim fs: set fs = createobject("Scripting.FileSystemObject") If InStr(FileName, ":\") = 0 And Left (FileName,2)<>"\\" Then fileName = FS.GetSpecialFolder(0) &...
  6. dashen

    XMLTextWriter Help

    I am having issues generating an XML file using the XMLTextWriter. I need to add attributes to a tag: <response index="#"> but I can't seem to get it to work with a number that changes with a loop counter. textWriter.WriteStartElement("response") textWriter.WriteString("")...
  7. dashen

    Session State issues

    I am trying to set up a session state so that I can pass a uniqueid and variables cleanly through an online application. I am having troubles setting up the Session State (I can't even find the information I need in the Assembly names for 2.0). I might just have to use querystrings, but that...
  8. dashen

    Pulling a user name in T-SQL

    Hello, I am writing a web application and I wanted to pull the User name from the computer that is accessing so that I can store it in a record. Is there any way in T-SQL to do this? Thanks. Daniel
  9. dashen

    Checking a Textbox for a Numveric value

    Hi I was wondering if any of you have had any experience with validating a textbox for a numeric value "0"-"99" I tried IsNumeric(CInt(textbox.text)) but that only throws an error when it is not. Even IsNumeric(textbox.text) throws an exception. I was wondering if there was any...
  10. dashen

    Combo Box List

    I am trying to programatically select an item in a combo box list and select only one item in the list. I tried to use the SelectIndexChange event, but it seems to do nothing. I can use radiobuttonlist as well, but neither one seems to be doing what I want it to. Is there any way around this...
  11. dashen

    DATETIME calculations

    I have a smalldatetime column in a database that I want to calculate the number of days left to that date from the current date. Are there any methods to do this? Can anyone help me with this? Thanks.
  12. dashen

    RadioButtonList

    Anyone know the reference library for a RadioButtonList? I know that it is a common control in ASP.NET, and I was hoping to use it in my VB.NET program. Any ideas?
  13. dashen

    Is there a way to get a RadioButtonList on a VB.NET form?

    Hi, I am currently programming an application that cannot be on ASP.NET because of the massive amount of data needed in the application, and not wanting to put that on IIS. I want to use a RadioButtonList on the VB.NET program, but I can't seem to find it. Also, I can't seem to figure out if...
  14. dashen

    Bypassing validation controls for a dview object

    I have a simple program I am setting up, and I need to bypass some requred field validation controls I set up to display a dview before those validation controls are shown. Any way to do this. The idea is simple. The User puts in a ID and a DView pops up with certain information. Then the...
  15. dashen

    I need to pull the User Name of a computer while running on server

    Hi, I am writing a simple screening/date entry program and I need to pull the user name of the user from his computer. The ASP code is run on the server side. Anyway to do this? Thanks.
  16. dashen

    How do you pull the USERNAME and COMPUTERID?

    Does anyone know of a way to pull the USERNAME and COMPUTERID in VB.NET 2005? I know it is probably a simple task, but I need to do this, and I only really know how to do this in a VBA environment.
  17. dashen

    Troubles with Date Function

    Now.ToString("MM/dd/yy") This is a simple problem I believe, but what is the format to show the date of tomorrow in a string format. Also what is the format key if I want it to look like "July 18, 2007" Thanks in advanced.
  18. dashen

    Looping through records in an ODBC recordset in .NET 2.0

    . . . idRS = idCmd.ExecuteReader() If idRS.HasRows Then idRS.Read() Dim myStreamWriter As StreamWriter Dim rptPath As String rptPath = Environ("TEMP") & "\idReport.html" myStreamWriter =...
  19. dashen

    Trying to use StreamWriter to make a document

    Help. I don't know why this isn't working. Please help. Thanks. Imports System.IO Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim myStreamWriter As StreamWriter Dim rptPath As String...
  20. dashen

    Issue on a filter combobox

    Got a piece of code working that filtered the form using a combobox tied to a specific field in the form. The form has a subform. It only seemed to work after the "Cancel As Integer" field in the AfterUpdate procedure was taken out. Any ideas as to why this would occur?

Part and Inventory Search

Back
Top