Make A Program That Will Compare 2 Documents?
Feb 28, 2009
I am trying to make a program that will compare 2 documents. Idealy what this program would do would be to let the user define key words that he/she is looking for then hit the compare button and have those key words higlighted in both text documents. So far I have 2 button that paste stext into eather box and button that says compare this is my current code for the compare button
If tb1.Text = tb2.Text Then MsgBox("compatible!", MsgBoxStyle.Information) this works great but it only works if the text is exactly the same I just want it to pick up on words that are the same in eather box and eather A. show a message box that tells the words that are the same or better yet B. have them highlighted. I want to do this as simply as possible so if we have to leave out the key words thats ok. I am a big noob and don't know too much about VB (although I came up with that basic code myself thats about all I can do XD) so please bare with me.
View 3 Replies
ADVERTISEMENT
Oct 4, 2009
I want to write a program using vb.net tht compares the name of a document on my desktop to the name of the document on the server. If they're the same then I'd like to retrieve it and have it replace the file I already have.How can i do this? Does this mean that i have to write a web application cuz i hope not. I dont no anything about those. I am using that server for storage purposes only so i assumed that i didnt need a database for the name of the document.
View 4 Replies
Oct 4, 2009
I want to write a program using vb.net tht compares the name of a document on my desktop to the name of the document on the server. If they're the same then I'd like to retrieve it and have it replace the file I already have.
How can i do this? Does this mean that i have to write a web application cuz i hope not. I dont no anything about those. I am using that server for storage purposes only so i assumed that i didnt need a database for the name of the document.
So, how can i do this? Is there an existing class/package in vb.net that does something like this?
View 4 Replies
Apr 14, 2011
The program allows users to insert Documents along with a bunch of their attributes into the program. The documents are stored in a relational database. One of the required functionalities is allowing the user to look for such documents. The User normally search directly for the obvious attributes of the document, like a unique ID, or it's Title. The problem is that from the search parameters is not allways known which ones will the user fill. For example the user inserts the name and version of the deocument, another time the user enters part of the Title and the person that delivered the document, or might just enter the document number and nothing else. Some of the data might even be incomplete, like title, name of the person who created the document and so on. The idea from the person who designed the system (I'm only reimplementing it) was to allow easier searches for the user, and allowing the user to search for more parameters tod with the idea that "the more parameters, the more specific results", since the results are always group of documents instead of single documents.
View 14 Replies
Sep 6, 2009
1- I want to know how can i make a program that's show My computer , my documents , control panel ,my musics, my pictures and my recent documents. 2- I have Made A file extension that i have named it ".fff" . _ I have a form that's contains A text box that i have named it "txtmain" when i creating the setup project i have make a file type and when i want to click on the file extension the program is running but there's no text in the text box but when i running the file in Notepad it's
[Code]...
View 2 Replies
Feb 2, 2010
I've been asked to get the page counts for documents stored as tif files. What I have now is looping through our third party software to open them and then get the page count. I can't stop the image from flashing and it is very slow. Does anyone know of a way to loop through them quickly and can the page counts (one image can have many documents)?
View 5 Replies
Feb 10, 2011
My Visual studio crashes every time I open a specific project, because before closing VS2010 last, I forgot to close a .vb file that I had drug to my second monitor. The issue is likely related to floating tab wells in the VS Productivity Power Tools extension.now when I try to load the solution it will progress part way, but when it tries to reopen the documents that had previously been open, it crashes hard.anyway, I am trying to find out where VS stores info about the code documents that were open at last project close, so I can clear it out.does anyone know where VS stores info about the previously opened code documents? I've checked the project and solution files but neither appears to hold this info. I know that the location must be within the project however, since getting a new version of the codebase from source control corrects the issue (but I still have code to check in...)
View 7 Replies
Jan 31, 2010
I am trying to develop a database application front end that will allow users to view (read-only) and if neccessary add selected (copies) of documents to a database. The documents can then be viewed (again read only) whilst further analysis is carried out on the document contents. Does such a control exist? I need something like a print preview which can be viewed and read.
View 1 Replies
Nov 6, 2009
I want to know and compare all controls of vb 2008. where to go? what to do?
View 1 Replies
Mar 26, 2012
Again i am stucked on this: i have googled it but[code]...
View 12 Replies
Apr 12, 2010
I need to create a code using String Compare() and Cases to figure out if a word, phrase, or what is typed in a textbox is a palindrome. If it is, a message will appear in a label under the textbox that reads, "What you typed is a palindrome." Or, "What you typed is not a palindrome." , if it is not.
View 16 Replies
Jun 17, 2010
I have list of about 100 names in first columns. and i have list of same people's names in second columns, but both are not same.
[Code]...
If you notice carefully, all five people in column A have their names in column B as well.I need somehow both column showing same names for same people ignoring extra names like Jones,
View 1 Replies
Sep 29, 2009
I made a little application that check the servers and if the servers go off for more than 5 mins then the program will sent me a mail.My problem is how do I compare the server date time witch display in a textbox to the real datetime which display in a label also how do I run the program constantly till the user decides to exit by clicking on a exit button.
View 4 Replies
Apr 18, 2009
I am trying to write a program that will compare two strings in different text boxes. Then it must add 1 to a third text box for every time a letter appears in both text boxes. So for example if textbox1 said ABCDF and textbox 2 said ABTR it should return the number 2 because A and B appear in both.
This is what I have so far
Public Class Form1 Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles string1.TextChanged
End Sub
Private Sub Compare_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Compare.Click
Dim string1 As String
Dim string2 As String
Dim Result As Integer
End Sub
Function stringcompare(ByVal string1 As String, ByVal string2 As String, ByVal string3 As String) As Integer
stringcompare(string1 As string, string2 As string) End Function End Class
View 4 Replies
Jul 1, 2010
I would like to make mechanism to prevent a logfile to grow bigger than 4 Mb. Therefore I compare the filesize, get with
[Code]...
With a string value saved in the registry. Now the thing is, that sometimes a backup of the logfile is made, while the actual size is 6 Kb, and the limit as saved in the registry is 4194304. ??
View 3 Replies
Mar 3, 2010
I have two textbox in my application.
Textbox1.Text="19-Jan-2010"
Textbox2.Text="Jan 2010"
May I know how can I compare that Textbox1 and Textbox2 text is within same month and same year?
View 1 Replies
Mar 25, 2009
I have a voice program that can compare voices to stored voice files and identify people based on that. It's not the most accurate thing, since being sick or other weird things can make it fail, but it does work for the most part. I was wondering if there was a way to keep the voice recognition running during an unlock and wait for the person who locked it to come back. Upon giving the command and voice verification, if it passes, the computer is unlocked by my program. Is there anyway to do this in VB.NET?Summary: Can a program unlock a computer after it's locked?
View 4 Replies
Jun 6, 2009
I cannot find a way to make a program that I write make a shortcut in the start menu for all users.My final goal is to make an MSI and deploy it in group policy to all users on a computers OU. Is this possible?
View 5 Replies
Aug 23, 2009
How do i make my button open a program and make it windows size?
View 6 Replies
Feb 25, 2010
If e.CommandLine.Count > 0 Then
Dim IncomingCommand As String = e.CommandLine.Item(0).ToString
If IncomingCommand.Substring(0, 2) = "-1" Then
form1.close()
End If
End If
I am trying to make the program close if the -1 string is sent with the program. See my installer allows for me to run certain programs before it actually installs, but it doesn't shut down copies of the program itself. So I have a next startup instance set to shut the program down if the -1 is received. But if the program is not running it starts up instead. This is not desired. form1.close doesn't work. e.cancel = true doesn't work, etc etc. What can I do to make the program not start during this instance.
View 1 Replies
Jun 1, 2010
I made vb.net program for 1440x900 resolution, if i run my program on 800x600 or 1024x768, my program's resolution is bigger then windows, so i have problem with resolution. Now i want to change my program's size and i am interested in, wich resolution is correct to make program, 800x600 such as minimum?
View 9 Replies
May 20, 2011
they need to make some compare version between host version and client version.. and each 1 version different will download the file to the client..[URL]..with both example, how can i make a program in VB.NET just like i said just now?
View 15 Replies
Aug 26, 2009
How do I make a program that opens a file in the folder the program is stored?
View 6 Replies
Apr 3, 2010
I want to make a program that searches for a RGB color and clicks on it, WITHIN the program.
View 2 Replies
Dec 30, 2010
what im trying to do= make a program that will make multiple accounts
[code]...
ok what i type in textbox(es) "1" i want it typed on a "3"{a website=www.justin.tv/signup} when i hit the "2"[button1]i really dont have any idea what im doing i know ill need to have a webrowser to load the justin.tv/signup but i have no clue what the name of the boxes are called on the webpage
View 4 Replies
Jun 9, 2011
Me and a friend are making an app which we need to play a sound when Form1 is started. How do we do this? I don't mind code.
View 2 Replies
Aug 15, 2011
How to make a computerized examination program using vb.net...
View 1 Replies
Oct 4, 2009
I am new the Visual Basic and just downloaded 2008, and I am wanting to make a program with a button that will run a .exe that is in the same location as the program/
View 2 Replies
Jun 9, 2011
Im having kind of trouble looking for this info, but i created a POS program that when i install it, it install under Local SettingsApps2.0labla
So what i want to know if how can i make my system install like any other program, "Under Program Files/POSystem/" like so
View 2 Replies
Jun 25, 2012
I am making trial version of my vb .net project but it is not counting the days , date and time . Can u plz give me any suggestions to make it correct. [code]...
View 1 Replies