Results 1 to 5 of 5

Thread: [RESOLVED] How to send a url to firefox tab and load the url ?

  1. #1

    Thread Starter
    Frenzied Member
    Join Date
    Apr 2005
    Posts
    1,907

    Resolved [RESOLVED] How to send a url to firefox tab and load the url ?

    Hi all . I wonder how i can send a urls to firefox tabs(assuming firefox is open already with one tab only)? What i want to do send a list of links to diffrent firefox tabs and load them all. could any one show me how this can be done?Thanks
    Last edited by tony007; Jan 27th, 2011 at 01:17 AM.

  2. #2
    PowerPoster Nightwalker83's Avatar
    Join Date
    Dec 2001
    Location
    Adelaide, Australia
    Posts
    13,344

    Re: How to send a url to firefox tab and load the url ?

    You could try adding a reference to the files and then reference the code in your project. Which version of Firefox are you using?
    when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
    If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
    https://get.cryptobrowser.site/30/4111672

  3. #3

    Thread Starter
    Frenzied Member
    Join Date
    Apr 2005
    Posts
    1,907

    Re: How to send a url to firefox tab and load the url ?

    Quote Originally Posted by Nightwalker83 View Post
    You could try adding a reference to the files and then reference the code in your project. Which version of Firefox are you using?
    i am using firefox 3.5.3 . All i want to is send a url to firefox address bar and load it and open new tab for other urls ! could you show me a code on how to do that? i dont know what you meaning by refrencing ...

  4. #4
    PowerPoster Nightwalker83's Avatar
    Join Date
    Dec 2001
    Location
    Adelaide, Australia
    Posts
    13,344

    Re: How to send a url to firefox tab and load the url ?

    Here is code that does that you want without referencing which, not all files allow.

    vb Code:
    1. Option Explicit
    2.  
    3. Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" ( _
    4.                         ByVal hwnd As Long, _
    5.                         ByVal lpOperation As String, _
    6.                         ByVal lpFile As String, _
    7.                         ByVal lpParameters As String, _
    8.                         ByVal lpDirectory As String, _
    9.                         ByVal nShowCmd As Long) _
    10.                         As Long
    11.  
    12. Private Sub Command1_Click()
    13.     ShellExecute Me.hwnd, "open", Text1.Text, vbNullString, vbNullString, vbNormal
    14. End Sub

    The original code post can be found here. Thanks to Chris001!
    when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
    If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
    https://get.cryptobrowser.site/30/4111672

  5. #5

    Thread Starter
    Frenzied Member
    Join Date
    Apr 2005
    Posts
    1,907

    Re: How to send a url to firefox tab and load the url ?

    Many Many thanks nightwaker that is exactly what i was looking for!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width