parse

  1. N

    Question Parsing a complete date

    I have dates from a data file that I need to parse. Here is an example of one of the dates and what I have so far: DateTime.ParseExact("2013-01-26T02:43:55+0000","yyyy-MM-dd\THH:mm:ss", As you can see, the date includes the timezone offset (the "+0000" part at the end). I am not sure how to...
  2. VBobCat

    Question Issue passing Now as OleDbParameter in Update Query

    Hello people, I'd like you to help me figure out this. I've added a field to one given table of my database. Its datatype is DateTime, for I want to store in it the date/time of each record's last update. These updates were being successfully done with a SQL "UPDATE TABLE" query, passed with...
  3. T

    HttpWebRequest Extract Links or URLS From My Blog...

    I would like to use the httpwebrequest to pull all the links from my blog. I would like for the links to be extracted and sent to a textbox1.text from the httpwebrequest method. Here's the example that I have to extract all the html source code, but all I need is the URLs from my web page: Try...
  4. D

    Question Auto-login to website for screen scraping/data collection?

    Hey all, I've written a few simple HTML parsers which scrape data from a URL...or a list of URL's. Getting the data from the HTML is no issue, but now I'm trying to scrape data from a site which requires login before accessing the data. I've tried a couple of things, but no luck. I've done some...
  5. S

    Question XML Parsing Error - Escaping Characters

    Hi all, How can I replace illegal characters inside XML tags with legal ones eg. & with & etc. My code is like this: Imports System.Security Imports System.Xml Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click...
  6. iDASTANx

    Question Got a problem with opening CSV files.

    Hey guys :) Pretty new at Visual Basic (just getting that out there before I continue). So, for my computing project I have to import csv files (got that bit working, got it opening up and displaying in a text box) and search through it to find criteria that I want. Anyways, I am having...
  7. D

    Question text file parse to xml questions

    Here is my problem I'm trying to solve: I have a robot which via a serial connection passes the following data which I log in hyperterminal into a txt file: +++ASP:273,THH:0,RLL:0,PCH:0,*** +++ASP:37,THH:0,RLL:60,PCH:2,*** +++ASP:27,THH:0,RLL:60,PCH:0,*** +++ASP:19,THH:0,RLL:60,PCH:0,***...
  8. M

    Question How to Add Items to a Checked List Box

    I have a program that so far downloads an XML file, parses it, stores it in an ArrayList and then reads the ArrayList to add items to a Checked List Box, which is on a different form from where the ArrayLists are made and stored as public class variables. After I construct the ArrayLists I used...
Back
Top