auto

CSS auto adjust not FULL width problem

hello I want to do so the size of the bubble, is auto-adjusting after the text(comment) which is inside the div.. Firstly heres the code: .bubble { font-size: 12px; margin-bottom: 0px; } .bubble blockquote { margin: 0px; padding: 0px; border: 1px solid #c9c2c1; background-color: #000; } .bubble bl...

auto run a php file

Is there a way to run a second PHP file from the first file ? example i wam running a.php and from the foreach loop, the var is past to b.php using POST function.. ...

Auto 'zz' in vim after a jump

After I make a jump to anywhere in the world, whether in the current file or a different file, is it possible to make vim automatically run zz (re-center on current line)? I want this after things like search, ctrl-o and ctrl-i ... and pretty much any movement other than hjkl. Thanks. ...

Auto Generate Objects in DBIx::Class ORM in Perl

Hello, I started learning DBIx::class and I reach the point where you have to create the Objects that represents tables. Should this classes be created manually ( hard coding all the fields and relationships.....) or there is a way to generate them automatically using the database schema. I read something about loaders, but i did not kn...

Oracle Weblogic JNDI Datasource set Default Auto Commit

Hi. In my J2ee web application I am using a datasource accessed stored in the weblogic server and accessed through jndi. In normal datasource bean declaration there is a property defaultAutoCommit which can be set to false. Is there a similar property or is there a way to set something like this when using datasource in JNDI. Because cur...

jQuery carousel - auto expand height

I have a functional vertical jquery carousel as i have tweaked and modified the script and example found here: http://sorgalla.com/projects/jcarousel/examples/static_vertical.html Instead of images, i am using text as list items. this script uses an fixed height style, and i am trying to incorporate an auto expand height feature. To ...

Resize a ListView depending on how many items?

Hello. How can I resize the height of a ListView depending on how many items are in that ListView? I'm trying to get the text of an item which is clicked, however whenever the user clicks on a space which has no item, there's an error. The exact error is: InvalidArgument=Value of '0' is not valid for 'index'. Parameter name: inde...

What is a good IDE for PHP? It has to auto upload to server on file-save

Can someone please recommend me a good editor for PHP that auto uploads on save? Basically, I do not want to store any files locally .. thx. ...

Java: Selected rows's index does not changes when I sort them!

Hello, I have a Jtable on which I called the method table1.setAutoCreateRowSorter(true);. So this works on well. But I also have a methos in my JFrame class which is fired when i push a button. It gets the selected rows indexes using this code int selectedRows[] = this.table1.getSelectedRows();. And displays an edit window for the fi...

Visual studio 2008 autorecover directory location change

howdy using vs2008 C# Does anyone know how change the directory location that auto recover files are saved to in visual studio sp1. The specific directory it should be on my C# drive in my documents is always empty even when the feature is turned on. There where some changes to our network env and it seems my auto recover files are now ...

Auto text in CKEditor

How can i change CKEditor for an additional functionality of auto replace text (auto text). For example if I type US, it should automatically get the corresponding word for this acronym and replace it with United States. The values will be maintained in DB. ...

multi-shop orders table and sequential order numbers based on shop

Hey, I am looking at building a shop solution that needs to be scalable. Currently it retrieves 1-2000 orders on average per day across multiple country based shops (e.g. uk, us, de, dk, es etc.) but this order could be 10x this amount in two years. I am looking at either using separate country-shop databases to store the orders table...

CSS: auto height on containing div, 100% height on background div inside containing div.

The problem, is that I have a content div which stretches its container height-wise (container and content div have auto height). I want the background container, which is a sister div of the content div to stretch to fill the container. The background container contains divs to break the background into chunks. The background and c...

jQuery automatic scroll / slideshow

Could i modify this existing code to automatically scroll through the list items to display the content? Sorry, the: ul li a {} links. Maybe using "interval" method? $(document).ready(function(){ $('ul.tabNav a').click(function() { var curChildIndex = $(this).parent().prevAll().length + 1; $(this).parent().parent()...

CPanel 11 Auto Login?

Hi everybody. Does anyone know if there's a way to automatically login to CPanel 11 and then redirecting to somewhere else? I've tried everything, some things work better than others, for example, using and iFrame I can achieve this but only in Firefox. Neither XMLHttpRequest nor Curl work. The only solution is recreating the form and au...

Auto-Completion in Unix VI editor

Hey guys, after using graphical IDE's like Visual Studio, I'm used to pressing CTRL+Space to auto-complete a variable or function name. Now, I know such a thing isn't completely possible in VI, but I heard there was a list of commands that could be mapped that allowed automatic completion of variables and functions in the current file op...

C++ auto function return type implementation [trailing-return-type]

hello. Is there macro, something like BOOST_AUTO, which would allow to emulate automatic return type deduction of function in C++? I mean something like trailing-return-type, http://en.wikipedia.org/wiki/C%2B%2B0x#Alternative_function_syntax this is what I have: using namespace boost::fusion; #define AS_VECTOR(var, expr) BOOST_AUTO(v...

Deploy a full trust wpf browser application (XBAP)

Hi everybody, I am building a XBAP application which required to run in a full trust environment. Thus, when using it on browser, the end-user have to install my .pfx file (to certificate my application) or receives the famous "Trust not granted" error. That make a inconvenience. So, I want that everytime the end-user access my xbap app...

Fancybox Auto Close, but remain user control

Hi, i've searched through the forum yet i can't find the solution. i'm refering to this thread to do the auto close function: http://groups.google.com/group/fancybox/browse_thread/thread/d09438b7... I did follow JFK's solution which works just right: 'onComplete': function() { $("#fancybox-wrap, #fancybox-overlay").delay(3000).f...

auto calculate the sum of input values with javascript

I've an html page which has many dynamically created input boxes. The number of text boxes vary each time. I want to calculate the sum of the numbers the user has entered, and disply it. When the user delete one number the sum should auto calculate. How can i do it with javascript? Thanks ...