change

Drop Down box Image change problem

Hi there, Im a noobo in the world of Javascript but am trying to get my heard around it (shouldn't take too) Basicly what im trying to do is the following I have a drop down box that when changed will change an image, which i have got to work using the following cose <HTML><HEAD><TITLE>JS1</TITLE> <script LANGUAGE="JAVASCRIPT TYPE="TE...

(WPF) Animate ListView item move

I would like to have an animation when an item in ListView changes position, so it would slowly move to the new position. Either in a template or in code. I've tried descending from a (Virtualizing)StackPanel and overriding ArrangeOverride to reposition and animate the items. the problem is that I don't know at what position the item was...

How do you deal with design changes?

I just finished working on a project for the last couple of months. It's online and ready to go. The client is now back with what is more or less a complete rewrite of most parts of the application. A new contract has been drafted and payment made for the additional work involved. I'm wondering what would be the best way to start rework...

[jQuery] newbie question

Hi all, i have following simple code for a word/tag in a tagcloud: <a about="http://localhost/d456c6" href="http://localhost/d456c6" class="tagweight0 Resource">abda</a> i want to change the background on click of a word. the problem is, that i have not only one word with class "tagweight0". Here my jQuery example code: $('tagweigh...

jpa how to create new entity with same id as parent entity (JOINED Inheritance)

Hi folks, my question is very similar to http://stackoverflow.com/questions/1118873/changing-the-type-of-an-entity-preserving-its-id, but instead i´m using InheritanceType.JOINED instead of Table_per_class. This means i don´t to change any table, just to create a new subclass, with the same id as the superclass. To summarize, I have a...

detail change after git pull

Hi, After git pull, its output gives a summary on the change amount. If I want to see the detail change of each file or some file, how can I? Thanks and regards! Update: Thanks. I am not sure why I cannot add comment or vote on your answers. Okay, here is my question to Jefromi: How do I know if I was pulling to master? All I did i...

Changing company name...do we change namespaces?

We plan on changing our company name starting October 1st. All of our namespaces, projects etc use XYZ.ComponentName. My question to you would be, on October 1st, what would you do? Change all the old components to ABC.ComponentName? Leave the old ones but any new development becomes ABC.ComponentName? Just stick with the old name? ...

SQL Server Change Tracking vs Replication vs Differential Backup

Ok we have critical transactional database and its in full recovery mode in SQL Server 2008. We have have two different servers in two different data centers on two different timezones. And I am trying to setup best way to make database as upto date as possible using various options. Database is currently only 1.5GB, expected to grow 1GB...

jQuery problem: onClick animate marginTop -= 50px, height +=50px

Hello people, I have hard time understanding and creating a proper function using jQuery. I have 2 main areas in my site. The first is the content area that appears over the other area I named panel. All I want is this panel when I click on a specific link to move a bit upper and to resize to the size of the movement. It should repres...

generically detecting html position changes using jquery?

I'm using the excellent BeautyTips plugin as a means of indicating validation failures to end users and I'm running into positioning problems whenever page content is dynamically added, removed, or animated. Here's a concrete example. I have a DIV at the top of each page that’s used for confirmation/error messages. It's displayed in $...

Improving a Python Script that Updates Apache DocumentRoot

I'm tired of going through all the steps it takes (for me) to change the DocumentRoot in Apache. I'm trying to facilitate the process with the following Python script... #!/usr/bin/python import sys, re if len(sys.argv) == 2: f = open('/tmp/apachecdr', 'w') f.write(open('/etc/apache2/httpd.conf').read()) f = open('/tmp/apachecdr',...

Creating a modest Auto Generating SQL change script ?

I'm aware that auto generating SQL change tools exist, however I would like to create a very lightweight tool. Currently I manually log any stored procedures or table changes (or new stored proc or tables), while this is very effective during publish /release its time consuming (hence while these tools exist) I just want to automate th...

Jquery Problem Loading Data from Form Into Ajax Driven PHP Page using Change

I am probably making some silly mistake but I am newer to the world of Jquery and am looking for some help with this issue. I have a form that I need to check/validate two dates once they change their values. Once they change I had an Ajax call that loaded a page "checkdates.php" and passed in two bits of data. The Date that changed ...

How to change segmentcontrol color while loading the iphone application?

Hi, i want to change the color of the segment color while loading the application. or is it possible to change the color of the segmentcontrol according to the NavigationBar header/title color? Provide any solution with any code snippet or any useful link,which would be appreciated. Thanks, Mishal ...

Changing background image of logon screen programmatically?

I'd like to replace the bitmap on the logon screen of Windows 7 64-bit with one that is on disk. I have a program that periodically switches the background image of my desktop, and it has a configuration to run a program after it has changed it, which I thought I could use to also copy the same bitmap to the logon screen. Does anyone kn...

Jquery: how to detect a textbox's content has changed

I want to detect whenever a textbox's content has changed. I can use the keyup method, but that will also detect keystrokes which do not generate letters, like the arrow keys. I thought of two methods of doing this using the keyup event: Check explictly if the ascii code of the pressed key is a letter\backspace\delete Use closures to r...

Need to change the color of table view selection!!!

Hi All, I need to change the default blue color selection of table view to some custom color. Is there any way to do that. Help me Thanks in Advance Shibin ...

Increasing or decreasing control fontsize on runtime according to Slider(WPF component) value

Hello, I want to increase or decrease font size of controls such as window, treeView, ribbon menu etc that are contained by main window. I have a font size slider create method and I want to acces all of Control and TextBlock by using visualtree helper and increase or decrease their font size according to slider value. Methods are be...

Zend Framework and switching view script paths

I have a problem. Basically, depending on whether a user goes to /es or /br or /cn etc on our website, we have different language template files. So far, we were using a custom templating engine to make this work, but are making a switch over to ZF. I can't seem to figure out how to get ZF to look for a view script in say cn/about-us if ...

Changing the font of the text in an SSRS Report

Hi, Im trying to change the font of the text in my SSRS Report using the SSRS Expression language. e.g.: i have a textbox in my report and i set the Value property of it using the SSRS Expression language ="hello" is there a way to make the "hello" literal an underlined string. Thanks ...