Make A Gui - Error On "colorNumber" In The Line/ ColorNumber = Convert.ToInt32(TextBox1.Text)"
Apr 30, 2012
[Code]...
I get an error on "colorNumber" in the line/ colorNumber = Convert.ToInt32(TextBox1.Text) It says expression is a value and can't be target of statement. What does that mean? Then how can I change the target?
View 2 Replies
ADVERTISEMENT
Feb 25, 2011
is there anyway to make listbox1.item1=textbox1.text? or the first row of richtextbox1=textbox1.text?
View 1 Replies
Oct 14, 2009
Whatd does following code do in VB?
Convert.ToInt32(rmaValidationCode.ToCharArray().GetValue(0), 16) Mod 2) = 1
note :Private rmaValidationCode As String
View 1 Replies
Apr 30, 2009
In button1 Keyup I want to be able to make textbox1 skip a line.How would i do this. I tryed
Private Sub button1_KeyUp(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles button1.KeyUp
If e.KeyCode = Keys.Enter Then
textbox1.text = vbnewline
End If
End Sub
I would also want to know how to make it when I push the button2 it will undo the letter I just did
Private Sub button2_KeyUp(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles button2.KeyUp
If e.KeyCode = Keys.Back Then
textbox1.undo 'this will just undo the whole text I just did
End If
End Sub
View 1 Replies
Jun 18, 2010
C#: Difference between int.Parse( ) & Convert.ToInt32( ) ?And Which one we have to use on what cases--
View 15 Replies
Feb 23, 2012
I want to add a condition when textbox1.text changes , the added text to textbox1.text is showed in another textbox.
View 6 Replies
Jan 2, 2010
This should be pretty easy, I've been experimenting, just can't seem to figure it out. I'm trying to make a MsgBox popup with the text that is in Textbox1 and Textbox2. I want the MsgBox to display both values...
View 3 Replies
Oct 23, 2009
The function "Convert.ToInt32" returns my an integer increased by 48. My operating system is Windows Vista with 32 bit.Here a code, where the bug will be called:
Module Main
Sub Read(ByVal Text As String, ByRef Value As Integer)
Console.Write(Text)
[code]....
View 5 Replies
Nov 12, 2011
How to make an SAVE button that saves the text from Textbox1,2,3 and add an comment on the file.Example:
1 button named "Save", when click to save the text from textbox1,2,3 in file named "Anti.txt" (in the same directory where is the .exe file)
2. to display an message when save is complate, if it is not to display error that cannot be saved
I got simply code for save,but i dont know how to modify it to be like this: [code] Where it is Textbox1: to be like a title in the .txt file and after it to add the text from the textbox1.
View 4 Replies
Dec 22, 2011
I am working on bit more advanced calculator, but I cant figure out how I can make my program to calculate textbox1.text and show the answer in textbox2
For example: (textbox1) 5*62+4
(textbox2)314
I'm not sure this question belong in this topic, but I don't know where else it should be?
View 16 Replies
Sep 8, 2009
i have three textbox in my program
How do i update my textbox3 Data like this
textbox3 line1 = textbox1 line1 + textbox2 line1
textbox3 line2 = textbox1 line2 + textbox2 line2
textbox3 line3 = textbox1 line3 + textbox2 line3
textbox3 line4 = textbox1 line4 + textbox2 line4
textbox3 line5 = textbox1 line5 + textbox2 line5
View 2 Replies
Jan 21, 2010
i have three textbox in my program. How do i update my textbox3 Data like this
Rich_textbox3 line1 = textbox1_line1 + textbox2_line1
Rich_textbox3 line2 = textbox1_line2 + textbox2_line1
Rich_textbox3 line3 = textbox1_line3 + textbox2_line1
Rich_textbox3 line4 = textbox1_line4 + textbox2_line1
Rich_textbox3 line5 = textbox1_line5 + textbox2_line1
it will continue to last line of textbox1
View 1 Replies
Sep 3, 2009
I have a Textbox1 and I'm making a function that adds " at the beginning and " at the end of the textbox when u click a button called Button2.
[code]...
View 2 Replies
Mar 22, 2011
the code on the page: <div id="currentactivity"> Last seen 47 minutes ago playing db: raging blast <div>
what im trying to achieve is to make textbox1.text = the current activity so that would be (Last seen 47 minutes ago playing db: raging blast)
ex1)webbrowser1.getelementbyid("currentactivity") = textbox1.text
ex2)webbrowser1.getelementbyid("currentactivity").text = textbox1.text
something like that
View 3 Replies
Jul 8, 2010
how can i make an if statement the "if textbox2.text has only one line of text then..."
View 3 Replies
Sep 21, 2009
How can I make text in a message box appear on the next line for example: I need to know how to make text in a message box appear on the next line
View 2 Replies
Mar 16, 2010
onbutton click, I want to convert a string from textbox1 to textbox2 but assign values to each character.
i want to assign an alphabet character, to another alphabet character or number.
for example textbox1 - "visual basic" to textbox2 "abcabc abcab"
example if "v" then "a"
if textbox1 "b" then textbox2"c"
View 8 Replies
Aug 5, 2010
I need to link a image button to a pop up page with a multiline textbox for input. When the user clicks the notes image a popup page will appear with a multiline text box that allows users to enter notes. There needs to be a save button that will update the notes field in tblinventorycomponentitems if user entered text and a cancel button for if the user changes their mind. The notes image button is located in account_ customerinventory components_edit.aspx in a dataGrid with an id of "GroupDataGrid".
View 1 Replies
May 29, 2012
I use this cod but it not moving the text contnusly Private sub Timer1............ Label1.text = " " & Label1.text
View 1 Replies
May 3, 2011
I would like to know how to read from text file that have a line with string A and ignore lines with string B.
View 7 Replies
May 15, 2009
Is there any way to make the AppendAllText so that it startes a new line before it adds the text?
View 4 Replies
Jun 9, 2011
I am working on a project that convert images to text , and load them from text , so i can save them online then load them as image . But if u could just give me a code of a project with a textbox where i write the text instead of downloading it it will
View 3 Replies
Jun 24, 2009
how to make first line paragraphs in VB 2008 with rich text boxes. I need the code for it. PS. First Line Paragraphing in when only the first line indents and the rest of the paragraph stays normal. I need the code for Visual Basics 2008?
View 2 Replies
Apr 27, 2012
I want to make the text in column of ListView control to be 2 lines. So I use the codes below to test. The result is bad. The "vbcrlf" in str2 doesnot work at all. Dim str1 As String = "Job Number12345" Dim str2 As String = "Job Number" + vbCrLf + "12345" ListView1.Columns.Add(str1, 100, HorizontalAlignment.Center) ListView1.Columns.Add(str2, 100, HorizontalAlignment.Center)
[Code]...
View 5 Replies
Dec 3, 2011
I am trying to insert data from a text file into an Access table. However, when I try to execute the command, I keep getting the following exception:A first chance exception of type 'System.Data.OleDb.OleDbException' occurred in System.Data.dll.And my Catch block throws me the "Unable to read file" error that I placed.[code]
View 4 Replies
Mar 13, 2012
I try to make a text to go from "textbox1" to "textbox2". and if it a text in "Texbox2" say "World" and in "textbox1" say "hello", can i do like it wil be "Helloworld" or "worldHello" in "textbox2"
View 2 Replies
Apr 21, 2010
If TextBox1.Text.Contains = ("@") Then I need to make sure textbox1 contains a @. And its supposed to be a code like that.
View 14 Replies
Dec 19, 2008
I've been looking through the FCL for a method that will allow me to erase a line of text from a text file and replace it with another line of text. Neither the StreamReader nor StreamWriter have a method for replacing or removing Text from a text file, as does the string object. Are there any available methods for erasing just certain lines of text from a file, and then replacing them with others?
In my code, I'd like to locate a certain line in the text file, and then at that point in the text file, use a For...Next Loop to replace each successive line of the text file with new text:
Dim user_data_file As String = "user_data.txt"
edit_input = New StreamReader(user_data_file)
Dim edit_line As String = edit_input.ReadLine
[CODE]...
However, I can't find any methods that will allow me to do this.
View 4 Replies
Jun 27, 2011
Just a quick question my textbox1.text seems to get focus when I run the APP.how do I cancel any focus to any textbox?I just don't want to select it or anything when I work with it only when the user select or uses it.
View 1 Replies
Nov 15, 2010
what is the code for sending IP via textbox1.text and button1.text
View 9 Replies