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

    How to add a signature in outlook using vb,net?

    Sorry my coding did not appear Dim sParams As String = "" Dim emailto As String = "test@test.com" Dim subject As String = "Subject Test" Dim body As String = "Line 1" body = body & "%0A" body = body & "%0A" & "Line 2" body = body & "%0A"...
  2. Immortal49

    How to add a signature in outlook using vb,net?

    Hi, I have the following coding in place which basically just opens a new email in outlook, however my signature does not appear at the bottom. I was wondering if this is possible at all?
  3. Immortal49

    How to change the value in a textbox to the previous value?

    Thanks for your response, much appreciated.
  4. Immortal49

    How to change the value in a textbox to the previous value?

    Coding is not appearing so i will paste it below Private Sub TextBox1_TextChanged(sender As Object, e As EventArgs) Handles TextBox1.TextChanged Dim Value1, Value2 As Decimal Decimal.TryParse(TextBox1.Text, Value1) Decimal.TryParse(TextBox2.Text, Value2)...
  5. Immortal49

    How to change the value in a textbox to the previous value?

    Hi, I have two textboxes, value in textbox1 gets added to the value in textbox2 and i have this coding in place, the only problem i have is that if i made an error when adding a value in textbox1 and i remove the value to add the correct value the textbox2 value does not also change to the...

Part and Inventory Search

Back
Top