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 SkipVought 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: *

  1. JABOSL

    send to/mail recipient help!

    Linney, I'm not sure what step your asking if I rebooted after but I rebooted this AM. As I mentioned yesterday in Set Program Access and Defaults I selected Outlook Express as Outlook wasn't an option and thanfully Send To/Mail Recipient changed from Thunderbird to Outlook Express. This AM I...
  2. JABOSL

    send to/mail recipient help!

    Linney, I am an administrator on my computer. I went to Set Program Access and Defaults and Outlook doesn't appear as an option. Outlook express does and the only other choice is "use my current email program". I went ahead and tried setting it there to outlook express and that appears to...
  3. JABOSL

    send to/mail recipient help!

    Linney, Thanks I checked and I do have Outlook selected in IE6 under Mail, Newsgroup and Calendar. I reselected them and tried again but it doesn't help. Thunderbird still popped up.
  4. JABOSL

    send to/mail recipient help!

    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!
  5. JABOSL

    How do I change the exe icon?

    Thanks! Now do you know of a way to get it to take a BMP file as an icon? Or a program to convert a BMP to an ICO? The BMP is small about 86X86.
  6. JABOSL

    How do I change the exe icon?

    Where do I change the default icon for the exe? VB 2003
  7. JABOSL

    first printing program

    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?
  8. JABOSL

    MAPI "internet mail" ?

    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...
  9. JABOSL

    Reading an xml file into an xml document

    No need to use reader either as you might have noticed.
  10. JABOSL

    Reading an xml file into an xml document

    Thanks to everyone for their help. I found the answer finally at http://www.bdragon.com/lair/2005/08/27_xmlexception_the_data_at_th/ it's doc.load("c:\test.xml") and not doc.LoadXml("c:\test.xml")
  11. JABOSL

    Reading an xml file into an xml document

    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")...
  12. JABOSL

    expressing time

    how do I express 1 hour in vb.net? I want to find out if now - the startting time is > 1hr. if Now().Subtract(starttime).ToString > ???????? Then
  13. JABOSL

    best way to ...

    In this program I have to "watch" a database table for new records being added. When a record is added I take part of the data and create a soap message which is sent to another company. The other company sends a reply back and the reply is added to the record in the database table and then a...
  14. JABOSL

    best way to ...

    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...
  15. JABOSL

    passing info to and from worker threads

    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...
  16. JABOSL

    obtaining field values from xmldocument

    I don't send it, it comes from another company. I get it with the following command which passes a request string to them. xmlReply = proxy.validate(requestMsg) It looks like the answer to my question would be. Dim doc As New XmlDocument doc.LoadXml(xmlReply) Dim actNbr As XmlNodeList =...
  17. JABOSL

    obtaining field values from xmldocument

    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...
  18. JABOSL

    Soap

    Brian, Consumes a web service? Headless? I don't understand, but I don't really have time to get into that now. I was inquiring which of the many choices to make when starting a new project in Visual Studio. I usually use "Windows Application" but I thought the soap client might need to be...
  19. JABOSL

    Is ASP.net app required for https?

    Do I have to build an "ASP.net Web Application" to submit HTTPS requests? Or can I use a "Windows Application"?

Part and Inventory Search

Back
Top