Cast Integer Values To An Array Of Enum Values?
Jan 2, 2009cast integer values to an array of enum values?
View 2 Repliescast integer values to an array of enum values?
View 2 RepliesI'm struggling with enums
Private Enum sizeMode
AutoSize = 2
CenterImage = 3
Normal = 0
[CODE]...
Here i'm trying to cast a string to a pictureboxsizemode: PictureBox1.SizeMode = DirectCast(DirectCast(fields(4), sizeMode), PictureBoxSizeMode)
I have the following code which obtains the compass direction from a degree value. I'm new to VB.Net and was wondering what is the best way to store the values, in an Enum or an Array?
[Code]...
A c# class's single dimension byte array contains socket level instrument sensor data as per:
public static byte[] frameData
How do I simply display the integer values of a 10x13 integer array
View 1 RepliesRE - FilesystemRights Enum
This Code:
Dim FSRS As Type = GetType(FileSystemRights)
For Each fsr As String In [Enum].GetNames(FSRS)
TextBox1.AppendText(fsr.ToString & vbCrLf)
Next
In the following code I have two class scoped variables intCompanyID and intEmployeeID. When I set them to a value in btnFetch_Click then try to read them later in btnSubmit_Click they are set to zero.
Option Explicit On
Imports MySql.Data.MySqlClient
Imports System.Data
[code]....
I am creating a maths programs that draws graphs for the user. so far i have placed 22 values into an array and now i need to import them to excel, draw the graph and import the graph back into the program to display them.[code]...
View 4 RepliesI am using Visual Basic express edition 2008.I am trying to know if a value in a single dimensional array is repeated in the array. If yes, then multiply one of them by 100. For example:
MyArray (14) = 12, 15, 18, 15, 18, 11, 15, 18, 16, 14, 18, 8, 12, 17, 10
In the above example:
MyArray (1) = MyArray (3) = MyArray (6) = 15
MyArray (2) = MyArray (4) = MyArray (7) = MyArray (10) = 18
MyArray (0) = MyArray (12) = 12
[Code]...
I have an array of 10 x 10 as shown below. In addition to -1, it consists of numbers from 1 to 9.[code]...
View 6 RepliesIn this post Jon Skeet pointed out that the following code should be changed to conform with the .NET naming conventions. Doing that would also decrease the amount of noise in the code.
[Code]...
I must admit, I was pretty much like a sheep and was following what others have done before me. I thought the prefix did not look right and then to have it twice did not make sense either. After looking at a couple of .NET Framework examples, it looks like this would be closer to the standard.
[Code]...
I don't know how to convert the following line from VB to C#:
Dim values As New List(Of T)(System.Enum.GetValues(GetType(T)))
My version doesn't work:
List<T> values = new List<T>(System.Enum.GetValues(typeof(T)));
The best overloaded method match for 'System.Collections.Generic.List.List(System.Collections.Generic.IEnumerable)'
has some invalid arguments
The constructor-parameter doesn't take it that way - what cast (or else) am I missing?
For clarification: It is wrapped up within the following generic method
public static void BindToEnum<T>()
{
List<T> values = new List<T>(System.Enum.GetValues(typeof(T)));
//...
}
In VS2008, you could write, for instance,
dim enumValue as MyEnum
enumValue =
And then as soon as you typed the =, you'd get a list of possible values of MyEnum. With VS2010, you have to type
dim enumValue as MyEnum
enumValue = MyEnum.
Before getting the list on typing the final. This makes for a lot more typing and seems to be a retrograde step ... is there an option I'm missing? (I have 'Auto List members checked in the Text Editor options under 'Basic').
I have a enum,
[Code]...
I need put the "text" value of all the above Enum values in to a combo box, how do i do it?
Neat way of running across all the values of Enum?
i was looking for a way without have to use methods residing in [Enum]
I've added an attribute for a user readable display name to my Enum values.However my code to convert from the user readable display name back to the Enum (function ToEnum) seems very convoluted.I am wondering if I am missing a better way of doing this (I am using Visual Studio 2010 with SP1.) [code]
View 10 RepliesI'm trying to set an Integer value from my.settings.The values comes frpm a listbox, and then inserted to settings (set to specialized.StringCollection)The problem is when i'm trying to get the values and apply them to my function.Error code: Conversion from string "65 & 71" to type 'Integer' is not valid.To me it looks right, but maybe i'm missing something.
Code: Dim test2 As Integer Dim test As System.Windows.Forms.Keysm trigglist As New StringBuilderor Each item As String In
[code].....
I have a program that reads in lottery results from the past 6 months (from the national lottery site) from a text file
31-Mar-2010,29,18,38,44,14,43,13,3,GUINEVERE
27-Mar-2010,32,38,11,15,42,6,24,2,GUINEVERE
24-Mar-2010,3,49,28,5,23,42,41,4,GUINEVERE
and stores it in an array (n-1,6) where n is the number of lottery lines, so the array looks like
0 1 2 3 4 5 6
0 29 18 38 44 14 43 13
1 32 38 11 15 42 6 24
then, in a 1D array I store the player's numbers, simply as
0 23
1 16
2 19
[code]....
I want it to take each number from the player's number array individually and compare them to each row individually in the lotto results array i.e. the first six cells in each row in the results array will be compared with each user number to find any matches, if a value matches then a count is incremented. if the count is greater than 2 but i'm getting no where with it :( i've been trying to use the For To loops but keep getting index out of range, or else nothing is happening at all!
I'm working on a simple BlackJack (player vs dealer) system, that I plan on making gradually more advanced. However, while everything works brilliant, I'm yet to find a logical solution to declaring an Ace as both 1 and 11.So my question is, how do I pull this off. Below is the "New Game" logic (code) so it should give you an idea of what I'm working with (note how player scores are added together, I'm sure it's easy enough to understand...).I'd like lblPlayersum to still be a usable integer, though I'll rework everything if noone has a logical solution.Just quickly note that the "Cards" array is purely used to coordinate images."CardsVal" coordinates that values within the deck. Arrays 48, 49, 50 and 51 are the aces. (Currently defaulted to 11).[code]
View 1 RepliesI have a question, that is: What is the easiest way to get Integer values from a file.The file is structured like this: (Without the text)10...How many values are in the file 1 2 3 4 5 6 7 8 9 10..The values...I know how to do it, the hard way, but I need an easier way, to teach a friend the basics of Vb.net.
View 1 RepliesI want get integer quotient when I divide two values. Per example
X=3
Y=2
Q=X/Y = 1.5 // I want get 1 from results
X=7
Y=2
Q=X/Y=3.5 //I want get only 3 from results
My problem is that I have two forms, Form1 and Form2 ...on Form1 there is a TextBox called txtTotal (this contains the calculation of Ticket Prices, thus it's a numeric value) and on Form2 there is a TextBox called txtTotal2. All I want to do is get the same number that appears in txtTotal on Form1 to appear in txtTotal2 on Form2 .However whenever I try some of the help tips online such as using a declaring txtTotal as global or friend it dosn't work, and any other code iv tried attempts pass the textbox value as String which brings an error.
View 2 RepliesIt's good to be back in this forum again hoping someone could help me solve my problem again xD My goal is to import .txt to db.
This is my code
[code]...
Some of the records are inserted but when the code read the part where there is an empty/null value in the column where they are assigned as "decimal" the error message "Error converting data type nvarchar to numeric." pops out.
I am trying to reset all integer values to "0" with a reset button.I try not to use hardcoding by simply set them one by one. So my idea was checking all the variable's type and set them all to "0".
I tried to use this methode, from someone in this forum (sorry, I forgot the name but this is very helpful...) For Each ctrl As Control In Me.GroupBox4.Controls 'Check and see if this control is a TextBox
If Object.ReferenceEquals(ctrl.GetType(), GetType(Label)) Then 'Check and make sure this s the "TextBoxToExclude"
'CType(ctrl, CheckBox).Checked = False
CType(ctrl, Label).BackColor = InactiveColor
End If
Next
But when I tried to find the code, I couldn't get it.So, if anyone knows how to do this,
I am working with a future value application and I am trying to display the calculated future values in a listbox. For instance, I input the monthly investment, the yearly interest rate and the number of years into textboxes and I want the application to list out the future value for each year until the number of years in which I entered is reached. I cannot figure out how to get the code to display the value after each year. I am trying to use the "mod" operator to display the value each time the 12th month comes around.[code]...
View 7 Repliesi am having trouble displaying the values i get from an IList(Of T) and displaying that in a listbox found on another form. I have used a for loop to get the values from the IList, then i can display that in a msgbox. for eg:
Dim j As Integer
Dim path As String = ""
For j = 0 To best_tour.Count - 1
[code]....
best_tour is ot type IList() path keeps the name found in the list everything works fine inside the loop..but it does not populate the lst_output listbox.I have tried using files, but in vain. It just get the values from the list but does not display that on the listbox.If that can help, then listbox is found in a panel on the form2, but taking it out of the panel does not affect anything.
I want to split a string that taking both string and integer values like (Cmp_12).
View 4 RepliesWhy is it that in parts of the .Net architecture that ARGB colours are expected be as type Integer when ARGB is outside the range of Integer? (ARGB requires 32 bits of precission, but Int has 31 bits of precission).Now of course I could just do a conversion, but what freaking conversion to use??? (I'm not affluent with all the VB global methods and the sort)
I've tried things like:
Code:
Dim value As Integer = &H80000014
Dim uvalue As UInteger = CType(value, value)
''overflow others include Convert.ToUInt32 -> value was either to large or to small and a few others all offering up nonsense about overflows, when all I freakin' want is a colour that Microsoft's own engineers have done stupid things like expect Integer values in places where UInteger should be, or vice versa. How about some consistency...
Code:
Dim value As UInteger = &H80000014 ''<- not represntable as a Uinteger???
Dim uvalue As UInteger = 2147483668 ''<- same value in decimal, same exact value! and it works this says it's not representable as a UInteger?
how can i do this ? i new how to but i forgot and i need it right now
View 2 RepliesI accept both C# and VB.NET suggestion, even though I'm writing an app in VB.NET I have two lists of intergers
List1 {1,2,3,5}
List2 {2,4,6,7}
I want to have new List3 {4,6,7} which is composed of elements of List2 that are not in List1. I know I can write a nice For Each loop for this but I want it done in LINQ I've been looking for such methods at Enumerable Methods, but I can't find it.