Questions tagged [.refresh]

Function of updating the display on a screen.

17 questions
17
votes
5 answers

Visual Studio 2008 - Add Reference

When adding a DLL as a reference to an ASP.Net project, VS2008 adds several files to the bin directory. If the DLL is called foo.dll, VS2008 adds foo.dll.refresh, foo.pdb and foo.xml. I know what foo.dll is :-), why does VS2008 add the other three…
5
votes
3 answers

how do you refresh references in ASP.NET applications without visual studio?

I have an ASP.NET application which relies on an external assembly which is not in the GAC. The app has a .refresh file which copies the assembly into the bin directory when the app is compiled. When I install the app on a production server (by…
Ferruccio
  • 98,941
  • 38
  • 226
  • 299
4
votes
1 answer

refresh gridview after adding or deleting new record in c#

i've a grid on my page i need to refresh gridview add and delete new record but its not? here is the code: Add Row To GridView: private void AddClientToGrid() { int clientID = int.Parse(ddlClient.SelectedValue); int…
serim urhan
  • 139
  • 2
  • 10
  • 21
4
votes
4 answers

How to "unignore" Visual Studio Web Site *.refresh files when you have [Bb]in/*

I'm using the standard Visual Studio .gitignore at https://github.com/github/gitignore/blob/master/VisualStudio.gitignore Part of that gitignore is to ignore the bin folders, but this is a problem, because I need to include bin/*.refresh files for…
enorl76
  • 2,562
  • 1
  • 25
  • 38
2
votes
0 answers

open a csv file in an active worksheet vba on mac

I am trying to rewrite my windows VBA code so i can use it on a Mac computer. But somehow it is not possible to load the information into an active worksheet on mac. Where MyFiles is the csv file opened by the code of…
witlex
  • 21
  • 2
2
votes
1 answer

Primefaces Delete & Confirm Dialog inside table column - Update or Freeze Issue

I have a smiliar problem like here: Primefaces: commandButton in confirmDialog cannot update datatable in the same form I have a table with games. In the last column there are 2 buttons: delete and details. The delete button should delete the…
user2158143
  • 123
  • 1
  • 2
  • 10
2
votes
1 answer

C# Panel.Refresh() not calling paint method

I am trying to call panel1 paint method to repaint the panel with a orange line (it is initiated with a blue line). I have tried invalidate(), update() and refresh(), but nothing seems to call the paint event of panel1... The paint event handler…
williamwallace
  • 65
  • 1
  • 3
  • 5
1
vote
0 answers

how to refresh one object with a new id generated by a trigger en db and return the new id

This is my entity. I tried to use sequence but my DB uses a trigger to call a Sequele.nextval. .Save of hiberte returns me the nextval but the trigger when try to insert add the next vale1 Here I'm trying to use refresh this is my dao.
1
vote
1 answer

jquery refresh source code, but changes not shown in browser?

I am trying to write a small form, in which I will have 3 radiobuttons with names of 3 different templates(text-files). If one is chosen, the content of the text-file should be shown in a textarea below, and when I choose another one, the content in…
yangsunny
  • 656
  • 5
  • 13
  • 32
1
vote
4 answers

Refresh the activity content on returning back from another activity in android

My app is a message app and it have an activity that perform inbox functionality. So, in my inbox i will list unread messages on top and read messages at bottom. So if i click on an unread message it will move to new activity which displays the…
Saans
  • 21
  • 1
  • 7
1
vote
1 answer

How to create refresh/reload in Jtree / Jtable based file listing?

I read tutorial in File Browser Gui , but if the strucutre folder changed, program cannot dynamic reload, how to create refresh/reload function in File Browser GUI ? Here my uncomplete code refreshPath = new…
0
votes
1 answer

Looped .Refresh causing slow Excel

I am trying to use VBA in Excel for Mac to query a database. A simple query works fine and I've been using it for years. Now I'm getting into more complex queries, where the results of one query (about 1,000 records) are used sequentially to query…
Schrocks
  • 13
  • 4
0
votes
1 answer

ECLIPSE RCP app: view disappears after opening another window

I have 3 views in a window. The first view has content from a tree viewer. The second view has content in FillLayout. Both views get the data from the DB. Once I click on a link from the second view, I get the new window popping out. But this window…
Kumar S
  • 431
  • 2
  • 6
  • 16
0
votes
1 answer

Import Gsheet Page into Excel

I am trying to import a Gsheet page into an Excel by asking the URL of the Gsheet into a message box. I achieve to import it when I pout the URL directly into the VBA code but not when I copy the URL into the MsgBox, I get an Error 1004 on the…
0
votes
1 answer

Excel VBA Form is not refreshing properly when a subform is closed

Good Afternoon. I've running into a situation I hope someone here can help with. I'm running Office 2010 on Windows XP and have an Excel worksheet that contains a button to show a modal form (Form01). Form01 contains 3 Listboxes of data. …
1
2