Click here to Skip to main content
15,896,063 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Its Me thecodeprojectsux Guy with a better name!! Pin
Devraj Raut6-Jan-06 19:57
Devraj Raut6-Jan-06 19:57 
GeneralRe: Its Me thecodeprojectsux Guy with a better name!! Pin
Colin Angus Mackay7-Jan-06 2:28
Colin Angus Mackay7-Jan-06 2:28 
GeneralRe: Its Me thecodeprojectsux Guy with a better name!! Pin
Devraj Raut7-Jan-06 6:57
Devraj Raut7-Jan-06 6:57 
GeneralRe: Its Me thecodeprojectsux Guy with a better name!! Pin
Dave Kreskowiak7-Jan-06 5:34
mveDave Kreskowiak7-Jan-06 5:34 
Questionpublic variables Pin
xinliu_986-Jan-06 9:00
xinliu_986-Jan-06 9:00 
QuestionHow to find row in datagrid using string? Pin
Erwin_Br6-Jan-06 0:33
Erwin_Br6-Jan-06 0:33 
QuestionStopping Popup Windows in AxWebBrowser Pin
Sufyan_shani6-Jan-06 0:20
Sufyan_shani6-Jan-06 0:20 
AnswerRe: Stopping Popup Windows in AxWebBrowser Pin
tommy_tanaka16-Jan-06 6:02
tommy_tanaka16-Jan-06 6:02 
You have to add a handler to your Browser:

AddHandler yourAxBrowser.NewWindow3, AddressOf reactPopUp

Private Sub reactPopUp(ByVal sender As Object, ByVal e As AxSHDocVw.DWebBrowserEvents2_NewWindow3Event)
Try
e.cancel = True
If Not e.bstrUrl = "about:blank" Then
yourAxBrowser.Navigate(e.bstrUrl)
End If
Catch
MessageBox.Show("Exception in reactPopUp-Function")
End Try
End Sub

greetings


tom
QuestionConnecting a Secured Database Pin
Deepaish5-Jan-06 23:41
Deepaish5-Jan-06 23:41 
Questionreports Pin
Harikrk5-Jan-06 23:38
Harikrk5-Jan-06 23:38 
AnswerRe: reports Pin
Deepaish5-Jan-06 23:53
Deepaish5-Jan-06 23:53 
Questioncatch events from the popping up message window in MSN messenger Pin
buzzbusy5-Jan-06 22:41
buzzbusy5-Jan-06 22:41 
QuestionVB 6.0:- At runtime Image loading Pin
bhushand5-Jan-06 22:37
bhushand5-Jan-06 22:37 
QuestionMS Access Database Connectivity Using VB.NET Pin
mayhem_rules5-Jan-06 19:50
mayhem_rules5-Jan-06 19:50 
AnswerRe: MS Access Database Connectivity Using VB.NET Pin
sonj5-Jan-06 20:02
sonj5-Jan-06 20:02 
GeneralRe: MS Access Database Connectivity Using VB.NET Pin
mayhem_rules5-Jan-06 20:24
mayhem_rules5-Jan-06 20:24 
AnswerRe: MS Access Database Connectivity Using VB.NET Pin
jonathan156-Jan-06 1:17
jonathan156-Jan-06 1:17 
GeneralRe: MS Access Database Connectivity Using VB.NET Pin
mayhem_rules6-Jan-06 2:29
mayhem_rules6-Jan-06 2:29 
GeneralRe: MS Access Database Connectivity Using VB.NET Pin
jonathan156-Jan-06 2:33
jonathan156-Jan-06 2:33 
QuestionHow to change dataset connection string at run time Pin
shiroamachi5-Jan-06 19:31
shiroamachi5-Jan-06 19:31 
AnswerRe: How to change dataset connection string at run time Pin
Colin Angus Mackay5-Jan-06 21:07
Colin Angus Mackay5-Jan-06 21:07 
GeneralRe: How to change dataset connection string at run time Pin
shiroamachi8-Jan-06 14:59
shiroamachi8-Jan-06 14:59 
GeneralRe: How to change dataset connection string at run time Pin
Colin Angus Mackay8-Jan-06 15:07
Colin Angus Mackay8-Jan-06 15:07 
GeneralRe: How to change dataset connection string at run time Pin
shiroamachi8-Jan-06 15:20
shiroamachi8-Jan-06 15:20 
GeneralRe: How to change dataset connection string at run time Pin
Colin Angus Mackay8-Jan-06 20:28
Colin Angus Mackay8-Jan-06 20:28 

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.