0
votes
3answers
30 views
How can I jump relative to the PC using the gnu assembler for AVR?
I have a binary file that I've disassembled using avr-objcopy. The interrupt vector table looks like:
00000000 :
; VECTOR TABLE
0: 13 c0 rjmp .+38 ; 0x28, …
1
vote
1answer
35 views
CSS Relative positioning overflow (squashed div problem) divs height expand with content?
Hi
I'm trying to edit some css to include a border to the right and the left of my site. My problem is that when I make my height 100% or auto nothing happens, but when I change …
0
votes
2answers
22 views
How to create a absolute element overlapping several rows in a calendar (table) design?
Hi
Im trying to create a calendar in an HTML table design with css element div elements as appointment blocks in absolute positioning which is working fine. But since the block is …
0
votes
3answers
109 views
Relative path of a given file from a service application in Delphi
I have a problem loading a file, as I'm passing a relative path to the function FileExists(Filename: String) and it's returning false, that is, it does not find the file in the dir …
0
votes
3answers
25 views
Position:relative for anchors in webkit broken. Work-arounds?
In our project we used the following method to link users to some anchorred area on the page:
<span style="position: relative; top: -100px; z-index: -1; visibility: hidden;"
…
1
vote
1answer
74 views
setting height of DIV with CSS in relative positioning
I have some HTML+CSS code that wants to layout several DIVs. The layout is like this: all DIVs stay in a parent DIV whose size is fixed. Then each child DIV should stay on its own …
0
votes
1answer
36 views
The Script Path of an included PHP script?
Is there a way to achieve the following?
In my /www/var/public_html/index.php file i have this
<?php include('database/connect.php'); ?>
And then in /www/var/public_html/ …
0
votes
0answers
57 views
SVG Absolute coordinates?
Hello,
I have some SVG files which have many text nodes in them.
I would like to get the absolute position of each of the text nodes, within the SVG document (the SVG documents h …
0
votes
2answers
48 views
php exec command - relative paths not working
how to run external program from php with exec command using relative paths?
<?php
exec('program_name ......');
?>
this works only if program_name.exe is in the same …
3
votes
1answer
151 views
Get Correct Relative Path in Delphi
Hi,
I am writing with Delphi 2009 a little app to edit HTML files. With
HypRef := '../../photos/myjpg.jpg'
If FileExists(ExpandFileName(HypRef)) then ...
I can find out, w …
0
votes
1answer
123 views
Relative paths in spring classpath resource
Hi all,
I have a bunch of spring config files, all of which live under the META-INF directory in various subpackages. I have been using import like the following...
<import …
0
votes
5answers
46 views
Is there anything wrong with having positioning & float?
I have:
.event {
float:left;
position:relative;
top: 50px;
width: 100%;
height: 100px;
background-color: #FFFFFF;
border-top: 1px solid #D6D6D6;
bo …
0
votes
1answer
84 views
How do I make these relative imports work in Python 3?
I have a directory structure that looks like this:
project/
__init__.py
foo/
__init.py__
first.py
second.py
third.p …
0
votes
1answer
360 views
[SharePoint] Publishing HTML Field Control Converts Relative URL to Absolute URL
So, after much research on whether or not we should the CEWP or the HTML Field Control on an external facing SharePoint site, we settled on using the Field Control (much thanks to …
2
votes
2answers
84 views
Converting 3D positions to 2D?
Say I have a 3D object's position, and the camera's location and rotation matrix.
How, would I go about converting this to a 2 Dimensional position on the screen? So that I could …
