Search Result

Collapse
18 results in 0.0042 seconds.
Keywords
Members
Tags
refresh
  •  

  • Djiber
    started a topic dataGridView Selection?

    dataGridView Selection?

    Is it possible and how to disable selection of 1'st row in dataGridView.

    I made it select some other row, but even so when u try to move with arrows on keyboard it'll select 2'nd row(cause 1'st row was selected initially and you can see it's selected on RowHeader-1'st/Left Column)

    This is my code for selecting row:

    Code:
    dataGridView1.ClearSelection();
    dataGridView1.Rows[BoPrI].Selected = true;
    ...
    See more | Go to post

  • MrFlabulous
    started a topic Refreshing a parent form

    Refreshing a parent form

    Hi,

    I'm a new programmer, and have a small problem. I've been trying to get a form populated with lots of buttons and tabs to be refreshed when its child form is closed. The routine I have is this:

    Code:
    NewForm_View show_it = new NewForm_View();
    show_it.ShowDialog();
    Form.ActiveForm.Refresh();
    If I understand correctly, the parent form code should pause until NewForm_View is Closed (or should...
    See more | Go to post
    Last edited by MrFlabulous; Feb 13 '12, 09:59 AM. Reason: Clarity

  • Method to continuously read and display data in a file as it is updated

    My c# program is continuously updating a file and my c program is reading it.But my c program picks up the data from the file to the point when it is started. While the c# program is modifying the file even when the c program reads the file. So i need a method where the c program simultaneously reads and displays the data in the file as it is updated by the c# program. Please help.
    See more | Go to post

  • tinks
    started a topic location.reload() problem

    location.reload() problem

    hi,

    i have a problem with location.reload ();

    because i need to reload my page without clicking a button so
    everytime i get a reply from server (using ajax) i call
    location.reload ();

    in one of my codes, i was calling:

    fill() --->this fills my form from data in db.

    and then, the other call that i have, calls:

    location.reload ();
    fill(xmlRespons e);...
    See more | Go to post

  • azzhey
    started a topic Refresh/Reload DIV content on click?

    Refresh/Reload DIV content on click?

    I have many DIV contents and want they click on Minus/Plus link to refresh content.
    Anyone can help me how to write code Refresh or reload DIV content by click on a href?
    thanks anyone try to solve me. good luck!
    See more | Go to post

  • Stephen Parker
    started a topic Refresh a form from another database?

    Refresh a form from another database?

    1234567890
    See more | Go to post
    Last edited by Stephen Parker; Nov 29 '10, 12:12 PM. Reason: Typo

  • postman
    started a topic How do I execute code after iframe reloaded?

    How do I execute code after iframe reloaded?

    I am writing a client-side search function for a page which searches the content in a separate file (same domain) that is displayed in an iframe.

    I'm trying to code it so that when the user runs the search, the iframe will first be reloaded, then the search is run.

    The iframe reloads, but the search is performed before the reload is complete and the updated content isn't included in the search.

    How can...
    See more | Go to post

  • RuiT
    started a topic Open URL and refresh it continuously from C# app

    Open URL and refresh it continuously from C# app

    How can I develop a C# application to open a page in a web browser, given the URL, and refresh it continuously (always the same URL)?
    See more | Go to post

  • PBong
    started a topic Browser refresh causes loss of context
    in Java

    Browser refresh causes loss of context

    Hi all,
    I have this weird problem while developping a website.. Hope somebody can shed some light on this...

    Main page has a frameset with onload() that calls a Javascript. This script sets up a collection of objects, say "Collection A".
    Frameset has two frames:
    - FrameA with navigation, onclick() which sets the SRC of FrameB
    - FrameB

    When click in FrameA, a HTML is loaded in FrameB....
    See more | Go to post

  • How to get a DataGrid that uses a Stored Procedure to initially populate to refresh

    I've got a database that I've been working on for over a year and a half but I've just recently finished the back end to the point of feeling comfortable with starting on a front end.

    So while I've been able to pick up a great deal just stumbling through on my own with the several apress books I've gotten a hold of I've figured out a great deal and have some half decent forms for data entry but for the life of me I can't figure out how...
    See more | Go to post

  • syntaktik
    started a topic Hide column through VBA

    Hide column through VBA

    How do I hide columns in a split form through VBA? I tried this:
    Code:
    Me.Controls("field").ColumnHidden = True
    but i have to close the form and open it again to see the change. Nor does adding this help.
    Code:
    Me.Requery
    Me.Refresh
    Me.Repaint
    Any ideas?
    Thank you in advance.
    See more | Go to post

  • PHPstarter
    started a topic Meta Refresh does not pass on PHP variable?
    in PHP

    Meta Refresh does not pass on PHP variable?

    I'm trying to get a meta redirect to pass on a php variable to the redirected page, using the $_GET method.

    I have the mypage.php?user =created&userna me=$name&commen t=$comment etc

    , but ONLY the first 'user=created' seems to be passed on.

    All the other in line, like the username=$name comes from a script where this meta refresh is used, at the bottom.
    The script uses sessions, but it never...
    See more | Go to post

  • MMcCarthy
    started a topic Relinking ODBC Tables using VBA

    Relinking ODBC Tables using VBA

    As a lot of my projects involve using an odbc linked backend data source I have found this piece of code to be very useful. I usually trigger it to run on system startup like in AutoExec macro. It avoids any difficulties down the road with broken links and if the DSN name or database server changes then the only edit that needs to be made is to the connection string.

    Code:
    Function relinkTables()
    Dim tdf As DAO.TableDef
    ...
    See more | Go to post

  • c# webbrowser occasionally doesn't show website (timeout?)

    I have a c# web browser that points to one website. About 1 out 100 times nothing is displayed.

    I tried to solve it with a more refined refresh button. Here is what I am doing when I click the refresh button:

    Code:
    if (browser.Document.Title.ToString() != "")
    {
        browser.Refresh();
    }
    else
    { 
        MessageBox.Show("web browser timeout?");
        browser.Stop();
    ...
    See more | Go to post

  • mwcapps
    started a topic Refresh

    Refresh

    I'm using a button click to move users from one list box to another. Is there a way to 'refresh' the listboxes at the end of the click event? Thanks
    See more | Go to post
Working...