Click here to Skip to main content
15,895,965 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionSearching a Dataset in VB.Net Pin
mayhem_rules14-Feb-06 17:41
mayhem_rules14-Feb-06 17:41 
AnswerRe: Searching a Dataset in VB.Net Pin
alien viper14-Feb-06 17:55
alien viper14-Feb-06 17:55 
GeneralRe: Searching a Dataset in VB.Net Pin
mayhem_rules14-Feb-06 18:10
mayhem_rules14-Feb-06 18:10 
GeneralRe: Searching a Dataset in VB.Net Pin
alien viper14-Feb-06 20:28
alien viper14-Feb-06 20:28 
GeneralRe: Searching a Dataset in VB.Net Pin
shiroamachi14-Feb-06 21:44
shiroamachi14-Feb-06 21:44 
GeneralRe: Searching a Dataset in VB.Net Pin
mayhem_rules14-Feb-06 22:06
mayhem_rules14-Feb-06 22:06 
QuestionFax Event is not fired in VB.NET for incoming fax Pin
dashprasannajit14-Feb-06 17:37
dashprasannajit14-Feb-06 17:37 
AnswerRe: Fax Event is not fired in VB.NET for incoming fax Pin
Dave Kreskowiak15-Feb-06 4:46
mveDave Kreskowiak15-Feb-06 4:46 
At a glance, I can see one mistake:
objFaxServer.ListenToServerEvents( _
    FAXCOMEXLib.FAX_SERVER_EVENTS_TYPE_ENUM.fsetINCOMING_CALL + _
    FAXCOMEXLib.FAX_SERVER_EVENTS_TYPE_ENUM.fsetIN_QUEUE)

Should be:
objFaxServer.ListenToServerEvents( _
    FAXCOMEXLib.FAX_SERVER_EVENTS_TYPE_ENUM.fsetINCOMING_CALL Or _
    FAXCOMEXLib.FAX_SERVER_EVENTS_TYPE_ENUM.fsetIN_QUEUE)

Adding values together will cause bits to be set/reset where they shouldn't because of mathmatical carry's.


RageInTheMachine9532
"...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome


-- modified at 10:46 Wednesday 15th February, 2006
QuestionHow to draw a picture on the titlebar? Pin
Chatura Dilan14-Feb-06 16:39
Chatura Dilan14-Feb-06 16:39 
AnswerRe: How to draw a picture on the titlebar? Pin
vivek132315-Feb-06 0:14
vivek132315-Feb-06 0:14 
GeneralRe: How to draw a picture on the titlebar? Pin
Chatura Dilan15-Feb-06 13:39
Chatura Dilan15-Feb-06 13:39 
Questiondata synchronization between PXE server Pin
andylimjp14-Feb-06 15:41
andylimjp14-Feb-06 15:41 
AnswerRe: data synchronization between PXE server Pin
Dave Kreskowiak15-Feb-06 4:40
mveDave Kreskowiak15-Feb-06 4:40 
GeneralRe: data synchronization between PXE server Pin
andylimjp15-Feb-06 5:30
andylimjp15-Feb-06 5:30 
GeneralRe: data synchronization between PXE server Pin
Dave Kreskowiak15-Feb-06 8:14
mveDave Kreskowiak15-Feb-06 8:14 
QuestionThird Party Control Pin
welbert14-Feb-06 15:15
welbert14-Feb-06 15:15 
AnswerRe: Third Party Control Pin
Dave Kreskowiak15-Feb-06 4:30
mveDave Kreskowiak15-Feb-06 4:30 
AnswerRe: Third Party Control Pin
Dave Kreskowiak16-Feb-06 1:14
mveDave Kreskowiak16-Feb-06 1:14 
QuestionDate format..... Pin
welbert14-Feb-06 15:11
welbert14-Feb-06 15:11 
AnswerRe: Date format..... Pin
Joshua Quick14-Feb-06 17:27
Joshua Quick14-Feb-06 17:27 
AnswerRe: Date format..... Pin
alien viper14-Feb-06 17:47
alien viper14-Feb-06 17:47 
Questioncustom web server control with client and server side validation Pin
JohnyCoder14-Feb-06 13:49
JohnyCoder14-Feb-06 13:49 
QuestionVB.Net alternative to VBA SubForm Pin
xdavidx14-Feb-06 11:02
xdavidx14-Feb-06 11:02 
AnswerRe: VB.Net alternative to VBA SubForm Pin
eatwork31-Mar-06 8:26
eatwork31-Mar-06 8:26 
QuestionRe: VB.Net alternative to VBA SubForm Pin
pa2814019-Jul-07 4:21
pa2814019-Jul-07 4:21 

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.