o
k
q
u
e
s
t
i
o
n
s
.
c
o
m

Option Compare -

Can anyone give me some insight as to the benefit of using option compare.. i pretty much know what it does.. and that it is compare binary by default... but when should you use option compare text instead?

 

Option Compare -
Can anyone give me some insight as to the benefit of using option compare.. i pretty much know what it does.. and that it is compare binary by default... but when should you use option compare text instead?


Option Compare Text at Runtime -
By inserting option compare text, str comparisons become non case sensitive. I need to know how at runtime I can switch between binary and string comparisons? I can do it the messy way by optionally running a ucase or lcase statement to both string to be compared, however this be


Compare word Documents -
Hello, Is it possible to compare two word files without using MS Word's inbuilt Compare & merge option? May be in VB way??? Could you please help me out on this. Thanks, Kanna.


Compare Two Word Files -
Hi All, I want to develop a VB6 application to compare two word files. I want to include option to - compare the content only. - compare the content and Formating also. I want you all to suggest me the best way to do it. Thanks in Advance.


Easy one: string/char comparison -
I need to compare two character array elements to see if they have the same value, but using a text compare rather than a binary compare of the scan codes. I want to do what VB's Option Compare Text does rather than Option Compare Binary, which is what I am seeing as a result of this c


Option Compare Database - make it stop! -
Whenever I make a new Form/Module, Access 2000 inserts Option Compare Database. Does anyone know how to turn this feature off?


Option Compare Text Optional -
Is there a way that I can say: Code: If Compare = True Then Option Compare Text End If If not, is there an easy way to simulate that effect?


Explanation for Option Compare Text .. etc -
could someone please explain what are these and what is there main purpose. And also is there anymore like these. Option Explicit Option Compare Text ------------------ OmarSwan omarswan@yahoo.com http://omarswan.cjb.net "Jesus is Lord"


Problem with Option Compare Text -
Visual Basic 6.0 When I try to use the Option Compare Text which enforce case insensitive text comparisons visual basic returns with compile error "Invalid inside procedure". Should I have to add something else in order to be accepted?


SQL & option compare binary : NOT..... -
Hoi folks, I'm developing my first program in VB. I have setup a database with Access 7.0 and added records to several tables with my program. SQL-querie "SELECT ..." returns more info than i supposed to get, example : word and WORD are both selected : upper- and lower


7 Questions(.Net standards) -
Hi, I have 7 questions : 1) Can i replace [If X Is Nothing Then] with [If X = "" Then]? 2) What is [If X Is Nothing Then Throw New ArgumentNullException("X")]? 3) Can i use [Option Explicit On] in AssemblyInfo.vb? 4) How many Class, I can put in 1 Namesp


Compare in Winword -
Dear All, There is Compare option in winword between two docuemnts.Is it able to appy this method between two rich text boxes(As You all know that ROBDOG888 has a Spell Check by using Winword) Thanks in Advance


Making the code compare strings case sensitive -
I have used this before but I cant remember exactly how I implement it...To make vb compare everything case sensitively.. For example If "kewl" = "Kewl" then msgbox "This wouldnt fire becuase they dont match in case." end if and using Lcase is not


Qs: What is [Option Compare Text] -
Hi, What is [Option Compare Text]?


Case Sensitivity in .Find methods -
I am doing a .FindLast on a recordset and expect the search to be case sensitive. However, it appears not to be. I played with Option Compare (whose default is supposed to be binary) and found that that didn't help. Even when I explicitly include Option Compare Binary, it fi


Case sensitivity -
Does anyone know if SQL Server is case sensitive? I ask this because when I perform comparisons between string variables and fields in ADODB Recordsets case does not seem to matter. For example, if I compare hello and HELLO, they are considered the same string. However, my application


help with DateTime.Compare -
hi! can anybody please help me. Why is it when i try to compare two the same dates I was not getting the right return value of Datetime.Compare which 0. I dont know if the problem is in my code or is in the Datetime.Compare method. by the way, i attched a screenshot to give you more id


Text Compare -
Dear All, I found the attached text compare project from some other site. It is comparing word by word. I want all the option avalible in this as it is.But the comparing should be faster.How can I do that. Thanks In Advance.


Fast Compare -
Dear All, I have two Richtext box in Form . I have typed some word in Each boxex.These Text boxes has arround 100 - to 150 lines each. I want to Fast Binary compare method, which will highlight the First Mismatch with some colour in Each Text box.These Compare sh


