Click here to Skip to main content
15,901,769 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: How to turn off the Windows Default Beep from the VB Pin
Dave Kreskowiak13-Oct-05 8:08
mveDave Kreskowiak13-Oct-05 8:08 
GeneralRe: How to turn off the Windows Default Beep from the VB Pin
icDavid13-Oct-05 8:16
icDavid13-Oct-05 8:16 
GeneralCode Review - comments welcomed Pin
watagal13-Oct-05 7:06
watagal13-Oct-05 7:06 
QuestionUsing XP Visual Styles in multiple non-mdi windows forms Pin
jenkinsdjj13-Oct-05 6:42
jenkinsdjj13-Oct-05 6:42 
AnswerRe: Using XP Visual Styles in multiple non-mdi windows forms Pin
Dave Kreskowiak13-Oct-05 7:11
mveDave Kreskowiak13-Oct-05 7:11 
GeneralRe: Using XP Visual Styles in multiple non-mdi windows forms Pin
jenkinsdjj14-Oct-05 19:12
jenkinsdjj14-Oct-05 19:12 
QuestionBitwise Enumeration? Pin
watagal13-Oct-05 4:55
watagal13-Oct-05 4:55 
AnswerRe: Bitwise Enumeration? Pin
Briga13-Oct-05 5:02
Briga13-Oct-05 5:02 
If I got it correctly you want to check a specific bit if is on or off.
Several ways.

Tha basic one is to OR the integer with the bit mask and check if the result is (or not) 0.

if (a OR 1) = 0 then bit0_notset else bit0_set
if (a OR 2) = 0 then bit1_notset else bit1_set
if (a OR 4) = 0 ...

Briga
GeneralRe: Bitwise Enumeration? Pin
watagal13-Oct-05 5:45
watagal13-Oct-05 5:45 
GeneralRe: Bitwise Enumeration? Pin
Briga15-Oct-05 3:47
Briga15-Oct-05 3:47 
GeneralRe: Bitwise Enumeration? Pin
Briga15-Oct-05 3:48
Briga15-Oct-05 3:48 
QuestionControlling sndrec32.exe Pin
jmachacek13-Oct-05 4:51
jmachacek13-Oct-05 4:51 
Questionprogrammatically changing the default windows cursor Pin
medicenpringles13-Oct-05 3:35
medicenpringles13-Oct-05 3:35 
AnswerRe: programmatically changing the default windows cursor Pin
jo0ls15-Oct-05 17:07
jo0ls15-Oct-05 17:07 
QuestionStarting Point. Pin
UniBond13-Oct-05 2:02
UniBond13-Oct-05 2:02 
AnswerRe: Starting Point. Pin
Tom John13-Oct-05 3:32
Tom John13-Oct-05 3:32 
QuestionComma Separated Numbers Pin
Greeky13-Oct-05 1:38
Greeky13-Oct-05 1:38 
AnswerRe: Comma Separated Numbers Pin
Tom John13-Oct-05 3:24
Tom John13-Oct-05 3:24 
QuestionCan subroutine in VB DLL accept array variable argument??? Pin
Anonymous13-Oct-05 0:58
Anonymous13-Oct-05 0:58 
Questiontrap-inputbox Pin
himanshu_softin12-Oct-05 23:44
himanshu_softin12-Oct-05 23:44 
Questionhow to report the bugs together with program status such as procedure name, call stack, code line and variable contents Pin
sanjaysanju12-Oct-05 23:18
sanjaysanju12-Oct-05 23:18 
AnswerRe: how to report the bugs together with program status such as procedure name, call stack, code line and variable contents Pin
Briga13-Oct-05 5:04
Briga13-Oct-05 5:04 
AnswerRe: how to report the bugs together with program status such as procedure name, call stack, code line and variable contents Pin
Qhalis13-Oct-05 8:06
Qhalis13-Oct-05 8:06 
QuestionMake size on Win UserControl dynamic Pin
Spaz8012-Oct-05 21:30
Spaz8012-Oct-05 21:30 
AnswerRe: Make size on Win UserControl dynamic Pin
Spaz8012-Oct-05 22:07
Spaz8012-Oct-05 22:07 

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.