Get The First 16 Bits Of A 32 Bit Hex Number?

Apr 8, 2009

how i can get the first 16 bits of a 32 bit hex number.

View 5 Replies


ADVERTISEMENT

Develop 32 Bits Applications If Have Win 7 64 Bits And Visual Studio 64 Bits?

Mar 14, 2011

I am a visual basic developer, I have windows 7 64 bits and Visual Studio 64 bits installed.CAN I DESIGN APPLICATIONS WITH THESE SETTINGS THAT CAN BE COMPATIBLE with 32 bits operating system(example in windows Xp 32 bits)?

View 2 Replies

Convert Decimal Number To Binary Number With Fixed Bits?

Oct 29, 2010

I want to convert numbers from 0 to 15 like that

[Code]...

Problem is that when we convert 2 to binary number it gives only 10 in binary, but i want to convert 2 to 4 bit binary number 0010.

View 1 Replies

Why Does A Negative SByte Number Have 16 Bits

Jul 11, 2011

I asked a question earlier about comparing numbers using the "And" comparison operator in If Statements and now I have been toying around with getting my head wrapped around bitwise operators. So I have written a very basic code that will allow me to see the conversion of any decimal number in binary format.[code]Notice here that I am using SByte as the paramerter - which should only contain 8 bits right? However, the message box that appears has 16 bits assigned to negative numbers.

View 1 Replies

Calculate The Lower 7 Bits And 7-13 Bits Of Two Hex Numbers?

Apr 8, 2011

I'm trying to figure out how to calculate the lower 7 bits and 7-13 bits of two hex numbers.

Here is some example c code, just need this in vb.net:

serialBytes[2] = 0x64 & 0x7F; // Second byte holds the lower 7 bits of target.
serialBytes[3] = (0x64 >> 7) & 0x7F; // Third data byte holds the bits 7-13 of target

The 0x7F is a constant so the only number that changes based off input is the 0x64.

View 2 Replies

Use SQLConfigDataSource To Add DSN To The 32 Bits ODBC On Windows 7 64 Bits?

Mar 28, 2012

how can I use SQLConfigDataSource to add DSN to the 32 bits ODBC on Windows 7 64 bits? I know it use C:WindowsSysWow64odbcad32.exe and on registry, HKLMSoftwareWow6432Node but the API do not allow me to configure it?how can I do ?

View 1 Replies

VS 2008 Applications In Windows 64 Bits And 32 Bits?

May 9, 2010

An application created with Visual Basic in Win7 64 bits will it still work fine in both WinXP 32 bits and Win7 32 bits ?

View 6 Replies

Big Is The Variable In Bits?

Mar 16, 2010

TimeGetTime gives the runtime of the program (I think) in millisec. How big is the variable in bits? I meen it must overflow at somepoint. How often does this happen?

View 1 Replies

BITS Transfer Via WMI?

Mar 7, 2010

I get an "invalid parameter" error back from wmi. just trying to download a file via BITS.

Try
Dim classInstance As New ManagementObject("rootMicrosoftBITS", "BitsClientJob", Nothing)
' Obtain [in] parameters for the method

[Code].....

View 1 Replies

Compiling In 64 Bits With A 32 Bit Dll?

Nov 4, 2010

I have a 3rd party dll, and I can't have it referenced while compiling for 64 bit. Is there a way around this? I'm guessing it is because the dll is a 32 bit one, but I'm not sure about that.

View 7 Replies

.net :: Storing 4 Bits From A Byte?

Aug 19, 2010

What is the best way to store 4 bits from a byte in VB.Net? Where best means:Most straightforward method of storage from a Byte type.The easiest to work with while performing bitwise operations.Straightforward conversion of the bits to other types.Storing them in a BitArray via it's constructor reverses the order of the bits. This means that attempting to get the value of the first bit will require looking for that value in the last entry in the BitArray.

View 3 Replies

Conversion To 64 Bits - PowerPacks?

Jul 10, 2010