easiest way to compare 2 lists -
what is the syntax for using the compare in vb... ie compare filelist1 to filelist2 and see what files one directory has that the other doesnt


displaying date into combos -
the combo's are populated with the following items; <select name="cboMonth" id="cboMonth"> <option value="1" selected>January</option> <option value="2">February</option> <optio


[resolved]case-insensitive string compare -
Quickie - just looking for an existing function to compare example and eXamLe which will return true, without having to overload string.compare functions.


Compare MDB -
I want to compare two Access 2000 database files. And find out what records have been changed. Is there a program to compare two files?


How to compare multiple (part) strings -
Hi, I have 2 listboxes and want to compare both and count in how many lines are identical strings. BUT .... I want to use part of the strings (same as with MID) and this part strings chance always. For example: I want to compare at the begin the characters 1-5 then 2-6 then 3-7 a


better way to compare dates -
hi guys! can anybody please help me...i have the code below which compare two dates,datenow and the alarmdate, and show the alarm notification when they are equal but as you can notice the way of comparing dates is first Convert both dates ToShortDateString and compare it and when they


compare 2 datasets -
I have 2 datasets derived from 2 XML files and I want to compare these 2 datasets. I'm doing a readxml and loading the dataset. How can I now compare the datasets row by row. I just want a boolean value to see if its true or false. I dont want to do anything with the data. thanks


Option Compare Binary -
What is it? I saw it at the top of a project someone else made and I had never seen it before? Does it just change the IF statements are treated (and other comparisons)?


Compare two .bas files[Found a way] -
Does anyone know of a way to compare differences between two different .bas files? I have two different versions of a very long and convoluted bas module and would like to mark areas, or at the very least have them pointed out by some sort of "compare" program. I su


Another Access VBA Error -
I am getting an error saying that there is a compile error and that it can't find the project or library. I have attached the code of the function below as an image to show you that the As Database and As TableDef come up in black and not blue. I think that might have something to d


Compare two XML files -
Hi there! Does anyone know how to compare two xml files? what i wanna do is compare the two xml Files and then display the difference to the datagrid...thanks in advance.


File compare software -
Dear All, Can some body suggest me good file compare software to compare the two text files.?


compare arrays........ -
Is there any way to compare two arrays and calculate how many times they're not equal. Like, you've int vector[3] = { 1, 2, 3 }; int vector2[3] = { 1, 2, 6 }; and then you compare these two and report that they're not equal 1 time.


Dropdown list validation -
How to validate this kind of dropdown list? (on form submit) The first list is empty...An alert message will popup if the list selected is empty... <select name="bnRoom"> <option></option> <option>MONDAY</option> <option>


get data make selection option -
Hey guys, I am stuck with this logic. Say I have a form Code: <select name="Birth_Month"> <option value="">(Month)</option> <option value="01">Jan</option> <option value="02">Feb</option> <o


[B]How to Compare 2 DLL files versions[/B] -
Hi All, I am doing AutoUpdate program where I need to compare 2 DLL files version. Please let me know how to compare two DLL file version. Thanks, Mohan


Command line for Office Word Merge ability -
Ok, so Microsoft Word has this ability to compare and mark up difference between two documents. If you open up a word document, you can go to Tools -> Compare and Merge Documents. Anyway, is there a way I can do this via a batch job or command line? Something like (I don't


compare recordsets with listbox -
I have 3 recordset rs1,rs2,rs3 I compare the fields in rs1 ,s2 so if rs1<>rs2 then I put the missing data in a list box How can I compare all the list items with rs3 so if list.item – rs3 field , not to appear in listbox??


Compare Only Date not the Time (datetimepicker) -
Hallo, i have a problem with comparing two DateTimePickers, which both have the same date. but with Date.Compare(date1, date2) a voll comparsion with date and time is done. how can i just compare the dates.. (I have searched the forum and msdn...nothing found)


Form frames, i could say... -
Ok, we all know what frames in a web page are. Is there a way to create something like this in VB? I can always make it so upon click of the topic, new buttons visibility are set to true, and the unneeded ones are set to false. But is there an easier way to do this, heres an example of


My existing code -
Option Compare Database Option Explicit Sub PDFpagecount() Dim objPDF As AcroPDDoc, FN As String Dim objDoc As AcroApp Dim rs As Recordset, doc As String Set rs = CurrentDb.OpenRecordset("PDF") Set objDoc = "iprosystemadmin80.pdf" rs!Field2 = objPD