|
-
Jan 27th, 2011, 01:14 AM
#1
Thread Starter
Frenzied Member
[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.
-
Jan 27th, 2011, 01:20 AM
#2
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
-
Jan 27th, 2011, 01:39 AM
#3
Thread Starter
Frenzied Member
Re: How to send a url to firefox tab and load the url ?
 Originally Posted by Nightwalker83
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 ...
-
Jan 27th, 2011, 02:08 AM
#4
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:
Option Explicit Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" ( _ ByVal hwnd As Long, _ ByVal lpOperation As String, _ ByVal lpFile As String, _ ByVal lpParameters As String, _ ByVal lpDirectory As String, _ ByVal nShowCmd As Long) _ As Long Private Sub Command1_Click() ShellExecute Me.hwnd, "open", Text1.Text, vbNullString, vbNullString, vbNormal 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
-
Jan 27th, 2011, 03:25 AM
#5
Thread Starter
Frenzied Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|