Why A Double 1.0 Its Equal To An Int 1
Sep 17, 2011
Yesterday I asked why a adding 10 times 0.10 to a double is not equal to int 1;in VB Why (1 = 1) is False.I got an excellent answer. The overview is because:Floating point types and integer types cannot be compared directly, as their binary representations are different.The result of adding 0.1 ten times as a floating point type may well be a value that is close to 1, but not exactly.I can see the reason why now. However, if I do something like:[code]In this case I really obtain equality between double 1.0 and int 1. I thought then that double were only approximations so I would expect d to be somehow a value close to 1 as in the original first question. Why is not a good idea to compare directly different data types (in this case double - integer) and why I this time I obtain equality ??
View 2 Replies
ADVERTISEMENT
May 19, 2012
In the following LINQ query, i would like when the Loc=Locale.Gr all the records with GrID=100 returned and when the Loc is anything else all the other records with GrID <> 100 returned.How can i achieve this one? I tried something like the following, but it is totally wrong.
PrivateSub Test(Byval Loc as Locale)
Private Const GrID as integer = 100
Dim Query = From c In Mob Where c.CountryID = IIf(Loc = Locale.Gr, GrID, <> GrID) select c
End Sub
[Code]...
View 1 Replies
Mar 8, 2012
How does one check to see if the system time is equal or not equal to a specific time? So, say I want to perform an action if your system time is between 6pm and 6am. Or something similar?
View 1 Replies
Jan 27, 2011
I have a situation where I am handling both single & double mouse click events on a form. In both cases something has to be loaded, however when a double click occurs, I do not wish to execute the code attached to the single click event.Is there a way to intercept the mouse click's and check if double or single and then execute the right event appropriately?
View 2 Replies
Nov 17, 2010
I have a htpc project that I am working on. The main program loads dll plugins which are basically other win forms. On each of these forms, including the main program, I use a picturebox (a double buffered picturebox) for the background image and then draw everything on it by hand. Whenever I load the form from the dll and show it, I get a weird flicker. It looks like it is the previously used double buffer. Is there any way to clear the background double buffer before the flicker? Or am I going in the wrong direction?
Here's a couple of videos of the problem:
[url]
[url]
Notice the black screen with the white lines on it or the flash of the desktop after I click "Movies." How do I get rid of that?
View 14 Replies
Aug 15, 2011
For greater accuracy I should use a Decimal instead of a Double ( so I've been told ). Why then have Microsoft chosen to use DOUBLE for most of the functions that return a floating point value in the Math Class?
[Code]....
View 9 Replies
Apr 4, 2009
In vb.net, im using objWriter.Write("playerA= "x"")as you can see im using double quotes inside double quotes, how do i skip it so the error doesnt show up?in php you make an "" to skip the string like ("playerA = "x" ")
View 6 Replies
Aug 11, 2010
When i use VB6 i get the following outputs
961.605 * 100 = 96161
936.495 * 100 = 93650
929.295 * 100 = 92929
NOW..... When i do the above in vb.net 2005 i get the following
961.605 * 100 = 96160
936.495 * 100 = 93650
929.295 * 100 = 92930
How can i get the same output as the VB results. And i have tired it ! Type conversions, math functions, everything i can think of to get the same VB6 output !
View 8 Replies
Aug 11, 2010
When i use VB6 i get the following outputs
[Code]...
View 1 Replies
Oct 27, 2009
I've asked this question before, and so have many before me, i have done extensive research on the topic and stil no help. Maybe this is some kind of secret info. shared only amongst top programmers. Bt how do you really, trully double buffer a form, aside from setting "Double Bufferd" to true, which doesn't work in most cases, I want to know how do companies lyk Microsoft and Symantec, prevent flashes on big applications such Word and Norton.
View 4 Replies
Feb 23, 2010
If I try to display a command line argument that has double quotes around, the double quotes are always stripped off. How can I avoid this?
for example, the argument is "c:xx.txt" and this displays c:xx.txt instead Console.WriteLine((My.Application.CommandLineArgs(4)))
View 4 Replies
Feb 6, 2010
On winxp sci. calculator when you press 9x9=81 you get 729 when you press = again.How can i add this feature to this code i already have.
View 2 Replies
Dec 28, 2011
I have a Date variable startdt and a String variable hdnsdate. Suppose if startdt has the value in the form 3/1/2012 and hdnsdate has the value in the form 03/01/2012. Than how can i compare that these two dates are equal in vb.net. In if condition of my program i want to do this check. In case the two dates match move out of if loop otherwise go into the if loop. E.g A sample in C# what exactly i want.
[Code]....
View 2 Replies
May 20, 2011
I'm a little foggy on System.Type versus an actual class type (like Object or XmlDocument) in .NET... will this code correctly determine if the type of a particular object is equal to a class I specify?
// Given "myObject" (unknown type), and some class type (let's say "MyClass")...
If myObject.GetType.Equals(MyClass)
If TypeOf(myObject) Is MyClass[code].....
Which one is correct? Bonus points if you can provide some information on what a class identifier is versus what a System.Type is. :)
Note: The language doesn't matter here, VB.NET or C# is fine, the code above is pseudocode.
View 2 Replies
May 31, 2011
I would like to compare dates (not times) for 2 datetime variables. I get one of the dates from database as follows and comapre it with yesterday.How can I do it?
[Code]...
View 6 Replies
Apr 13, 2010
Why does the first if statement evaluate to true? I know if I use "is" instead of "=" then it won't evaluate to true. If I replace String.Empty with "Foo" it doesn't evaluate to true. Both String.Empty and "Foo" have the same type of String, so why does one evaluate to true and the other doesn't?
//this evaluates to true
If Nothing = String.Empty Then
[CODE]...
View 3 Replies
Nov 8, 2011
I'm trying to set a text box equal to a value in dataGridView and I keep getting an error index out of range.The dataGridView is data bound to a stored procedure. When I move the text box setting to initiate after the form loads and a button is pressed it works fine; however, when it tries to automatically load after the fill command it errors out. The following code is what I have:
[Code]...
View 1 Replies
Mar 25, 2010
I want to test if an image in a picturebox is the same to another image in a picturebox?Also, i get my images from a listBox.I need to use i as a conditional in an if statement.
If (picBox2.Image = picBox1.Image) Then
' code ...
EndIf
[code].....
View 5 Replies
Jan 29, 2011
I would like to set stringa and stringb to be equal and then clear stringa like so:
Dim stringa as String = "abc"
Dim stringb as String
stringb = stringa
[Code]....
However this code sets up a link between the 2 variables, so when I clear stringa stringb is also cleared.
View 1 Replies
Oct 6, 2009
I am trying to write an IF statement that checks to see if a certain String variable is not equal to a certain value. What is the best way to do this?
Method #1
IF NOT(Nametxt.Equals("Fred")) Then
x = 3
[code].....
View 10 Replies
Apr 13, 2010
How do I declare/define a ResourceManager in the following code so it doesn't equal Nothing when it reaches rm.GetString("Magnitude") in the following code? My.Settings.. is returning a valid string.
Imports Gigasoft.ProEssentials.Enums
Imports System.Resources
Imports System.Configuration
[code]....
View 6 Replies
Mar 25, 2009
I have a CSV file where the values are in double quotes and seperated by a comma. I'm getting incorrect data if I try to seperate the string with my Split function. How do I do it?
Example:[code...]
View 2 Replies
Feb 12, 2010
This makes no since to me I have a textbox that the user will put in information that I need to cut off so I wrote this code
txtMatID.Text = Trim(Mid(txtMatID.Text, 1, (InStr(txtMatID.Text,
"-") - 1)))
The user will imput a number value then a - then some words after that. I just want the number value. But when I try to debug the app it breaks on this line of code with this error. Argument 'Length' must be greater or equal to zero.
View 11 Replies
Jun 13, 2011
In my decryption statement I am getting
Argument 'Length' must be greater or equal to zero. is this statement wrong
DecodedStr = Mid(DecodedStr, 1, InStr(DecodedStr, Right(DecodedStr, 4)) - 1)
View 2 Replies
Sep 26, 2011
I disabled an exception because it was bugging me i couldnt find an intermittent error. My program reads textmessages from a phone, however a problem sometimes arises, and I am slowly pinpointing the areas of the code that cause issues. I have found however that it is sometimes here:
'Get a string of certain length
Shared Function GetString(ByRef PDUCode As String, ByVal Length As Integer) As String
[Code]....
check to see if length is zero AND thereofre try again in a moment, (because it usually works second time for some reason). I can think how to get around the exception
View 2 Replies
Feb 22, 2010
How can i check a file's md5 if it's equal to one in a listbox?[code]...
View 3 Replies
May 15, 2011
I want to check If a variable is equal to some values or not, for example:
if a = 1 or a = 5 or a = 7 or a = 10
is it possible to do it like sql:
if a in (1,5,7,10)
View 3 Replies
Mar 20, 2012
what is the equal vb.net form event for vc++ ON_MESSAGE event
View 2 Replies
Aug 14, 2010
What I want is ListBox1 and ListBox2 above are not same Item
ListBox1.Items.Add("2")
ListBox1.Items.Add("4")
ListBox1.Items.Add("6")
ListBox1.Items.Add("8")
ListBox1.Items.Add("10")
[Code] .....
View 6 Replies
Mar 15, 2012
i will like to generate four numbers at random, that will total 100 and assign each to a textbox.
View 6 Replies