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

  • Users: JABOSL
  • Content: Threads
  • Order by date
  1. 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!
  2. JABOSL

    How do I change the exe icon?

    Where do I change the default icon for the exe? VB 2003
  3. 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?
  4. 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...
  5. 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")...
  6. 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
  7. 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...
  8. 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...
  9. 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...
  10. 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"?
  11. JABOSL

    Soap

    When creating a soap client program in VB.net do I choose to create a "Windows Application" or one of the other choices?
  12. JABOSL

    confused.

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

    Net.HttpWebRequest.Create(URL)

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

    the "correct way" to start a program

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

    Where do I declare a global variable?

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

Part and Inventory Search

Back
Top