חיפוש בתמיכה

יש להימנע מהונאות תמיכה. לעולם לא נבקש ממך להתקשר או לשלוח הודעת טקסט למספר טלפון או לשתף מידע אישי. נא לדווח על כל פעילות חשודה באמצעות באפשרות ״דיווח על שימוש לרעה״.

מידע נוסף

how to open a mozilla webpage and change its size using visual basic

  • 1 תגובה
  • 1 has this problem
  • 1 view
  • תגובה אחרונה מאת Paul

more options

I am trying to create a macro which opens a mozilla webpage window at a specific position and in a specific size. I can open the page but cant change its size

Set ObjShell = CreateObject("WScript.Shell")

ObjShell.Run ("c:\progra~1\mozill~1\firefox.exe http://blarney.uk.tmo/login.aspx")

Set ObjShell = Nothing

End Sub

Here is one for IE which works

Sub IE()

       Dim oIE As Object
       Set oIE = CreateObject("InternetExplorer.Application")
       oIE.Navigate2 "www.google.com"
       oIE.Height = CInt(Int((1000 * Rnd()) + 1))
       oIE.Width = CInt(Int((1000 * Rnd()) + 1))
       oIE.Visible = True
   End Sub
I am trying to create a macro which opens a mozilla webpage window at a specific position and in a specific size. I can open the page but cant change its size Set ObjShell = CreateObject("WScript.Shell") ObjShell.Run ("c:\progra~1\mozill~1\firefox.exe http://blarney.uk.tmo/login.aspx") Set ObjShell = Nothing End Sub Here is one for IE which works Sub IE() Dim oIE As Object Set oIE = CreateObject("InternetExplorer.Application") oIE.Navigate2 "www.google.com" oIE.Height = CInt(Int((1000 * Rnd()) + 1)) oIE.Width = CInt(Int((1000 * Rnd()) + 1)) oIE.Visible = True End Sub

כל התגובות (1)

more options

Hi

Thank you for your question. This sounds very much like a programming question that is a little above our level of expertise on the Support Forum (we mainly look at Firefox product issues).

I recommend that you ask about this in Stack Overflow where I am sure one of the experts there will be able to help.