I'm moving from Mozilla Thunderbird to Outlook 2000. I find that even though I have set Outlook to be my default email software when I use the send to/mail recipient option in windows explorer it still launches Thunderbird.
Please help!
This is my first attempt to print in a VB program. I have a richtextbox that I'd like to print to the defualt printer. Can anyone point me to any sample code?
I just started writing a program to send the contents of a text box via email. I click the button and it pops up a new mail message with prefilled to, subject and body fields and leaves it there for me to modify and send. As mailto: doesn't allow large bodies I'm using MAPI to do this. What I...
Can someone help me figure out why this isn't working? I always get the exception "The data at the root level is invalid. Line 1, position 1." on the doc.loadxml line.
Dim doc As Xml.XmlDocument = New Xml.XmlDocument
Dim reader As New Xml.XmlTextReader("c:\test.xml")...
I would like to know the best way to have a program start working on startup and keep looping until someone clicks file exit. It needs to go as fast as possible.
I've used a loop like:
dim continue as boolean = true
do while continue
I sprinkle application.doevents inside the loop so the...
My current thoughts on my latest project involve having a main thread that takes a batch of records retrieved by an sql query and hands the records first in first out to the next available worker thread to process and update the record.
To accomplish this I forsee the need to communicate with...
I've got a xml file I receive as one long string. I use:
Dim doc As New XmlDocument
doc.LoadXml(xmlString)
I can't figure out how to see the values of the fields that have been passed to me. For instance how would I put the account_number or better yet the reply_code into a textbox? (I...
Can someone tell me exactly what these lines do?
Dim REQUEST As Net.HttpWebRequest
REQUEST.Timeout = 60000
REQUEST = Net.HttpWebRequest.Create(URL)
in line 1 you are saying request will be an instance of net.httpwebrequest.
in line 2 you are setting the timeout value of? The class...
I need a little insight on Net.HttpWebRequest.Create(URL)
I look in VB.net help and HttpWebRequest doesn't list a create method--but a fellow programmer told me to use it and it works. What am I not seeing?
In all my years of programming in VB4 I always had form1 as the main/startup form. That isn't cutting it in VB .net because other forms can't refer to things on form1 by saying form1.button1 etc. Ruffnekk just suggested in a recent post to me that I should use a Sub Main module as the startup...
Where do I declare a global variable? I need it to be seen in both classes. I thought it was after imports... and before Public Class Form1 but I can't get any syntax to work there.
Imports System.Threading
Public Class Form1
Inherits System.Windows.Forms.Form
#Region " Windows Form...
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.