I am moving Visual Basic 2010 Express from a 32 bits Windosw 7 machine to a 64 bits Windows 7 machine. My project contains a PowerPacks line. I have installed the PowerPacks (VisualBasicPowerPacks3Setup.exe) on the 64 bits system, and see them in the toolbox. When I try to open the project on the 64 bits machine. however, I get error messages:The designer cannor process the code at line 56:

Me. ShapeContainer1 = New Microsoft.VisualBasic.PowerPacks.ShapeContainer

The referenced component 'Microsoft.VisualBasic.PowerPacks.Vs' could not be found

I then thought I would just remove the (purely cosmetic) line on the 32 bits machine, but cannot discover how to do this (I would have though: rihgt click, and then delete, but this doesn't exist)

View 5 Replies

App Crash Under Windows Vista 64 Bits

Oct 14, 2009

I have an app (developed using VB 2008 and MS Access 03)

It runs fine under Windows XP, Windows 2003 and Windows Vista 32 bits....Butit crash under Windows Vista 64 bits.

The app not register any error and exception (internally). [code]...

View 16 Replies

C# - .NET Apps. Bits And Bytes - App Use As Little Memory As Possible ?

Apr 13, 2011

I am soon to develop a Win Forms app that will run on traders' machines and the main concern is to have the app use as little memory as possible. Ever single line of code needs to be written with this in mind. What are areas I need to take into account? Of course you will say to do any complex processing on e.g. the database and not the client but what else?

View 3 Replies

Convert Byte Array To Bits?

Jan 27, 2012

I'm trying to check whether a Win(RAR) archive is password protected.

0x74 0x24 0x94

How can I convert 0x24 0x94 to bits and check whether the file is encrypted with a password?

HEAD_TYPE Header type: 0x74
1 byte
HEAD_FLAGS Bit flags:

[code]....

View 2 Replies

Deployment :: Incorporating Bits Of The Framework

Apr 14, 2009

I have made a very small (only one form and no database operations) but nifty application and I want many people to be able to use it. My question is: As I only need a very small part of the dotnet framework, is there a way to let the compiler (or so) grab only the parts it needs for the .exe/.msi file, so that users don't have to install the entire 3.5 framework just to run my tiny little app?

View 7 Replies

Directly Set The Bits Of A Single Variable?

Mar 27, 2010

I'm a newbie in VB.NET, I am trying to directly set the bits of a single variable. For example - dim afloat as single afloat = &h0000000c afloat will then be set to to '12'. However, I wish to actually set the bits of afloat to &h0000000c, which will give a different value.

View 1 Replies

Posting Small Bits Of Data

Feb 23, 2010

Is there another way to easily make a POST request in .NET other than the WebRequest class? I have a very, VERY small piece of data I need to post: password=theword but WebRequest randomly, and I mean randomly, drops the data when posting to my server. I've tested it by using a chunk of code from my server that dumps the request to a console, and I can that the client is sometimes sending and sometimes not sending the POST data.The code that I'm using that uses WebRequest works in another project, when talking to IIS. The server being talked to (a minimal web server in another system) responds properly every time I POST data to it through Firefox. I've got a function in the same project that fires off a GET request, and that works. It just seems like my POST function isn't completing the transaction...something I've noticed in the past when asking WebRequest to handle small strings.[code]

View 2 Replies

Safe To Assume An Integer Will Always Be 32 Bits?

Jul 1, 2011

Is it safe to assume an int will always be 32 bits in C#? The linked question asks whether it is "safe to assume that an int will always be 32 bits in C#". The accepted answer states that "the C# specification rigidly defines that int is an alias for System.Int32 with exactly 32 bits".

My question is this: does this hold true for VB.Net's Integer? Is it safe to assume that Integer will always be an alias for int32?

View 2 Replies

Sendmessage Lvi_getitemtext Not Working On 64-BITS?

Apr 24, 2007

I am trying to get the position and text of all DeskTop icons, by sending a SendMessage to the desktop's listview, using LVI_GETITEMTEXT. Works oke on 32 bits, but on 64-bits I always get an empty string back. I also tried to do this using LVI_GET_ITEM< but the same result. No errors, but also no text string. (I do get the x,y position of the icon). What is wrong here?

[Code]...

View 7 Replies

Using Background Intelligent Transfer (BITS)?

Feb 11, 2012

I'm trying to use MS BITS (Background Intelligent Transfer service) to upload files from many computers to a server, but the only useful example I read was in StackOverFlow, and here it is:

[Code]...

but frankly, I don't know how to handle the whole thing about BITS jobs management, and I could not find a complete example demonstrate how the management will be so

View 1 Replies

VS 2008 Reading 32 Bits From A File?

Apr 9, 2010

Here's what I have that Doesn't work (I have one button, one OpenFileDialog, and a label named Status):

Public Sub ProcessBytes(ByVal Bytes() As Byte)
Status.Text = "Status: Processing . . ."
Try

[code].....

View 3 Replies

BITS Jobs Get Cancelled Without A Good Reason?

Feb 20, 2012

I created a Windows service to upload files from client to a shared folder on a server having a shared permission with everyone has a full control over it using Microsoft BITS service, this service runs with the local system account. The issue is that BITS jobs always get cancelled and I don't know why.I'm using this code

Try
Using BITSManager = New System.Net.BITS.Manager
For Each sItem In arrlDriversFilesUploadList[code]......

View 1 Replies

Change Permissions On A Registry Key And Other Bits From Within Program?

Apr 28, 2012

I am trying to write an app to automate several things that I have to do on a new computer once I have deployed an image, hoping someone could give me some pointers for them:-

1) changing computer description - wmi perhaps?

