refresh

Excel 2007 with parameterized query, automatic refresh doesn't work

I have a workbook developed in Excel 2003 that uses a parameterized query. The parameter is linked to a cell on another worksheet and is set to Refresh automatically when the cell value changes. The linked cell contains a dropdown list, but when the user chooses a value, the refresh does not work. This worked fine in 2003 and still ...

How can I reload an Activity that exists within a TabView?

I have a Tabview with 3 tabs (each having their own activity). I have a tab that parses a RSS feed. How can I refresh this feed via a menu button? I tried doing the following but I lose the tabs above of course. Thanks! Intent UpdateFeedIntent = new Intent(classA.this, classA.class); startActivity(UpdateFeedIntent); finish(); ...

How do I get custom dialog close without showing graphics artifacts?

I have a custom windows modal form with the following event code: private void btnCancel_Click(object sender, EventArgs e) { Close(); _result = DialogResult.OK; } The problem is when I click OK, that triggers some process-intensive stuff (report generation) and the form becomes partially drawn on the screen. It's like the report ...

Refresh Frameset

I have a site with a frame: <frameset cols="69%,31%"> <frame src="main.php" /> <frame src="result.html" /> </frameset> Its looks like this: ------------|----------- | search | result1 | result2 | result3 | | | | ------------|--------- Here ...

Refresh MySQL views?

At work I'm constantly being told that when changes are made to a MySQL db that the views need to be 'refreshed'. The accepted manual solution seems to be going into Workbench, right clicking, and hitting 'Refresh All' Is this just meant to be clearing the cache? Or does that rebuild the views from scratch, or is this totally bogus? The...

History management (Refresh Button)

Please give me idea about the management of data in GWT. I am using Gwt in my travel portal project and my web pages is related to previous page data but when i press the refresh button of browser's then my data is lost . so please inform me if there is any way to manage this problem. ...

Problem with IE and setInterval() not refreshing/updating.

Hello. I'm using JavaScript/Jquery to make a page auto-update with a value from a database, although it doesn't seem to update in Internet Explorer. It works fine in FireFox & Chrome. Can anyone explain what's wrong? It looks like IE is just displaying a cached version of the page. How can I prevent this happening? Thanks. function upda...

Not refreshing in WPF with DataGrid

Sorry, I have seen this questioned asked a couple of times here already, but none of the answers have solved my problem. public MainWindow() { _PropertyTenantData = new DataTable(); _PropertyTenantData.Columns.Add(new DataColumn("Property", typeof(string))); _PropertyTenantData.Columns...

How can I avoid refresh with TWebBrowser

I have a TWebBrowser component that show a Google maps page. The problem is that when user press F5 the page refresh and page reloads. This cause javascript variables to reinitialize and get out of sync with Delphi and a scripting error dialog appear, 'undefined' is null or not an object. I want to stop refresh from the user. I tried ...

How to call a javascript function once on page load, page reloads, don't call it again

On a Magento shopping cart, there are 2 forms that need to be filled out: shipping estimate and coupon code. Each refreshes the page after submitting the form. The shipping estimate form needs to be submitted before the coupon form so that the coupon can validate the country. What I'd like to do is to call the shipping form's coShippin...

Silverlight 4: F5 / refresh

Hi, I want to determine how to filter F5 or the refresh button in browser in silverlight 4.0. thank you ...

JSF: How to refresh a page after download

I have a commandButton that will invoke a function to download a file (standard stuffs like InputStream, BufferedOutputStream ...) After download success, at the end of the function, I change some values of the current object and persist it into database. All of these work correctly. Now when file is done downloading, the content of the ...

Is it possible to auto refresh a DIV on MySQL change in: PHP or Java Script or AJAX

I have a facebook like system, I want the DIV containing the messages to automatically update when a new message is posted. Is this possible? If so, how would i go about doing this? <?php include('config.php'); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"&gt; <html> <head> ...

How to refresh screen in BlackBerry?

I use this on one of my screen: protected void makeMenu(Menu menu, int instance){ if (UserData.sessionId != null){ menu.add(logOut); menu.add(setting); } menu.add(exitApp); } The "log out" and "setting" menu only appear after the user logs in (hence, the session ID is not null). How to make the "log out" and "setting" disappe...

Flex: Refreshing view when flex application is visible

Hi, Flex application is contained in one of the rows of a html table, and that row is hidden as per one use case. Flex application is refreshed when visibility of the row is changed to visible. This results in lose of data that is already entered in the flex application. Is there any way to stop this behavior? Can any one help me on thi...

HTML select refreshes page when I submit form

Hi all, I have a simple form with some input fields and a dropdown list (). I use 'return false' with jQuery to avoid the page to refresh after I submit the form and this works like it should. However, with the 'select' html in the form it does refresh the page and this is not what I want. Does anybody have an idea on how to avoid the ...

Refreshing a listview on click of a button in a row of that listview

Hi, I created a ListView that contains a row which in turn contain text and a button. The idea is to have the button function as a delete button to remove the row from the list as well as the database. I order to do this I created an adapter to handle the button click. This code is below. Deleting the database record works fine, but I ...

Refresh datagridview in windows form application

Hello, I have a form with datagridview and a List like this: private void Form1_Load(object sender, EventArgs e) { List<Person> list = new List<Person>(); list.Add(new Person("A", "An Giang")); list.Add(new Person("B", "TP HCM")); list.Add(new Person("C", "Tiền Giang")); ...

How to Update DataRepeater Bound Datasource without flicker

Hi, I have a list bound to a datarepeater which contains data being scrapped off a web site. Because the scrapping process could take some time, I binding the list to the datarepeater at the outset so the user can start seeing the results. As I add entities to the list, I'm calling: bindingSource.CurrencyControl.Refresh(); This is cau...

Telerik TreeView ajax refresh issue

I have a Telerik Treeview on an aspx page housed inside of a Master Page. There is also an ascx user control on the page as well. Both controls are embedded in Ajax proxies for refresh. When the ascx is modified, it fires the TreeView Ajax proxy in order to refresh the TreeView. The web site works great for most users (including test...