Advertisement

1 - 10 of 113 containing alltags:("bitwise") (0 seconds)
I want to use bitwise operator--complement on an integer array. Here is my code: #include <stdio.h> int number[100]; unsigned char temp[100],complement[100]; main() {   number[1]=23; /*t...
Zones: CDate Answered: 03/26/2000 Grade: A Views: 0
G'Day All. How do i do bitwise shifting in ASP? Please don't say use javascript, becuase i do not want to. Examples. iNumber = 1 << 0 [ie. 1] iNumber = 1 << 1 [ie. 2] iNumber = 1 << 2...
Zones: ASPDate Answered: 03/04/2001 Grade: A Views: 0
In Access97 and Access2000, the "AND" operator will work logically but not bitwise on numeric types if used in the data source property of the field on a report or in an eval() function either in a...
Zones: MS AccessDate Answered: 05/07/2002 Grade: A Views: 0
I know that you can do a bitwise shift in C using >> or << \. Is there a way to do it in VB? Thanks
Zones: ProgrammingDate Answered: 02/16/2003 Grade: A Views: 0
I need to do a bitwise AND in Visual Basic.  The equivilent to what I need is the '&' symbol in C++ and Javascript. For example, 15 in bitwise is 1111, and 9 in bitwise is 1001.  If I bitwise th...
Zones: Visual BasicDate Answered: 07/21/2003 Grade: A Views: 0
problem statement :                                  The problem is regarding the storage of time.My application has to convert the time in milliseconds format (that is given to me in 6 bytes) t...
Zones: ProgrammingDate Answered: 04/21/2004 Grade: A Views: 0
Hi Guys, This question actually concerns VBscript under ASP, but I would classify it more as a programming question in general. I like to define the rights of my users as a binary string. For exa...
Zones: Visual BasicDate Answered: 04/02/2004 Grade: B Views: 0
How to do bitwise operation in Access? No problems with MSSQL: http://databasejournal.com/features/mssql/article.php/3359321 but using "&" or "AND" operators with Access dont seem to do the ...
Zones: MS AccessDate Answered: 09/28/2004 Grade: B Views: 0
Hi experts, here is my question for the day: for simplicity's sake lets say i have an enumeration like this Twenties = 1 Thirties = 2 Forties = 4 Fifties = 8 and if i wanted something t...
Zones: MS Visual BasicDate Answered: 10/07/2005 Grade: A Views: 0
Hi, I need to  do the following using the bitwise exclusive OR 1.098987 ^ (1/3). My problem is that 1.098987 needs to be an int. My field is a decimal(18,6).  Does anyone know a way around this...
Zones: MS SQL ServerDate Answered: 09/29/2005 Grade: A Views: 0