Performing Operations And Assigning Values To A BigInteger Type?

Dec 17, 2011

.Net 4.0
Option Strict On
Option Explicit On

This works perfectly:

Dim N As BigInteger
N = 28 'Put whatever value you want in for N.
Write((BigInteger.Log(N) / BigInteger.Log(2) + 1) / 2)

This does not work:

Dim Result As BigInteger = (BigInteger.Log(N) / BigInteger.Log(2) + 1) / 2

This gives an error during the build (despite the variable being declared as a BigInteger and the operation working perfectly well when I am not assigning it to a variable, it tells me I can't convert a Double to a BigInteger) and I have to do this:

Dim Result As BigInteger = CType((((BigInteger.Log(N) / BigInteger.Log(2)) + 1) / 2), BigInteger)

This if course gives a different, that is, incorrect result.'This doesn't work either.

Dim Result As BigInteger = BigInteger.Log(N)
'I can do this:
Dim ResultString As String = BigInteger.Log(N).ToString
'But then parsing the string fails

[code]....

View 11 Replies


ADVERTISEMENT

Improving The Assigning Operations Of .NET?

Dec 10, 2009

I have an idea about improving the assigning operations of VB.NET (maybe other .NET languages too.) It is similar with "With ... End With" block:

[Code]...

So we don't type "Some Text" every time. Do you think does this idea work? Maybe in the future we can see something like that?

View 3 Replies

Maximum And Minimum Values Are For A Framework 4.0 System.Numerics.BigInteger ?

May 10, 2010

what the maximum and minimum values are for a Framework 4.0 System.Numerics.BigInteger

2 ^ x

or is it a

( 2 ^ x ) - 1 value?

View 2 Replies

Assigning Values To An Array Error "Value Of Type MemberFocal.Member Cannot Be Converted To System.Array"

Dec 9, 2011

I'm having trouble assigning values to an array and am getting the error, "Value of type MemberFocal.Member cannot be converted to System.Array" - MemberFocal.Member is part of a custom class and I am attempting to create an array of these objects. Here is the code:

[Code]....

View 1 Replies

Assigning Objects Of Different Type?

Jul 27, 2010

I am new to VB.Net and I'm a little confused why this line happened to be valid in VB:

DataGridView1.DataSource = ds.Tables("Customerslist")

DataSource is of type Object while Tables("Customerslist") is of type DataTable. How will I know what types of objects can be assigned to the Datasource property?

View 2 Replies

Assigning Values And Calculations?

Feb 28, 2009

i used this code to assign the brand dbs to a value of 200

[code]Private Sub xModelComboBox_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles xModelComboBox.SelectedIndexChanged
If xModelComboBox.Text = "DBS" Then

[code].....

View 5 Replies

Assigning Values Into An Array?

Mar 2, 2009

I have a text file which I open and then read in 1 line at a time and split up. I then takes each component part from the split string and assign it into a variable as I go.

I then want to specific varaibles and put them into an array and build the array.

Can I read in each element and assign it directly into an array or is this was best.

also

I seem to be getting an error when I try and directly add items into an array

' myCarrier(98).EZY_Both = myCarrier(98).EZY_Both + 1 '
Structure Carriers
Public BA As Long
Public BA_Lev3 As Long

[Code]....

View 4 Replies

Assigning Values To Cards?

Apr 27, 2009

basically i've gotten myself into a mess with some last minute project work. shame on me and all that but thats college students for ya. basically i seem to be having problems assiging a simple integer to some pictures in an array. now. basically its a card deck. i've looked this up so many times yet nothing comes to me that fits my code or the way i've been taught. in any case i've got an imagelist and put it into an array to symbolize a deck. now. as i'm doing blackjack i need each card to have its own value. so obviously 2 of hearts value = 2, king = 10 etc.so what i've done is created a function that calls on a string. and used a select case to give a value based on the filepath of the image. however it failed hoplessly. heres a piece of the code:

Sub getcardvalues(ByVal card As String)
Select Case card
Case "decklist.images.item(2club.png)"
value = 2

[code]....

despite this seemingly simple solution i can't seem to pull out the path of these cards as a string. the array simply gives me a number and the actual picture dosnt want to be a string. so my question is this. how can i pull the image path out of the array (eg: deck(1) = decklist.images.item(3club.png)) and turn that into a useable string?

View 1 Replies

Array Of Objects - Assigning Values?

Dec 26, 2009

I am having a problem with objects and arrays of objects. Basically obj_stored holds how many objects I have stored in my text file, in this case t shirts. line(y) is an array that holds each line that has been read from the text file. I then use this to assign values to my array objects properties. For example I know the first line is the color of the first t shirt, second size, third price etc. Then I know the next line will be the color of a new t shirt. There are 6 t shirts in the file.

Dim t_shirt(5) As Clothing.t_shirt
Dim t_shirt_purchased As New Clothing.t_shirt
For x = 0 To obj_stored
t_shirt(x) = Clothing
t_shirt(x).color = line(y)
y = y + 1
t_shirt(x).size = line(y)
y = y + 1
t_shirt(x).price = line(y)
y = y + 1
Next
MsgBox (t_shirt(4).size)

My problem is it seems to be resetting these values after it has finished. Im creating the object each time and assigning values to it's properties but when it's finished it all resets and says 'Object reference not set to an instance of an object'. I'm new to OOP and was wondering what sort of approach i would take to doing this, if the one i am taking is wrong.

So I am aiming to:
Read everything in from the text file.
Create new instances of the objects depending on how many t shirts are stored, (5 t shirts = 5 objects)
Assign the values to my objects properties.

View 2 Replies

Assigning Arrays Values From File

Jun 3, 2011

im a newbie here, im taking intro to programming wth VB in college and im having problem with the homework here's what im supposed to do

[Code]...

View 7 Replies

Assigning Values And Calculation In VB 2005?

Feb 28, 2009

I want to assign values to ifitems in a combo box B brand "ex. Focus = should be $200": items in comb box C "specific years ex. 2006" ANDuse this information to calculateInitialPrice

1. The "InitialPrice" is the default price for the selected brand and model of a car in 2006. I'ved used this code but it's not working.. or am not understanding.

[Code].....

View 5 Replies

Assigning Values To Class Array?

May 1, 2012

Am getting error in development code "Reference to a non-shared member requires an object reference." when assigning value to string array where Array is defined in a class.

Here's some sample code to illustrate problem.

Module FieldNames
'Budget Departments
Public Class GLD

[Code]....

View 4 Replies

Assigning Values To Variables From Another Form?

Dec 3, 2011

I'm passing a value to another form and later on use that value that is assigned to a variable.

Here is the code.
loadingPage.Show()
mode = "notime"
Dim ld As loadingPage

[Code]....

CurrentMode doesn't have a value. I don't know why. CurrentMode is a global variable.

View 6 Replies

ListBoxes - Assigning Values To Each Index

Jun 29, 2009

This code below is from one of the different forms that I am using for a bigger project. I keep getting an error when it comes to the list box. Each index needs to be assigned a value and I can't get it to work!
Index 0=8
Index 1=15
Index 2=70

Public Class frmRegular
Private Sub btnCloseRegular_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCloseRegular.Click
Me.Close()
End Sub
[Code] .....

View 2 Replies

Xmlreader And Assigning Variables Values In .net 2.0?

Sep 8, 2011

xmlreader and assigning variables values in .net 2.0?

View 2 Replies

Error In Assigning Object Of Nullable Type?

Jul 9, 2010

I have a structure that contains another structure. The inner structure is nullable. Now wht I do is something like the following. I create a new instance of the inner structure, set the member variables and assign the whole structure to the inner structure of the parent. But it is giving an error. The assignment is not successful. If I try to peek into the structure in the watch window, it says "property evaluation failed" for the HasValue and Value properties.

Dim testData As List(Of TestData) = Nothing
Dim testData_List1 As New TestData
With testData_List1.commonTestParam

[Code].....

View 1 Replies

VS 2008 - Assigning Decimal Type Value To Variable?

Sep 8, 2010

I want to assign a Value to a Variable of Decimal Type to do a calculation, but when I enter the decimal value (a 28 digits to the right of the decimal point - very long numbers) it gets altered. I give below what I was doing:
Dim MyNumber As Decimal = 0.7777777777777777777777777774

But as soon as I finish typing the number, it becomes 0.77777777777777779 and appears as,
Dim MyNumber As Decimal = 0.77777777777777779

And, when the cursor is kept over the altered number it shows as "Double, Represents a Double - precision floating-point number." How can I get the value I wanted to stay without getting changed? I was able to get this long Decimal value as the result of a calculation and get that appears in a text box in the same program. Is there anything I should change in the "Visual Studio 2008" to get this ?

View 5 Replies

Assigning Text Box Values Dynamically In A Loop?

Feb 10, 2011

I have 20+ text boxes that are all named like:

TxtCustom1
TxtCustom2
TxtCustom3

[code].....

View 1 Replies

Assigning Values To Objects In A Drop Down List?

Apr 28, 2011

Im doing the same thing as him but in vb express 2008 what i have is a checklist box of 10 toppings, all of which can be selected, (no max or min) to put on a pizza, and i have 3 radio buttons grouped together for pizza size (S, M, L) i cant figure out how to give them vaules in which(for sake of demonstration) s=$5 m=$7 l=$9 and each topping is $0.25 then make them add up to an order total in a msg box or something like that

View 2 Replies

Directly And Dynamically Assigning Values To An Array?

Jun 30, 2010

how to assign a 1-dimensional array value I get from a function directly into an element in a 2-dimensional array. An example would be

Dim Results(7)() as DoubleResults(0) = myFunction() ' returns an array with 5 doubles What is the correct syntax for this, if any? I'm still having a bit of difficulty switching over from Python arrays, which work a lot better, it seems.

View 5 Replies

Reading MP3 Frameheader - Assigning Bit Values To Variables?

Dec 20, 2011

I am learning visual basic .net and I am attempting to translate some java source code to a vb.net project. The project reads mp3 details and then splits the file accurately according to the frameheader details etc.

View 2 Replies

Using Variables In Assigning Values To Attribute's Properties?

Aug 10, 2010

i was wondering if we could assign variables into the values of attribute properties like say:

<System.Xml.Serialization.XmlType(namespace:="Result" + x)>

where x is a string with value "qwe" so basically we get the output:

<System.Xml.Serialization.XmlType(namespace:="Resultqwe")

View 4 Replies

VS 2008 : Editing/Assigning Registry Values?

Feb 3, 2011

What im trying to achieve is editing the value of this key; But I've tried everything i can think of.. I've tried just entering the name and type etc. but nothing..I've decalred:

Imports Microsoft.Win32
and the code im attempting to use:
Dim regKey As RegistryKey

[code]....

What i want it to do is create a key from the Drive Selection box i.e. 'H' then create two sub keys called 'DefaultIcon' and 'DefaultLabel' and assign values to their (Default) key but its not working.

View 1 Replies

VS 2008 Read CSV Values / Assigning To Text Box?

Aug 22, 2009

Before I start great forums, from what i've seen browsing unregistered this place is a treasure trove of information; however, after searching for what I need I could only find threads that seemed way to complicated or irrelevant, so...Essentialy I have created a program in which values entered are saved to seperate text files depending on which tab of a Tab Control they originate (from text boxes). I'm pretty new to VB but i managed to save the values of each text box to a .txt as CSV, essentialy all values will only ever be decimals (as currency) or dates. Example code for one of the .txt's:

My.Computer.FileSystem.WriteAllText("C:UsersAndyDocuments
ResourcesTermInformation.txt", Me.tbTIAutTermWeeks.Text & ","
& Me.tbTISprTermWeeks.Text & "," & Me.tbTISumTermWeeks.Text &

[code].....

View 6 Replies

Assigning Result Of If Operator To System.Nullable Type

Aug 30, 2011

When using the If operator [URL] to assign a value to a System.Nullable object, if the result is Nothing (null), then 0 is assigned to the object. Example: 'Expected value is null (Nothing). Actual value assigned is 0. Dim x As System.Nullable(Of Integer) = If(1 = 0, 1, Nothing) If x is a nullable type, why is it being assigned the default integer type of 0. Shouldn't it receive a value of null?

View 2 Replies

Assigning Values To Label Or Text Box Or Anything Else / But DDL Or Radio Button

Jun 10, 2012

I am stuck on how to assign values on a label or text box.The issue is the following:I have two tables, one called A and the second one called B.Table A has tree fields: id, name, lastname...Table B has five fields: id, level1, level2, level3, level4..The idea is to save A.id into level1, level2, level3 and level4. A.id can be the same or not. I know how to assign and save the values on the DDBB using DDL, but when I want to show the values using labels, I get the first value always, this is becuase the select command is configures in that way. If I use ddl instead label, it works, but I do not want to show the value using ddl. I want to use label to show the values, and ddl to modify or add new data into the DDBB.[code] As you can see the level1 uses label, and level2 uses ddl, it was the only way to get the value for level2, otherwise if I use label on level2 it display level1 value instead.I would like to know if there is any way to assign different value using anything but ddl.

View 6 Replies

Reading XML Elements And Assigning Values As Strings / Ints

Jan 4, 2011

I'm trying to read the XML I generated. Here's my writing code:

'XML EXPORTATION BEGIN
'Create the file
Dim myXmlTextWriter As XmlTextWriter = New XmlTextWriter("C:Simple TimerProfiles" + timer_name + ".xml", System.Text.Encoding.UTF8)
'Choose Formatting
myXmlTextWriter.Formatting = System.Xml.Formatting.Indented
[Code] .....

View 9 Replies

Using Anonymous Types And Assigning Values To Controls Or Attributes

Jul 26, 2010

I'm trying to create a web site that users can log into and self serve their user information ie name, address etc. I've set up a SQL server DB with a couple of table holding the data and accessing those using Linq. I'm selecting specific data from my datacontext then trying to assign it to a label, ideally I want to assign the value to a class attribute so I can use the users details on multiple pages.

I've simplified the code (removing WHERE statement etc for the purposes of this question):

Using CurrentUserDataContext
As
New UserDataDataContext()

[Code].....

View 2 Replies

Invalid Cast Exception When Assigning A Parent To A Child Type?

Nov 2, 2009

I've created a class that inherits from Dictionary(Of TKey, TValue) called KeyCopyDictionary(Of TKey, TValue). I'm now trying to use a pre-existing function which returns a Dictionary(Of String, String) and assigning it to a variable of type KeyCopyDictionary(Of String, String). I'm getting an invalid cast exception. Is it not possible to assign a variable of a parent type to a variable of its child type? I've tried DirectCast and CType to no avail on this...

View 5 Replies

VS 2010 FYI - Factorial Using BigInteger?

Jun 23, 2010

Imports System.Numerics 'have to add reference Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

[Code]...

View 9 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved