Is it possible to get the page size (from e.g. a PDF document page) using GhostScript? I have seen the "bbox" device, but it returns the bounding box (it differs per page), not the TrimBox (or CropBox) of the PDF pages. (See http://www.prepressure.com/pdf/basics/page_boxes for info about page boxes.) Any other possibility?
...
Hi every one, I'm a bit new to joomla and i'm, I'm trying to add the following function to my joomla site script Lights Out – Dimming/Covering Background Content with jQuery this function can be found on the following link
http://buildinternet.com/2009/08/lights-out-dimmingcovering-background-content-with-jquery/
I have tried to inclu...
In Inno Setup I have created a custom page with following code which has 3 text boxes.
Now I want to validate that text box on custom form next button click. If in text.text='2121212' something text is entered by user then only next button enabled.
[CustomMessages]
CustomForm_Caption=CustomForm Caption
CustomForm_Description=CustomForm...
Hi
I have one asp.net application, which has some problems while i am entering the special characters such as ": &#, " in the search box. If i enter this text in search box, i got the exception like this.
A potentially dangerous Request.Form value was detected from the client (txtValue=": &#, ").
then i searched on the net, i go...
Hi all..
I have a page called AddNews.aspx and in codebehind a web method called AddNews(Parameters)..
AddNews.aspx page is inherited from a master page.. So i used contentplaceholder.
I have a button..It's id is btnSave.
Here is jquery code:
$(function() {
$("[id$='_btnSave']").click(function() {
$.ajax({
ty...
Hi all, I have written code like this to throw a pop up when my website is closed. But this throws the pop up even if i refresh my page. Please help me to throw popup only when i close the browser of that website. (disable popup on refreshing page)
<body onunload="javascript: exitpop()">
<script type="text/javascript">
function exitpop...
I was asked by a client to create a bookflip (Page Turn) effect that did not require Flash. The imBookFlip plugin can load a book in an iframe or directly on the page. The book's pages can be set to turn when manually clicked only, begin auto flip (turn automatically) as soon as the html page loads, or begin auto flip when first page (fr...
i'm building an asp.net site with master pages. When visitors views a page, I'd like to show the date and time the child page was last updated. I'd also like to do this all at the master page level so no code for getting this information needs to be added to each child page.
Is this possible? what would be the best way to do it?
Thank...
I admin a fan page.
One of the fans created a photo album on his own page.
I want to post it on the fan page, but in the album all have is "post the album to profile", and if I do it I get it in my own profile, not on the fan page.
Any idea how to post the album to the fan page ?
...
#!/usr/bin/python
# -*- coding: utf-8 -*-
import urllib2
import urllib
import httplib
import Cookie
import cookielib
Login = 'user'
Password = 'password'
Domain = 'inbox.ru'
Auth = 'https://auth.mail.ru/cgi-bin/auth'
cj = cookielib.CookieJar()
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj))
login_data = urllib.urlencode...
hi i wrote a module for user page generation. After login the path goes to users/[user-name] and i want to customize it using my module. how to handle it?
...
Hi,
i've setup an autocomplete field that searches my database which works fine:
$("#autocomplete input#lookupAccount").autocomplete("lib/php/autocomplete_backend.php", {
width: 300,
selectFirst: false,
delay: 250 });
When a user clicks on a result I want to refer them to another page depending on what they've been cl...
I assumed that sending a page out with an expiry (a la)...
Response.Cache.SetExpires(System.DateTime.Now.AddSeconds(5));
Response.Cache.SetCacheability(HttpCacheability.Public);
Response.Cache.SetValidUntilExpires(true);
...would mean that if the user hit the back button they would see the "Page Expired" message. It does ...
Hi
I deleted sharepoint page which is based on page layout through browser by going siteactions-->managing content and structure--> pages--> selected the page--> delete(by right clicking).
But when I see in the content database still the page is there. Basically I want to delete the content type which I could nt delete as it is being...
I've been experimenting with Grails for the past two days and, so far, I'm really happy with it.
Coming from Rails, the only thing I've really been missing here is the dev-mode debug information shown after the page has been served.
This is what I mean:
Processing UsersController#show (for 127.0.0.1 at 2010-06-14 10:28:44) [GET]
Par...
Ok, i won't go into the full details (too much to explain) but here is what i am trying to do. I have a button on a webpage (we'll call page-1) that links to a page (we'll call it page-2). This page opens in the same window. However, i need the page (page-2) that opens to open up a new window with another page (we'll call this one pag...
Hi,
I m developing asp.net application in which I m opening HTML page that is stored on client machine on that page I have a link which will open aspx page on server, On that aspx page I have a button that will open another html page stored on client machine.
Since I m new to web development Plz help me and suggest me some solutions for...
Hello,
I want to add a gradient background to my web page (the area marked with yellow border is where the actual content is displayed) and I want it to take just 1/2 of the page (the bottom part):
I believe this is possible with CSS, but so far I have only managed to get a gradient background (taking the whole height of the page).
T...
Hi Everyone
this is what i want to achieve
1) Have a page control that allows user to do a swipe to 6 different pages
2) each page is a table view controller
3) everything is done via code NOT IB
The tutorials that are i find either use VIEW CONTROLLER or is done via IB. I am not very good with IB and prefer to have everything done vi...
I'm building an installer in Inno Setup. The installed software is a web application server, it checks whether port 80 is free, if it is taken, then it prompts user for another port to use for the web server.
I want this to be shown on a custom wizard page, just before file copying. The reason is that it is possible that the user has no...