Click here to Skip to main content
15,907,687 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Entity Framework : Why this extension is not usable ? Pin
Dave Kreskowiak12-Apr-15 18:36
mveDave Kreskowiak12-Apr-15 18:36 
GeneralRe: Entity Framework : Why this extension is not usable ? Pin
dilkonika12-Apr-15 18:39
dilkonika12-Apr-15 18:39 
GeneralRe: Entity Framework : Why this extension is not usable ? Pin
Dave Kreskowiak13-Apr-15 2:57
mveDave Kreskowiak13-Apr-15 2:57 
GeneralRe: Entity Framework : Why this extension is not usable ? Pin
dilkonika13-Apr-15 5:08
dilkonika13-Apr-15 5:08 
GeneralRe: Entity Framework : Why this extension is not usable ? Pin
Dave Kreskowiak13-Apr-15 6:06
mveDave Kreskowiak13-Apr-15 6:06 
GeneralRe: Entity Framework : Why this extension is not usable ? Pin
Sascha Lefèvre13-Apr-15 6:18
professionalSascha Lefèvre13-Apr-15 6:18 
GeneralRe: Entity Framework : Why this extension is not usable ? Pin
dilkonika13-Apr-15 6:26
dilkonika13-Apr-15 6:26 
QuestionChange URL current in Google Chrome Pin
James Carlo Valdeavilla10-Apr-15 16:26
James Carlo Valdeavilla10-Apr-15 16:26 
Hello I've managed to get the current tab for Google Chrome however how do I change that URL and made a navigation? I've done on IE but no luck for Opera and Firefox.

Example: Current urL: google.com will be yahoo.com upon active tab taken. Do I need to play something with the process of chrome? Thank you for any solution to be provide.
Dim procsChrome As Process() = Process.GetProcessesByName("chrome")
02
    For Each chrome As Process In procsChrome
03

04
        If chrome.MainWindowHandle = IntPtr.Zero Then Continue For
05
        Dim elm As AutomationElement =    AutomationElement.FromHandle(chrome.MainWindowHandle)
06
        Dim elmUrlBar As AutomationElement = elm.FindFirst(TreeScope.Descendants, New PropertyCondition(AutomationElement.NameProperty, "Address and search bar"))
07
        If elmUrlBar IsNot Nothing Then
08
            Dim patterns As AutomationPattern() = elmUrlBar.GetSupportedPatterns()
09
            If patterns.Length > 0 Then
10
                Dim val As ValuePattern = DirectCast(elmUrlBar.GetCurrentPattern(patterns(0)), ValuePattern)
11
                If Not elmUrlBar.GetCurrentPropertyValue(AutomationElement.HasKeyboardFocusProperty) Then
12
                    MsgBox(LCase(val.Current.Value).Trim)
13

14

15

16
                End If
17
                Exit For
18
            End If
19
        End If
20
    Next

QuestionCompare the structure for 2 sql server databases Pin
dilkonika9-Apr-15 17:32
dilkonika9-Apr-15 17:32 
AnswerRe: Compare the structure for 2 sql server databases Pin
Wendelius9-Apr-15 18:08
mentorWendelius9-Apr-15 18:08 
GeneralRe: Compare the structure for 2 sql server databases Pin
dilkonika9-Apr-15 18:45
dilkonika9-Apr-15 18:45 
GeneralRe: Compare the structure for 2 sql server databases Pin
Tim Carmichael10-Apr-15 0:09
Tim Carmichael10-Apr-15 0:09 
GeneralRe: Compare the structure for 2 sql server databases Pin
Sascha Lefèvre10-Apr-15 1:22
professionalSascha Lefèvre10-Apr-15 1:22 
GeneralRe: Compare the structure for 2 sql server databases Pin
Tim Carmichael10-Apr-15 1:46
Tim Carmichael10-Apr-15 1:46 
GeneralRe: Compare the structure for 2 sql server databases Pin
Sascha Lefèvre10-Apr-15 1:47
professionalSascha Lefèvre10-Apr-15 1:47 
GeneralRe: Compare the structure for 2 sql server databases Pin
Eddy Vluggen10-Apr-15 2:38
professionalEddy Vluggen10-Apr-15 2:38 
GeneralRe: Compare the structure for 2 sql server databases Pin
Sascha Lefèvre10-Apr-15 2:51
professionalSascha Lefèvre10-Apr-15 2:51 
GeneralRe: Compare the structure for 2 sql server databases Pin
Eddy Vluggen10-Apr-15 3:00
professionalEddy Vluggen10-Apr-15 3:00 
GeneralRe: Compare the structure for 2 sql server databases Pin
Sascha Lefèvre10-Apr-15 3:11
professionalSascha Lefèvre10-Apr-15 3:11 
GeneralRe: Compare the structure for 2 sql server databases Pin
Eddy Vluggen10-Apr-15 3:17
professionalEddy Vluggen10-Apr-15 3:17 
GeneralRe: Compare the structure for 2 sql server databases Pin
Sascha Lefèvre10-Apr-15 3:20
professionalSascha Lefèvre10-Apr-15 3:20 
GeneralRe: Compare the structure for 2 sql server databases Pin
Wendelius13-Apr-15 17:49
mentorWendelius13-Apr-15 17:49 
AnswerRe: Compare the structure for 2 sql server databases Pin
Sascha Lefèvre10-Apr-15 1:42
professionalSascha Lefèvre10-Apr-15 1:42 
GeneralRe: Compare the structure for 2 sql server databases Pin
dilkonika10-Apr-15 6:19
dilkonika10-Apr-15 6:19 
GeneralRe: Compare the structure for 2 sql server databases Pin
Richard MacCutchan10-Apr-15 6:55
mveRichard MacCutchan10-Apr-15 6:55 

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.