frames

html how to create frames

Hi I would like to create an html frameset like the picture below. can anyone point me in an helpful direction as I'm not sure how to create this? Should I use frameset or something else like AJAX? ------------------------------------------ | | | | |-------...

Display a Modal Dialog Box in a JInternalFrame without pausing Application

Hi, I have an MDI application which uses JInternalFrames. Each internal frame does a different operation, however, some of the other frames display messages using JOptionPane, which of course, pauses the entire application. Is there anyway to (whenever a JOptionPane dialog or any other dialog box for that matter) be modal to its OWN i...

how can i clicked a link in diffrent frames without firing onbeforeunload in the other frames

i have a web page that contain two frames such as menu at the left side and content at the right side. in the content frames, i've used onbeforeunload function that fires whenever user want to close that webpage if they do not fill all the information. the problem is, onbeforeunload fires when i click on menu's frame. is there any way to...

Displaying Hi5, Orkut, LinkedIn, and Twitter etc. Pages in Power.com website

I am wondering how Power.com is able to display Hi5, Orkut, LinkedIn, and Twitter etc. links in their website pages. As far I know Twitter breaks Iframes as they use some JavaScript(Frame breaker scipt) to break frames. Would you please let me know if you have any idea on this? ...

Selective frame-busting Javascript

At some point last month, a random website decided to serve my company's website in a frame. Ignoring the question of "what are they doing?" for a minute, I used some simple frame-buster Javascript: <script type="text/javascript"> if (top.location != location) { top.location.href = document.location.href ; } </script> That part wo...

Delphi, frames vs forms. What for multi-document interface?

Hi, yesterday I've started discussion on "MDI vs tabbed interface". I've asked whether should I continue developing my app as MDI-based, or should I embed the child forms into tab sheets. Someone pointed that I should use TFrames instead... My question is: why? What are pros of using TFrames when embedding the form over TFrame? So far I...

Non-geek in despair over menus in one site with different iframes on 2 different pages

THE SITE: http://pocketresumeguide.50webs.com/index.html THE PROBLEM: Hello, everyone. I am running into a problem with targeting pages into iframes. I am self-taught in what little HTML I know (as you will probably be able to see for yourselves.) Problem #1: My main TEXT menu that runs across the bottom works fine when I'm on the in...

Removing HTML frames

Hi I have a website which splits the screen into two frames; the top half is the name of my website; the bottom half is an advertised website. I want it so if the user clicks the link on the top half (my website) the user is taken to my homepage. This works, but my website is loaded into the top half and not the whole screen. How do ...

html frames sizing parent according to child size

i have 2 frames in my parent frame say 1.htm ie left frame and 2.htm ie right frame now this 1.htm is quite a long frame and has a scrollbar and 2.htm is a short one i dont the scroll bar beside my frame 1 but want it to be for my entire parent window ie i wont to scroll both my left and right frames together how do i do that ...

What is the accepted way to use frames in Delphi?

I was having my usual stroll around SO and bumped on some frames discussions. I'm mainly a Delphi hobbyist and not a professional so I had to learn how to use TFrames my own way witch is: Create a TFrame inside it's unit. Add that unit to the main form Uses clause. Have a private variable of that TFrame's type OnCreate of the form ins...

How to retrieve HTML from Webbrowser control out of frames in .net (c#)

I know that I can get the HTML (source code) of a Webbrowser control via: HtmlDocument htmldoc = webBrowser1.Document But this does only provide the html code of the "parent page". In case the webpage uses frames, it does not return the html code for the whole page including frames. How can I get the complete HTML code including frame...

Access video frame by frame

What is the easiest-to-code-in technology that would give me real time access to a video's frames, and allow me to modify them. I am aware of DirectShow, but it's programming model seems to be quite complicated. Is there a framework that makes programming such a frame filter easier? ...

Watin testing of FckEditor

I have been working on the integration testing of a webapp using watin. The webapp uses fckeditor as one of the richtext controls. Here is the piece of html of the viewsource of my webapp that includes fckeditor iframe id="ctl00_HeaderMain_txtSafetyNetDescription___Frame" src="/FCKEditor/editor/fckeditor.html?InstanceName=ctl00_Header...

URL Shortening that Leaves the Shortened URL in the Address Bar

I'm building an internal URL shortening website for my company. Since so few people will use it, we're letting people choose their own custom shortened URLs. So, for example, you could have the shortened URL: http://goto/toms-projects We thought it would be cool to offer, in addition to a regular redirect, the ability to leave the ...

FrameSet / Frames, possible to hide and collapse in CSS. Also a position absolute question.

Hello, I'm currently working with some god awful CRM system. Essentially each page is made up of two FRAMESET elements each containing a bunch of frames. I need to create a print style sheet for a particular page. I'm having trouble getting everything to fit onto one page. So I've hidden some menu elements using elementName { display:...

How can I keep a music player in the page footer that doesn't reload when I click a link to a subpage?

I have been trying to solve this problem for a while now and have looked on numerous forums to find a solution. Here is my setup. Any help would be greatly appreciated! I currently have a index page that loads a JavaScript header and footer above and below my "content" section. I also have a list of navigation links inside of the head...

Javascript; Accessing frameset frames from within other frames.

I have a system in place which uses a frameset, within the frameset frames there are some calls like; top.frame1.location = "newlocation"; and top.frame2.afunction(); However I am updating the system, and now the frameset resides inside an iframe, so obviously all of the top.frame.whatever calls no longer work. Now I'm trying to f...

URL name not changing

hello, I hope that it's okay to ask this question here. As a complete beginner i was wondering how some websites url addresses don't change when you click on an internal link. So if for example the url is www.mysite.com it remain exactly that if you clicked on the "contact" link of that site for example. Also when i go to my site it chan...

Why doesn't the target attribute work in my frames?

I'm building a FRAME solution for my CMS. But, before you all start showing me disrespect about the entire frame thing keep in mind that this is a solution that would be visible only to administrators, and the reason why I'm doing this in frames is because then I don't have to keep reloading the administration controls. So the entire vi...

Load image into memory immediately

I need to open all frames from Tiff image in WPF into memory and then delete the source. And after that I eventually need to render that image (resized according to window size). My solution is quite slow and I cannot delete file source before the first require. Any best practices? ...