|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
You don't need a fax machine to get faxes. Get a fax-to-email fax number from CallWave. Try it free.
|
|
#1
|
||||
|
||||
|
PopUps from VB in IE
Can VB open popup windows like javascript in IE?
Also, is there anyway to control the browser window in IE using VB, such as removing the addressbar or altering the window so it becomes changes to fullscreen mode?
__________________
R.T.F.M - Its the only way to fly... "No matter what you do, or how good it is, someone will always ask for more features. Or to change the colour of something, then change their minds." Personal: experience// 8 Years Web Development technologies// Standards-compliant, valid, & accessible (x)HTML/CSS, XML/XSL/XPath/XQuery/XUpdate, (OOP) PHP/(My)SQL, eXist/Xindice/XMLDBs packages// Photoshop, Illustrator, Flash/Fireworks/Director environment// FC2, MySQL, Lighttpd, PHP5, Mojavi/Agavi site// //refactored.net/ (Coming soon...) quote// Programming is the eternal competition between programmers who try to make apps more and more idiot proof and the universe that makes dumber idiots. So far, the universe is winning... |
|
#2
|
||||
|
||||
|
If I remember correctly
My VB days were over a long while ago, but if I recall correctly you could make a call to the ShellExecute function and open an instance of MSIE. Check http://planetsourcecode.com
__________________
Two things have come out of Berkeley, Unix and LSD. It is uncertain which caused the other. |
|
#3
|
||||
|
||||
|
hmm i usta do all that stuff to AOL back in the day with Vb.. i suggest goto the API and look through the calls, you simply need to get the handle of the object u want to remove and close the handle.
I usta use this program IVY Spy to see if i caught the correct Handle. you can roll over and component on the screen and it gives you all the information on it. To open the browser you can just call the command line "start URL" i know in 2000 and XP it opens a browser |
|
#4
|
||||
|
||||
|
Are you sure you mean VB or VBScript?
I am sure that you can do many of the things with VBScript that you do with Javascript but it only works in IE. You can find a reference to it on the MSDN site, or use the following link:http://msdn.microsoft.com/library/d...vbscripttoc.asp |
|
#5
|
|||
|
|||
|
I think you want something like this:
Call Shell("C:\Program Files\Internet Explorer\iexplore www.deepcode.net", vbNormalFocus) This will make it popup the website www.deepcode.net in its normal viewing window (not making it maximized unless thats your normal setting) and focused on, meaning popped up in your face. try vbNormalNoFocus for a pop-under ad. If you have any other problems, feel free to ask. |
|
#6
|
|||
|
|||
|
Your question is a little ambiguous so it may be difficult getting the right answer. Some people suspect you want to exec windows explorer with a popup from a visual basic project but I suspect you actually mean vbscript within html code (instead of javascript).
|
![]() |
| Viewing: Dev Shed Forums > Programming Languages - More > Visual Basic Programming > PopUps from VB in IE |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|