2) changing computer name - again wmi perhaps?

3) changing permissions on an existing registry key to full control

4) changing the "time to display list of operating systems" when booting from 30 secs to 3

5) turn off simple file sharing

6) and setting current user account so that password doesn't expire - at moment I do it from cmd prompt and do "wmic useraccount where "name='name'" set passwordexpires = false

7) change power plan settings so put the computer to sleep is "never" on both battery and mains

View 1 Replies

COMCTL32.OCX Error Under Windows 7 Home 64 Bits?

Jan 1, 2010

As Vista, comctl32.ocx is not accepted by Windows 7, I tried your workaround typing "regsvr32 -u comctl32.ocx" in a dos window, but another error is generated, specifying that the file was not found. But I verified, comctl32.ocx is really present under this name in system32 folder.

View 1 Replies

Convert A Byte To His 8 Bits And Vice Versa?

Oct 4, 2011

value = CInt(&HB)
Dim b As New BitArray(BitConverter.GetBytes(value))
Dim sb As New System.Text.StringBuilder

[code]....

View 1 Replies

Getting And Setting Single Bits In A Byte-array Using .net?

Jul 5, 2011

I have a byte array with 512 Elements and need to get and set a single bit of a byte in this array.The operation must not change any other bits, only the specified one.So if I have a byte like &B00110011 and would like to change the third bit to 1 it should be &B00110111.

Like this:Dim myarray(511) as byte myarray(3).2 = 1 ---> This would change the third bit (start counting at 0) of the third byte to 1 I know it should be easily possible using bit-masking but I don't have the time to try for days to get it working.

View 2 Replies

Gray Scale Display From A 8 Bits Buffer?

Oct 31, 2011

I use the last Bitmap constructor(width, height, stride, pixelFormat, buffer) with a buffer containing a 8 bits gray scale image. The picture box displays the image in false colors. I have no way to change the palette. How should I proceed ?

View 8 Replies

Maintaining 8 Bits When Converting Decimal To Binary?

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

Reading Serial Port On Win7 64-bits?

Oct 26, 2011

I have a strange problem. We are upgrading a software that works perfectly in a 32-bits environment.Software have to connect to a serial port (or a virtual serial port) and read data and do wathever it has to do with it. Program uses the IO.Ports.SerialPort object.

Now, under Win7 64-bits, is works well when using "real" serial devices, with a DB-9 connector. But using USB device, with a virtual serial port (provided by the manufacturer), it doesn't work at all. I receive nothing on the DataReceive event. But it works fine on a Win7 32-bits.

Strangely, it also works on the 64-bits PC using a program like realTerm. When connected to the virtual serial port, data are received and it's fine. But from our software, it don't. I don't get anything from the serial port.

View 9 Replies







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