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...
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...
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...
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...
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) &...
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("")...
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...
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
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...
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...
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.
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?
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...
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...
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.
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.
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.
.
.
.
idRS = idCmd.ExecuteReader()
If idRS.HasRows Then
idRS.Read()
Dim myStreamWriter As StreamWriter
Dim rptPath As String
rptPath = Environ("TEMP") & "\idReport.html"
myStreamWriter =...
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...
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?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.