change

How to get all the MySQL binlog event info using T-SQL

I am researching the possibility to log all the changes made to a MySQL database including DDL statements that may occur and use that information so it can be synchronized with a remote database. The application itself is written in C# so the best synchronization technology that I have seen so far to be available is Microsoft Sync Frame...

Update 2nd Textbox Based On Popup Calendar Selection

I am using the JavaScript-based popup calendar from dynamic drive named "Xin's Popup Calendar" and it works perfectly. But, I want to be able to adjust the date of a 2nd textbox based on the selection. For example, I want to be able to automatically adjust it to +1 month of whatever date was selected in the popup. How can I do that? H...

iPhone Product Name

I have an App already live on the App Store and I am now releasing an update for it. But I added the In-App feature to the app and realized my app name in iTunes Connect and the product name in XCode were different and the in-app didn't work. So I changed the product name in XCode to match iTunes Connect and the in-app purchase works. My...

jQuery change background with <input type="range">

How do, I've been teaching myself a little basic jQuery recently, doing so I stumbled across the idea of adding a slider to change the background colour of my page. I've figured out the .click and .css parts ok - it works fine with a div, which is incredibly exciting; but I'm having a little trouble implementing it using a range. I thin...

Changing the value of jLabel in jDialog after loading it.

I've a JDialog with a JLabel. I want to change the value of label every 10 seconds. How can I redraw/repaint the JDialog with updated value in JLabel. ...

Techniques for visualising change over time in graphs

I'm looking to display a graph (network diagram, not a chart) and show its changes over time. Is there a standard or best way to do this? I'm looking for an overview of the general layout decisions involved, i.e. a list of options and trade-offs to be made, and best-practice guidelines where these exist. Thanks. ...

C#/XML: Change/Replace data from an XML file via textbox

Hi, I have a XML file which contains the following: <config> <webservices> <webservice> <name>A</name> <value>http://www.123.com&lt;/value&gt; </webservice> <proxy enabled="false" useiedefault="false"> <name> </name> <value> </value> </proxy> </webservices> </config> I...

Android Configuration Change

What happens to the width and height params declared in LayoutParams on configuration change? For eg: if I have an ImageView declared with, new LinearLayout.LayoutParams(30, 40); On Configuration Change, does the width become 40 and height 30? Thanks Chris ...

Change order in .net resx file

Is there a way to change the order of keys in a resx file? I'm only using strings if that makes a difference. ...

Visual Studio designer stops recognising changes occasionally

Hi all, Using VS2008 visual designer occasionally the designer seems to stop recognising changes. Normally you get a * next to the filename in the tabs when a change is made but sometimes this stops appearing when I am making changes. When this happens may changes are getting "lost" so if I close/reopen the file all my changes are gon...

SQL Server Database Change Listener C#

I want to listen for changes to data in a SQL Server database from C#. I was hoping that there would be some sort of listener which I could use to determine if data that I have is stale. Despite being a fairly common scenario I can't find any solutions which aren't to simply poll the database. I use Linq-To-SQL to access the data and he...

Change price of product on store's website (Magento)

Is there a way(by codehack if neccesary) to change the price of a product per store website, so from display in search results and individual product view all the way to checkout and order information I need this for a multishop website where some shops can offer a product at lower price depending on how much they paid and there's an ex...

Changing Image Using Button iPhone

Hi, I have a UIImageView *picture and a UIButton *next and an - (IBAction)next { } I want to change the image on the view but only if the image equals... for example img1 But using the same button I want to also be able to change the picture if the image = img2 but to a different image (img3) So far I have this code but it gives me...

CascadingDropDown onchange handler

Is it possible to use an jQuery change() handler with an ASP.NET AJAX CascadingDropDown? I'd like to change the value of another dropdown on the page, which is unrelated to the cascading behavior. The following never executes: $('#<%= ddlFromCompetition.ClientID %>').change(function() { $('#<%= ddlToCompetition.ClientID %>').value = $...

jQuery change() not triggering when pressing space?

In order to highlight spacing between Chinese characters I've got this code function replaceSpaces(){ var segmented = $(this).val().replace(/\s/g, "<span>&emsp;</span>"); $('#preview').html(segmented); } $(document).ready(function(){ $('.tobesegmented').focus(replaceSpaces); $('.tobesegmented').change(replaceSpaces); });...

How do I create the Jquery goldfrapp changing background images

Hi Jquery experts I'm trying to create a rotating background like the clouds on Goldfrapps site. I've searched on google for changing background animation jquery but these don't have the same effect I want. Thanks for all your help Thanks Judith ...

Specific change-info in a sharepoint list/listitem

Hi... I'm trying to create a replacement Alert Me notification feature for sharepoint. I've done most of the hard work. I just need to know the best way to get the changes in a timespan. I know about the SPChange class, and the list.GetChanges() method. However the only information I can from this is what has been done like "Update"/...

JQuery UI autocomplete change event - resetting selection ID

I'm using the AutoComplete UI widget for a form to allow users to type in a customer name. The idea is that they can either select an existing customer and populate other fields in the form, or they can free-type a new customer to be created. When a user selects an existing customer, I use the select event to populate a hidden input to...

How can I apply a font type to everything using css

Basically, I need to adjust the font type everywhere it isn't specified. How can I do that? table, div, span, p, input, you name it. Is there a way I can do them all with 1 css rule that I can add? ...

How to change( and later restore) default context menu in textbox

Hi I wanted to change default textbox context menu, so I created my own menu and them I assigned it like that texbox.ContextMenu = myContextMenu However I don't know how to restore default textbox menu (in a runtime). I need myContextMenu to show only when I click textbox with right mouse button (while holding Control button). In othe...