Click here to Skip to main content
15,916,463 members
Home / Discussions / C#
   

C#

 
QuestionHow to do this in C#? Pin
momer27-Oct-04 1:44
momer27-Oct-04 1:44 
AnswerRe: How to do this in C#? Pin
sreejith ss nair27-Oct-04 2:35
sreejith ss nair27-Oct-04 2:35 
GeneralRe: How to do this in C#? Pin
momer27-Oct-04 2:52
momer27-Oct-04 2:52 
Generalaccessing email account settings of outlook through c# Pin
chintancs27-Oct-04 1:32
chintancs27-Oct-04 1:32 
GeneralRe: accessing email account settings of outlook through c# Pin
sreejith ss nair27-Oct-04 4:02
sreejith ss nair27-Oct-04 4:02 
GeneralRe: accessing email account settings of outlook through c# Pin
chintancs28-Oct-04 0:15
chintancs28-Oct-04 0:15 
GeneralConverting ulong into an array of booleans Pin
NiteShade27-Oct-04 1:13
NiteShade27-Oct-04 1:13 
GeneralRe: Converting ulong into an array of booleans Pin
Mike Dimmick27-Oct-04 1:58
Mike Dimmick27-Oct-04 1:58 
A combination of masking and shifting will work. For example:
ulong ulValue = 0xF345612347892019UL;
ulong ulMask;
int iBitValue;
 
for ( int iBit = 0; iBit < 64; ++iBit )
{
   ulMask = 1UL << iBit;
   iBitValue = (int)((ulValue & ulMask) >> iBit);
 
   System.Console.WriteLine( "Bit {0}: {1}", iBit, iBitValue );
}



Stability. What an interesting concept. -- Chris Maunder
GeneralAdd icons in chat windows Pin
verma-rahul27-Oct-04 0:54
verma-rahul27-Oct-04 0:54 
GeneralDocked Controls wont use (e.g. draw on) new area after resize Pin
Sebastian Schneider27-Oct-04 0:47
Sebastian Schneider27-Oct-04 0:47 
GeneralRe: Docked Controls wont use (e.g. draw on) new area after resize Pin
Anonymous27-Oct-04 2:26
Anonymous27-Oct-04 2:26 
GeneralRe: Docked Controls wont use (e.g. draw on) new area after resize Pin
sreejith ss nair27-Oct-04 2:28
sreejith ss nair27-Oct-04 2:28 
GeneralRe: Docked Controls wont use (e.g. draw on) new area after resize Pin
Sebastian Schneider27-Oct-04 3:39
Sebastian Schneider27-Oct-04 3:39 
GeneralRe: textbox with auto &quot;scrolling&quot; Pin
Member 146896026-Oct-04 23:44
Member 146896026-Oct-04 23:44 
GeneralRe: textbox with auto &quot;scrolling&quot; Pin
Member 146896026-Oct-04 23:53
Member 146896026-Oct-04 23:53 
GeneralRe: textbox with auto &quot;scrolling&quot; Pin
Stefan Troschuetz26-Oct-04 23:57
Stefan Troschuetz26-Oct-04 23:57 
GeneralRe: textbox with auto &quot;scrolling&quot; Pin
Stefan Troschuetz26-Oct-04 23:53
Stefan Troschuetz26-Oct-04 23:53 
GeneralRe: textbox with auto &quot;scrolling&quot; Pin
Dave Kreskowiak27-Oct-04 3:36
mveDave Kreskowiak27-Oct-04 3:36 
GeneralC++ to C# help quick please Pin
hagay_ar26-Oct-04 23:21
hagay_ar26-Oct-04 23:21 
GeneralRe: C++ to C# help quick please Pin
Mike Dimmick27-Oct-04 2:02
Mike Dimmick27-Oct-04 2:02 
Generaltextbox with auto "scrolling" Pin
26-Oct-04 22:40
suss26-Oct-04 22:40 
GeneralRe: textbox with auto &quot;scrolling&quot; Pin
Stefan Troschuetz26-Oct-04 22:53
Stefan Troschuetz26-Oct-04 22:53 
GeneralRe: textbox with auto &quot;scrolling&quot; Pin
Member 146896026-Oct-04 23:33
Member 146896026-Oct-04 23:33 
GeneralRe: textbox with auto &quot;scrolling&quot; Pin
sreejith ss nair26-Oct-04 23:06
sreejith ss nair26-Oct-04 23:06 
GeneralRe: textbox with auto &quot;scrolling&quot; Pin
Member 146896026-Oct-04 23:34
Member 146896026-Oct-04 23:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.