Display Numbers From 1 To 17 As Hex, Decimal, Octal, And Binary
Apr 28, 2011
I have a hw assignment and it asks this: program Description: Write a program that has four sub procedures that will calculate and print out a table of numbers 0 to 17 in decimal, hex, octal, and binary notation. Statements Required: output, loop control, subprogram
Sample Output: (you will design your own output but 4 adjacent label boxes would be suitable) [Code] What I want to know is how do I display my numbers from 1 to 17 as either Hex, Decimal, Octal or Binary. Also how would I display that on my form?
View 9 Replies
ADVERTISEMENT
Jun 13, 2011
i m trying to write a program that displays in a textbox a table of the binary, octal, and hexadecimal equivalents of the decimal numbers in range 1-222.
View 3 Replies
Sep 30, 2011
alright iam having an issue with this my code is working however i cant figure out 1 oftwo things 1. how do i get the numbers to align under their proper title like binary numbers under the word binary and 2. what can i add to ensure that no one can type in the txtbox or anything else to make sure the code cant be broken ?? HELP PLZZZZ =] here is my code:
[Code]...
View 3 Replies
Jun 4, 2009
Im looking for the correct solution for the 4 radiobuttons for my scientifc calculator also to calculate within it.
i have something like this: but i dont think its good enough
Private Sub rbHex_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles rbHex.CheckedChanged
[Cdoe].....
View 13 Replies
Jan 26, 2011
I was going to try to write a hex/octal/binary/decimal converter in Visual Basic 2010 express and was wondering how I would start to do this.
View 2 Replies
Jun 7, 2009
I'd like to convert a string which contains a decimal number into string that contains the binary value, the octal and the hexadecimal value of that decimal number.Afterwards I also like to convert a string containing a binary, octal and hexd. number into a decimal string.Basically I'm looking for the functions:
dec2bin
dec2oct
dec2hex
bin2dec
oct2dec
hex2dec
I'd not prefer to rewrite a function, I'm sure the framework must have these functions already.
View 5 Replies
Apr 24, 2009
I have a decimal I want to be able to display as a binary or a hex. I keep seeing code that says Convert.ToString(decimal, 2) to display as binary string, but in 3.5 that is invalid.
Is there no built in formating for binary in 3.5?
View 8 Replies
Mar 7, 2010
I want to take more than one number separated by one space from txtDec textbox and display their binary form again separated by one space in txtBin textbox.
My code below ---
Private Sub DecToBin()
Dim i As Integer = txtDec.Text
Dim binary As String = Convert.ToString(i, 2).PadLeft(8, "0"c)
txtBin.Text = binary
End Sub
View 3 Replies
Jun 15, 2009
How Convert Decimal , Octal to Ascii ?
View 9 Replies
May 6, 2011
I want to display decimal numbers like 12.75 on my result .... but its keep showing like 12 or 13...
View 6 Replies
Apr 17, 2010
How would I go about rounding up decimal numbers to the nearest 2 decimal places? For example $7.0000032 would be $7.01 In theory, VB would make it $7.00 but if it is > $7.00, I want it to reflect that to the nearest penny... so $3.0000001 would be $3.01
View 5 Replies
Mar 19, 2009
I have an id called "AM01". I separated them by truncating the numbers out and increase it by 1 each time I want to add a new record. Therefore before I add the record, I would have to combine them back. I managed to truncate them and combine them back. However, the results turn out to be "AM2" instead of "AM02". So, is there a way where I could make the numbers as "02" instead of just "2"?
View 6 Replies
Apr 25, 2012
I need a code that will convert decimal to binary. My current code doesn't work and just crashes, any suggestions on what I should do
For i = 1 To 17
Me.lstDec.Items.Add(i)
[code].....
View 3 Replies
Dec 2, 2011
I need to convert a decimal value(Float Decimal value) to Binary(Float), How can I convert
EX,
Dim a as Double = 2.2
How can I convert this to Binary,
If we use Convert.toString(a,2), It'll return "10",
View 1 Replies
Feb 24, 2010
im doing this problem that has A.decimal B.hexidecimal C.binary and its a user pick, i also have to convert it to A.decimal B.hexidecimal C.binary. i dont know how to go around with this. this is the code i have
dim remainder as int16
n= txtfrom.text
do while n > 0
[code]....
this is only for the decimal to binary part though. it keeps not wanting to work.
View 1 Replies
Mar 6, 2010
I write a program to convert Decimal numbers to Binary numbers. It is working well. But I want to control the bits. i.e - We can write 31 as a) 11111 or b) 011111. When I run my program it displays 11111. I want to take input bit from a text box and display it like 0011111 or 011111 or what ever bit I input. How can I do that ?
Private Sub DecToBin()
Dim i As Integer = txtDec.Text
Dim binary As String = Convert.ToString(i, 2)
txtBin.Text = binary
End Sub
View 5 Replies
Apr 8, 2012
I was given a school project in which I have to make a program that converts numbers between binary,decimal,octal and hexadecimal systems. I have figured out how to make a function to convert binary number to decimal number [code]With this code,a user can enter a number that isn't binary,and program will calculate it. How can I make that program doesn't calculate those numbers or doesn't accept anything else than 0 or 1? This is needed for other cases like octal and hexadecimal system.
View 3 Replies
May 27, 2012
Decimal to binary code for program?[code]...
View 3 Replies
Jan 6, 2010
I have this code for a decimal to binary conversion in a calculator. It is working, but when I entered numbers with decimal, the conversion didn't work.[code...]
View 3 Replies
Feb 2, 2010
I'm doing a uni assignment regarding changing decimals to binary. However this assingment seems to be different to most of its kind from what I can see.Our assignment asks us to have a text box in which we'll enter the decimal, then we'll use a menuscript to and highlight the button 'dec-to-bin' which will then change the colour of 8 image boxes (located in a row above the text box) from black to red based on whether the binary is '1' (Red) or '0' (Black) for that bit.I've struggling to find a starting point as I need to ensure I link the text boxes to the outcome of the decimal and binary but not sure how.
View 2 Replies
Jun 21, 2010
I am converting decimal to binary by:
Code:
Dim i As Int64 = Convert.ToInt64("2")
TextBox1.Text = Convert.ToString(i, 2)
[code].....
View 10 Replies
Jun 5, 2011
What is a code how to convert dotted decimal to binary and vice versa. and small explanation
View 1 Replies
Sep 30, 2010
I realize the code listed below, whose serial port using string formatting which I inherited is complicated. It formats a Date obtained from a DatePicker control into a "yyyy-MM-dd HH:mm:ss" string format to send to a hardware device to be stored via Serial Port retrieves the date from the device and displays to user What I'm trying to do is port the code for use in a Socket rather than Serial Port which wants a Byte Arrray of the same Date Time string variable. I can't figure out how to encode and convert to Bytes the string value used in the Serial Port version. The evolution of the process is listed from top to bottom.
[Code]...
View 2 Replies
Dec 8, 2010
I'm looking to design a calculator that adds and subtracts binary numbers. I'm new to this program and stumbling on where to start?
View 6 Replies
Jan 10, 2012
How to let textbox1 only enter positive whole numbers and positive decimal numbers
View 4 Replies
Nov 5, 2010
I have some questions regarding vb.net bit shifting. I understand the << >> operators are bit shift operators in vb.net. I have a two byte hex value 0x3ACC, each bit in this two byte represents either a day, month or year. The bit structure of this hex value is yyyy yyym mmmd dddd. I am confused as to how I should bit shift these values so that year, month and day are in their own UINT16 values. Just want to know about shifting numbers and if I need to add any padding to the shift?
View 1 Replies
Jun 13, 2012
I've used .NET for a long time now but I have come across something I haven't had to do before and I'm struggling to work it out. What I need to do is work with binary numbers and convert them to decimals and vice versa but not necessarily using even numbers e.g. I would like to represent a number between 0 and 2047 which can be represented with 11 binary digits. Plus I want to represent a second number between 0 and 500000 which can be represented with 19 binary digits, and a third number, fourth etc. Then I want to string the whole binary results together and split it in to sections of lets say 5 bits each and convert those back to decimal.
[Code]...
View 6 Replies
Jul 15, 2011
I am creating a Time Sheet Calculator Application and just need to find out how to add numbers that are in hourly form. For example 2:39 (two hours and thirty nine minutes). I know how to create code for simple addition of decimal numbers, but does VB 2010 have some kind of way of adding hours and returning a number in hourly form.
View 1 Replies
Sep 24, 2009
How to allow two numbers after decimal points ?
View 1 Replies
Jun 8, 2011
I'm trying to convert random numbers between 0.1 and 1. Here is what I have done.
[Code]...
View 4 Replies