9
votes
3answers
138 views
How can you detect if two regular expressions overlap in the strings they can match?
I have a container of regular expressions. I'd like to analyze them to determine if it's possible to generate a string that matches more than 1 of them. Short of writing my own regex engine with this …
0
votes
0answers
21 views
itextsharp table text overlapping
Hi,
A website im working on creates a pdf document using itextsharp xml but for some reason when content in a table row is split between two pages the content is falling into the next column and …
0
votes
2answers
51 views
JavaScript: Trigger a function when two divs touch / overlap.
The title explains it really. How to do this? Both divs are of differing size. Both divs are moving (I'm making a little Jquery game). If one hits the other, I want stuff to happen.
Thanks
0
votes
0answers
13 views
IE7 Overlapping Divs
While working to create a simple module, I ran into an issue with IE7 and its apparent desire to overlap elements. Here is my HTML code sample with CSS:
<style type="text/css">
body {
…
0
votes
2answers
91 views
How can i check if 2 controls overlap eachother on a canvas in WPF?
I am writing a designer that enables the user to drag controls around the screen.
What would be the best way of detecting if a control is overlapping another control while i am dragging the one …
1
vote
2answers
269 views
Finding the overlapping area of two rectangles (in C#)
Edit:
Simple code I used to solve the problem in case anyone is interested (thanks to Fredrik):
int windowOverlap(Rectangle rect1, Rectangle rect2)
{
if (rect1.IntersectsWith(rect2))
…
0
votes
4answers
137 views
How to avoid overlapping polygon
I created a program to draw many polygons automatically everytimes user presses a button. The points of the polygon are generated automatically using the random function. The problem is that, since …
1
vote
1answer
94 views
How do I partition datetime intervals which overlap (Org Mode clocked time)?
I have related tasks from two Org files/subtrees where some of the clocked time overlaps. These are a manual worklog and a generated git commit log, see below.
One subtree's CLOCK: entries needs to …
0
votes
3answers
180 views
Safari issues with javascript + css
I have some strange behavior going on with safari, im using the jQuery.GridLayout plugin and css for styling.
Just for some context, this website layout is a simple header followed by the content …
1
vote
3answers
228 views
How to calculate the area of multiple overlapping right-angled polygons?
I am looking for a way to calculate the common areas covered by multiple overlapping polygons. The polygons are all right-angled, if that helps makes things easier.
So for example:
BBBBB
…
0
votes
3answers
159 views
Positioning Divs semi-randomly, without overlaps
I have a page which has DIVs which contain short phrases (one-two words) of varying font sizes, which need to be positioned left-to-right according to a numerical parameter, and vertically so as not …
0
votes
2answers
535 views
CSS Float border overlap issues
I'm trying to float a menu to the left of the page, and when it gets large enough to reach the content below, Firefox bumps the content over exactly as it should... except for the border. See …
0
votes
1answer
85 views
intersect time intervals and generating new ones depending on intersect-results
hi there,
i've got two tables with time intervals and some settings for each interval, eg
2009-01-01T06:00:00 2009-01-04T14:00:00 1 0
2009-01-04T22:00:00 2009-01-07T06:00:00 2 1
…
0
votes
1answer
44 views
Overlapping Columns with IE7
I'm really having a hard time with IE7 as it is making part of my page fluid where it should be fixed. Works fine in every other browser but IE.
Here is the link... . If you shrink the window you …
0
votes
0answers
196 views
Transparent iframe ontop of pdf in iframe
I have found the technique of putting iframes on top of an iframes to get round the z-index problem browsers have with iframes.
The problem I am facing now is I need the the iframe that overlaps a …
