change

Can I change my PIP information for the account

is it possible to change the PIP login information. I want to use different PIP then I used when creating the id. ...

How do I change the IP address on Oracle 10g

What steps do I need to take to change an IP address for Oracle 10g? I cannot connect to the database after going from a dhcp address to a static IP and a reboot. ...

How do I watch a file for changes using Python?

I have a log file being written by another process which I want to watch for changes. Each time a change occurrs I'd like to read the new data in to do some processing on it. What's the best way to do this? I was hoping there'd be some sort of hook from the PyWin32 library. I've found the win32file.FindNextChangeNotification function bu...

SQLServer 2005 - Change character in NVarChar

I receive some arguments into a stored procedure. These arguments are NVARCHAR's. I have a problem, when I need to cast some of these values to FLOATS, because they are being received as e.g. @VALUE1 NVARCHAR(100) DECLARE @ChangedValue SET @ChangedValue = CAST(@Value1 AS FLOAT) E.g. @Value1 = "0,001" Gives me a problem, as it expect...

How to modify or delete items from an enumerable collection while iterating through it in C#

I have to delete some rows from a data table. I've heard that it is not ok to change a collection while iterating through it. So instead of a for loop in which I check if a row meets the demands for deletion and then mark it as deleted, I should first iterate through the data table and add all of the rows in a list, then iterate through ...

What's the easiest way to change the Windows proxy address using .NET code?

I found a code samples here: http://sturla.simnet.is/post/2008/09/22/Enable-proxy-in-IE.aspx But it's very complex and involves manipulating the Windows registry. Is there an easier and less error-prone way of changing the proxy server address? ...

Restart ASP.NET application when folder contents change

I'm writing a web application that will have "plugins". The plugins will be .DLL files which will export their functionality through predefined interfaces 'n stuff. All the .DLL files are in a folder called "Plugins", and the ASP.NET application loads them all upon startup (by using Assembly.LoadFrom). The problem is that when developin...

Changing a flash file

I am trying to develop a way to change a flash file displayed on the screen to another file by clicking a button. I have been able to do this with jpg images, but I can't get it to work with flash files. Can anyone help? I would greatly appreciate it. Below are two html's: the first one changes jpg images and it works, the second one I c...

Changing flash files on screen by clicking a button

I am trying to develop a way to change a flash file displayed on the screen to another file by clicking a button. I have been able to do this with jpg images, but I can't get it to work with flash files. Can anyone help? I would greatly appreciate it. Below are two html's: the first one changes jpg images and it works, the second one I c...

Change flash by clicking a button

I am a real beginner! I'm on Windows Vista and IE7. Here's what I'd like to do: 1. I have two flash files: page1.swf and page2.swf. They are just page from a magazine. 2. Display page1 3. Have a button that says "Change page" 4. When I click the button; display page 2 instead of page 1 (only page 2, not both pages) That's it.If anyone ca...

How do I call a script when a table's data changes in Sybase 12.5?

OS is UNIX. I'd like to call a shell script to do external validation when the data in a table changes. Is it possible, and if so how. Many thanks. Updated: Ideally, I would like to call my external script once for any discrete operation: i.e. update... > call script once insert into... > call script once bcp into > call script onc...

How can I write a program that can detect by itself that it has been changed?

Hi, I need to write a small program that can detect that it has been changed. Please give me a suggestion! Thank you. ...

iPhone App name rejection?

Has anyone had apple send back the app with a name change requirement? We submitted our app in Nov. and have been going back and forth with them, we corrected the items they asked us to fix which were both interface and memory driven, and they said nothing about the name. They have been testing our API a TON so we know they are doing som...

How to change file permissions from Java 1.4.2 ?

Hi all, I'm looking for a code fragment, using which I must be to change the file permissions on unix. My project runs on java 1.4.2 .. just a sample code example or methods which needs to be used will do.. Regards, Senny ...

Can Excel give a notification if a the value of a cell changes out of limits in a certain time?

I would like to learn if Excel can notify me if the value of a cell is changed out of a limit within a certain interval? Example: Cell A1 has a value of 10, the limits are +1 and -1, the interval is 1 minute Now I would like to be notified if the value of A1 changes below 9 or above 11 within the interval of 1 minute Does anyone know i...

How do I turn OFF DML, ON DDL tracking in SQL Server 2008 Change Data Capture

Is there a way to turn OFF the DML tracking for SQL Server 2008 Change Data Capture? I'd like to only track all DDL statements. Thanks! ...

Need to monitor directory change, and perform action

1st of all: I'm not programmer, neither Linux guru, just have to work with Linux, Oracle, shell scripts. My current task is to monitor a table in Oracle (tool: sqlplus), and if it contains a certain row, then watch a linux directory for a growing tmp file, and log its attributes (e.g. ls -l), in every 5 second. The most important part...

SQL Column name for indicating a change

Hi, I didn't really know how to formulate the title. But this is my problem. We are using SqlCacheDependencies to update out cache objects. But the query behind this is "complicated" that we would like to make it somewhat easier. Our first thought was to add a fieldname like DateChanged and use the DateChanged to check if an object has...

Switch GNOME Terminal Profile from the command line

If I'm running gnome-terminal with multiple tabs open, is it possible to switch the profile of a given tab at the bash prompt, with instant effect, and without altering the profile of the other tabs? I understand how to use gconftool or gconftool-2 to change elements of a profile (such as the background), but I don't know how to actuall...

RMI: What change needs a recompiled impl class

I have two application which communicates by using RMI objects. I do have an interface, an implementation class and the generated stub class. I recognized, that some changes in the impl class take me to create a new stub class. My question is, what changes i can make without re-compiling the stub again? As far as What i know: I can ...