I'm making a program that I need to put a button in that when you click it it sends the writing in form1's textbox1 one to the email you type in dialog1's textbox1.
Basically I have a textbox and button on Form1 that when you press it opens dialogbox1. In dialogbox1 there is a textbox and a send button. I need to make it so when you press send it sends an email to the email adress you type in the textbox and the body of the email is whats in textbox1 of form1.
Let's say that you have a texbox labeled TexBox2 and you don't want it to be seen when the program runs because TextBox1 pulls information from TextBox2 and it shows up inside of TextBox1. How would you go about doing this?
I have two webpage in my website namely Default.aspx and Default2.aspx
I have asp.net textbox1 and button1 inside Form tag in Default.aspx page
and i have textbox1 inside form tag in Default2.aspx page
i want when i wanna transfer the textbox1 text of default.aspx page into default2.aspx textbox1 text hidden parameters ... which will not show query string in address bar and transfer value from one page to another..
I have got the following code for if in textbox1 the would be appear as 10:10:00 AM and in textbox2 the time will appear as in 4 hours time slots automatically as 06:10:01 AM ..if the textbox2 time will be 06:10:01 AM then MSg box will appear that "You can not registered to this site because the 4 hours time slot will be over " [code]Remember in textbox1 the time would be any .....and textbox2 will auto generate time according to textbox1 to maintain 4 hours time slots between textbox1 and textbox2
i've tried to make it so Button5 Deletes what TextBox1 says I know its
Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click If File.Exists("FILE.TXT") Then File.Delete("FILE.TXT")
[code]....
But I want it to find and delete what TextBox1 Says.
The following code works fine. However, it only inserts on TextBox1, one filename. I would like to be in aposition to add more than one filename. Can anyone please tell me how I can achieve that.. code below; Private Sub BtnFolder_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnFolder.Click
I am basically trying to create a basic math calculator, the basic inputs are in TextBox format. I have made the basic calculator ok but would like to have a MsgBox pop up if TextBox1 is > TextBox2 these are both TextBoxes which have data entered in them. Hope this explanation makes a little sense. Below is my attempt at this!
Private Sub MsgBox_Load() If (Val(TextBoxDPID.Text) > Val(TextBoxDPOD.Text)) = MsgBox("DPID can not be Higher then DPOD",
as the description describes it does nothing, but i want it to run btnSearch_Click event.This is my code, i have been fiddling with for a while now and driving me insane.
I'm using vb2008 I have tow TextBox(1a and 2) on the Form1 I insert this code in the Load Form1 Event TextBox2.Focus() But when I run the program it focus to the TextBox1 why and how can I make it work to the TextBox2?
so i am wondering why this is not working. I have tried every thing i have used textbox1.text = smessage and textbox1= "smessage"
What i want is the output of smessage to not only write to a txt file , which it does but also pop up in my text box on my form as it runs. not sure what i am doing wrong. it seems so easy
here are the main codes
Public Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click, TextBox1.TextChanged ' some other DIM stuff here all normal stuff
Basically, the user needs to replace a specific line by writing in the textbox. However, when I get the final result, it only shows the first character of the given string. For Example, user writes "Hello", output gives "H"
Public Class Form1 Dim fso = CreateObject("Scripting.FileSystemObject"), inputFile = fso.OpenTextFile("C:\Users\chhunla\Desktop\New folder (2)\0.txt", 1), outputFile Dim str As String Dim str1 As String
First I want to tell u all I am an absolute beginner at using VB.NET and other programming languages and am going to start learning VB.NET.What I am trying to accomplisch I couldn't find trough Google I am trying to make a Windows GUI based tool in VB.NET (2010) which deletes files by fileage with some other settings.I have a Form1 with:
TextBox1 - Where I have the output of a slectfolder button TextBox2 - Where I want to input the File Extention (comma seperated) DateTimePicker1 - Where the date can be set to delete files before that date Checkbox3-5 - FileAttributes (Hidden, System and Read-Only) CheckBox1 - Run in SafeMode (No delete takes place)
This is the delete script I made
For Each file As IO.FileInfo In New IO.DirectoryInfo("C:YourDirectory").GetFiles("*.txt") If (Now - file.CreationTime).Days > 160 Then file.Delete() Next
I need TextBox1 from form 1 to be strung or "echo" in form 2..I need it for this example: Form 1 comes first.Form 1: Whats your name? You answer "Bob" and click ok. Form 2 popups etc,."Hello, Bob, how many i help you?" ^That will be in Form2. The string was grabbed from TextBox1 from Form1, but how do i grab that string, err, use it?
on my Win Form there is 1 ComboBox and a textBox when clicking the Combobox_SelectedIndexChanged, ComboBox1 has a list of 20 items to choose from. On some Combobox_SelectedIndex I would like to able to write only numeric value in textbox1 and on some other Combobox_SelectedIndex I could write both numeric and alphanumeric values [Code]
i am writing my very first program with visual basic 2010. my question:
textbox1 + textbox2 = textbox3 if i want to add textbox1 and textbox2 together and display the value in textbox3 WITHOUT creating a button for a command, what do i have to do?
basically, i want the value to appear in textbox3 automatically when i input textbox1 and 2.
I want to display the gmap ..if i enter City name in textbox1 and another city name in textbox2 then the gmap will display and the both cities will be highlighted in the gmap with its distances ...i wanna do this using vb.net, asp.net.