Vb 2008 : Drag And Drop Replacing Text In Txt1 With Txt2 And Replacing Txt2 With Txt1 At Same Time?
May 18, 2011
txt1 = help and txt2 = me! txt3 = not here, when i enter the other box i want the okay to drop sign to come up, after drop txt1=me! and txt2 = help.if i drag to txt3 display the can't drop sign.Iv'e tried everything all i can do is replace one way.also,i want the can't drop and can drop simbols to show.so far
I have two multiline textbox call txt1 and txt2. Each line on txt1 will be filled with name while txt2 will be filled with age. I wish to loop throught both txt1 and txt2 and fill them into an arraylist using User class. I was only able to fill in the name but have no idea how to append the arraylist to add in the age.
VB Dim str As String = "07" & GetBetween("Stephen 0761234567", "07", vbNewLine)Dim op As String = "lol" TextBox1.Text.Replace(str, op)
GetBetween is just a function to match something between something else. That works fine, the string (str) sets as 0761234567 just like I want but when i try to replace the text it doesn't work.
Sorry if this seems like I haven't searched, however I have. Maybe I'm not understanding something or maybe I just haven't found what I need. Anyway my question is this. How would I find multiple strings in a text file and replace them? So far I've been able to find out how to replace a single string with:
I have a form with a large GroupBox on it. Inside there are a total of 22 buttons, arranged in two columns of 11. These buttons are basically shortcuts that can be defined by the user. I would like to allow the user to rearrange these buttons by some simple means. (Drag and Drop being ideal.) I have the following code, which allows me to drag the buttons around:
I have 2 questions regarding replacing certain text in a string which has been found using regular expressions.For example this is my string:"<span style="font-weight: bold">This</span> is <span style="font-weight: bold">2010</span>"
I have two lines of text which have long space (more like 14-15 spaces) before the actual text. I have tried simple replace to split and merge but nothing is working. I have also tried trim and the worst thing is that ASCII gives code of 32. But nothing works. Here is the text :
your heartburn symptoms Certain foods, such as fat, chocolate, caffeine and alcohol can aggravate heartburn symptoms 1 Certain foods (BTW it's not like it looks it is. In my actual richtextbox, when I select the space it gets selected as one big piece of space like a tab and i have also tried replacing vbtab but no use)
What I basically have is a small game which I want to count wins/loss/ties. I have no problem with the game aspect but need to know how I can replace a string in a csv file. IE: If Jim wins the game, his 5 needs to be turned to a 6. After googling quite a while I came across the replace() function, but it doesn't actually rewrite it back to the text file
Contents of users.txt: Jim,1.jpg,5,1,0 Will,2.jpg,6,7,0 Tom,3.jpg,5,5,0 Snippet of
[code]....
The issue I have, is if I try to use any sort of IO function after this (WriteAllLines, streamwriter, etc) - I get a process is being used and can't touch the file (because its being read).Must I somehow create a new file with a copy of everything including the replaced string?
I am using the following code, but cannot get this to work. I have got it to work if the replacement is just of one word. So if the word test is replaced by mouse and the only thing in the file is the word test, it works.
How can I replace like this: CH_IPVOD_filename.mpg > replace the CH_IPVOD_ with nothing for the result of: filename.mpg ?
I would like to replace every instance of ch_ipvod_ with nothing. Public Class Form4 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim fso, inputFile, outputFile Dim str As String [Code] .....
Not sure what I am doing wrong here but I have 2 buttons and a rich text box. The issue is when I click the second button to add text to the rich text box and it over writes the current text that is already in the rich text box. How can I code this second button so that the text is added to the rich text box and not replacing the current text?
Here's my Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click RichTextBox1.Text = "This is the first line" [Code] .....
Also how can I add spaces in a line of text (or in the middle of a sentence) so that I can insert a variable in the line. Example: "This is the" variable1 "line of text" "This is the" variable2 "line of text"
I'm building a program in which it asks for your name and age and determines a ticket price based upon these details. I want it to show the person's name, then their age, (jump down a line) then their ticket price, and then it jumps down a line to show the next person's name, age and ticket price. Issue is, when it's meant to jump down to show the next person, it just completely deletes the last person's details.I'm using this line of code:
I'm new to VB and am trying to create something that will change specific words within a DB entry to a random word from a table. My goal is to change swear words to a random word in a separate table (like darn, dang, waterstopper, etc.) So far I have an "Input" table with the text I need to change and a "SwearRep" table with a list of words I need to replace in col "WBad" and their replacements in "WGood".
I'm a beginner who's been trying to learn Visual Basic for a couple of months now (no prior programming experience) and I was wondering if anyone would be so kind as to help a newbie like me out with something.
What I'm trying to do is make a Mad Libs-style program with a multi-line textbox and a button where I type in something like:
I am trying to replace a string which is actually different from line to line in a text file. I want to end up with a filename but without the path. For example:
My text file contains: C: est estingmorefilename.mpg C: est estfiles1 estfile4.mpg W: estinglocation estingmore estfiles9.mpg
I'll explain the scenario. I have a list containing character list and it's corresponding unicode characters(copied from CharMap and pasted in VB editor). For example:
Text = Unicode --> Unicode character --------------------------------------- K = U+004A --> J
I have a pop up form that contains a listbox. Right now I am telling it exactly which text boxes I want to be able to drag and drop to, but I was just told to have it drag and drop to every text box on the main form.The main form with the text boxes has a bunch of tabs on it that hold each section. Each section has text boxes, so how would I code it so they are all capable of allowing drag/drop without specifying each one separately?
This is the code from my pop up form:
vb Private Sub txtDropIn_DragDrop(ByVal sender As Object, _ ByVal e As System.Windows.Forms.DragEventArgs) Dim DropInTextbox As TextBox = CType(sender, TextBox) Dim TextToDrop As String = CStr(e.Data.GetData(GetType(String))) 'get rid of leading " - " if there isn't 'anything in the textbox If String.IsNullOrEmpty(MainWin.TextBox1.Text) Then TextToDrop = TextToDrop.TrimStart(CChar(" -
I have some large csv files (1.5gb each) where I need to replace specific values. The method I'm currently using is terribly slow and I'm fairly certain that there should be a way to speed this up but I'm just not experienced enough to know what I should be doing. This is my first post and I tried searching through to find something relevant but didn't come across anything.
My other thought would be to break the file into chunks so that I can read the entire thing into memory, do all of the replacements there and then output to a consolidated file. I tried this but the way I did it actually ended up seeming slower than my current method.
Sub Main() Dim fName As String = "2009.csv" Dim wrtFile As String = "2009.1.csv"
I insert a text box into form1. I move the mouse pointer on top of the text box. I press down on the left mouse button and begin to drag the text box. The problem is when I let go of the mouse button the text box is not dropped. it remain floating around. My only way out of this is to press the escape key which places the text bnox bak to its original location. Thinking that it might be my mouse I tested it in Power point and everything works correctly.
I'm running Windows 7 x 64 and the latest version of VS 2008.I have spent forever trying to get the following VB6 code snippet to work in a VB 2008 Windows Forms application. The VB6 application works like a charm, even on Win 7 x64.Here is the relevant (I hope) VB6 code. It allows me to select text in IE8's browser window and then drag and drop it onto a TextBox called txtLink in a very simple VB6 application.
Code: Private Sub txtLink_OLEDragDrop(Data As DataObject, Effect As Long, Button As Integer, Shift As Integer, X As Single, Y As Single)
I am in desperate need of code that will allow me to search through a text file (.txt) and change the word "POLAR" to a string with a particular value, for examples sake lets say the string = "SUN"
my OCR copy text to a TextBox with at end, acts like enter key. Is it possible to replace it to something or remove it? For example, I want to copy number 1000 to my text box with OCR but I get 1000(its a little different boxes, I couldnt copy exact ones here). And I cant do
TextBox2.Text = TextBox2.Text.Replace("", "") , because is an "enter key" and what I get looks like that:
Bit of a strange one here,, We have developed a program and deployed it with a Visual Studio InstallerShield wizard, nothing really complicated its one exe along with the DLL required to access MS Access 2007 Databases.
The database itself is located on a server so not deployed with the program. Once installed it all runs absolutly fine with no problems. Now If I rebuild the program from VS without any changes to the code what-so-ever then get the exe for the program out the 'Release' folder and overright the one on my local machine where its installed I can still run the program but the second its asked to interact withe the database its comes up with the OLEDB12 error basically saying I don't have the provider installed or registered.
I'm reading a text file that has ZPL language for sending strings to a Zebra printer. Each line has one parameter that is replaced with a value. However, the line posted below has multiple parameters that need to be replaced with values.
'''''Line from text file ^FO005,005^A0R,035,025^FD(01)90723236{strLabelNumber}{intCheckDigit}(3201){strNetWeight}(11){strProductionDate}(21){strOrg}{strBoxNumber}^FS
[code]....
I can replace one parameter with one value using string.replace, but how would I continue to process the rest of the string? Would I replace the first parameter then reevaluate the string again to find another parameter until no more parameters are found?