change

How to launch Maintenance mode--"Change, Repair, or Remove installation" dialog in WIX

Hi all, I have changed the wix tutorial codes from here http://www.tramontana.co.hu/wix/ to make my own installer. There is no problem when I run the installer to setup my application. But when I run the the installer again, a window jumped out said "Another version of this prodcut is already installed..." But in the sample, there s...

Changing an iPhone app id?

I would like to change the app id of an iPhone app that i am selling. Is it possible to do so, update it, maybe add in-app purchases and have no problems? Thanks guys, please tell me anything bad that could happen... ...

dynamically change jquery innerfade

I have a small form of transition settings next to some images I'm rotating using a jquery innerfade plugin. What I would like is when the user selects a new transition setting (ie, timeout) the innerfade dynamically updates the timeout setting so the user can preview what this change will look like. But I'm not sure the best way to do ...

Can anyone help me with setting folder permissions in IIS via an asp page?

I can create the folder, but I need to set the execute permissions to none/false for the folder named files. I have tried several examples on the net and none work correctly. Doing this manually in IIS is not an option, it must be done dynamically when the folder is created. Here is what I use to create the folders: set fso = Server.Cr...

Can i change the layout of YUI datatable?

My web application uses YUI datatables to show records to the user. I dont want it to be a rows and columns layout. Can I use my own layout for example all data of a record within a single row and single column. Consider StackOverflow questions page. Is it possible for me to do like this with YUI datatable? ...

Fastest way to change column data type in SQL Server

In SQL Server 2008, I have got a table of around 3 million records. I want to change the type of one of its columns from float to int. But seems it will take a lot of time. Is there any way to accomplish this very fast? ...

Is it possible to dynamically change the URL of a webpage?

Hi! I just wanted to know, is there any possible way to change the URL that appears in the address bar of a webpage dynamically? Like, maybe there are two buttons on the webpage, and when the user clicks one it will (or won't it does not matter) refresh the page and the url will be mysite.com/page1, or if the user clickes the second butt...

Is there someway to change the content of a page with the htaccess file?

Hi! I just wanted to know if there is someway to use the htaccess file to chnage the content of a page(s). Maybe something sort of like the redirect, but instead of sending the user to another page, it would just change the content of the whole page. Thank you for any and all help! ...

Documenting and getting approval before starting to code?

Recently our boss changed our method of working to first document stuff such as what we are going to code, how will it affect the system code, where would i require to make changes, etc, get it approved and then start the coding process. I believe that while sometimes its better to plan out stuff and visualize things (especially for com...

Change Thread Session ID Windows C++

How could I start a thread in a different session? I need to start a thread in the interactive session (session 1) from a service in the non-interactive session (session 0). I have done this with a process before by using SetTokenInFormation and DuplicateTokenEx and then passing this to CreateProcessAsUser. I was hoping I could do the sa...

iPhone sdk tab bar auto rotate on orientation change

Hi, I have a an application that has a tabbar controller and some navigation controllers inside the tab bar controller. I customized the tab bar by extending it and implementing the shouldAutoRotateOnOrientation Change method and returning YES for specific view controllers that I wish to show allow auto rotation. This works fine until I...

change the format of SpreadXML type excel file

Hi, We are displaying in an XML spreadsheet data exported from an SQL server DB and if th euser clicks save without changing the format the file size is over 6 time the size of the same data in native .xls Does anyone know a way to force the save as .xls? ...

C# change property of an object dynamically

Is there a way to change the property of an object in C# like this. int Number = 1; label[Number].Text = "Test"; And the result will change label1.Text to "Test"; Hope you understand what I mean. ...

Microsoft Sync Framework- [Database Providers/Active Change Tracking] - What is the recommended way to handle the identity property column?

I have a Central SQL Database Held On SQL 2008 Server. the application is a winForm client with sqlce DB as the client datastore(offline cache). as with change tracking setting to on. I read couple of blogs that the suggested solution would be to remove the identity column in the client table schema. however, it required some manual ha...

How are Agile development practices affected by a pervasive system change?

When a large system developed by Agile process requires a sudden large-scale change that affects most everything, what is the best way to go about it using Agile? Does the iterative part change at this point? For example, what if a decision is made to make a centralized system a distributed one? Or choose another large pervasive example...

Detecting TextInput changes on an editable ComboBox in Flex

If my ComboBox is editable how can I tell if a change event comes from a change to the TextInput or a change in the selectedIndex of the drop down? Is there a way to check for this in the event object? ...

how to change all div values on a page

Hi there, i have three div's on a page with same ID's <div id="downloaded">1200</div> Now when i call the function downloadThis("filename","divID"); i want that the value of every div with id "Downloaded" should change, i am using jquery. Kindly help. ...

I cannot change sql server's default port (1433)

I want to add another port to default 1433 port of sql server. So I opened the configuration manager, selected Protocols for MSSQLSERVER and then double clicked on TCP/IP to see its properties. Then I selected the IP Addresses tab and scrolled down right to the IPAll section. and then I change 1433 to 1433,1450 so that I could also conne...

Change content of a div using JavaScript

How to dynamically change content of a div using JavaScript? ...

C# How to change row color in datagridview?

I would like to change the color of a particular row in my datagridview. The row should be changed to red when the value of columncell 7 is less than the value in columncell 10. Any suggestions on how to accomplish this? Thanks. EB ...