Search results for query: *

  1. J

    Clearing a dataset?

    I'm writing a windows service that periodically goes out to a SQL table and checks it for new records. I connect ok and fill the dataset ok, but how do I clear the dataset once I'm done with it? What's happening is that evertime the service goes to check the table, it fills the dataset...
  2. J

    Need help in writing a windows service

    I'm trying to write a windows service routine in VB.NET and I'm using code taken straight from several examples that I've gotten from the web. The problem is that I can compile and install the service ok--it shows up in the services window from the admin tools, but it doesn't seem to be doing...
  3. J

    Problems sending email in program

    I'm writing a program to send an email internally. Here is the code I've got: Dim Smtp As SmtpMail Smtp.SmtpServer = "mail.co.navajo.az.us" Dim Msg As MailMessage = New MailMessage Msg.To = "james.williams@co.navajo.az.us" Msg.From = "james.williams@co.navajo.az.us" Msg.Body = "This is a...
Back
Top