Search Result

Collapse
14 results in 0.0042 seconds.
Keywords
Members
Tags
window
  •  

  • Peter Kr
    started a topic Tkinter Reloading Window displaying an Image

    Tkinter Reloading Window displaying an Image

    Hi,
    I've been searching for this on google for a while, but I didn't find anything.
    I want to display an Image inside a Tkinter Window, but the Window should refresh the image every second or so.
    How do I do that?
    My Code so far:
    Code:
    import Tkinter 
    import Image, ImageTk
    
    im = Image.open('temp.png')
    
    root = Tkinter.Tk()
    tkimage = ImageTk.PhotoImage(im)
    ...
    See more | Go to post

  • Showing "Work in progress" window while copying files

    Hi!

    I'm writing an application in which I'm copying a few files. It takes a while, that's why I would like to open a window which would say "Work in progress", so the user would know that copying is in progress and he should wait until it finishes. After finishing the copy-progress, the little notification window should close and let the user continue the work with the application.
    I tried to solve this, but when I...
    See more | Go to post

  • MOzgaf
    started a topic How to bring up file browser dialog for flash?

    How to bring up file browser dialog for flash?

    hi is there some kind of way to bring up the file browser window in flash i can do it in html but cant find a way in flash.I want to send this value(location string) to a php file for uploading.I have seen it before its on this applet (http://www.element-it.com/multiple-file-upload/flash-uploader.aspx) but i don't need it to have that many options.

    this is what i want but in flash as2 if possible.
    Code:
    <input name="uploaded_file"
    ...
    See more | Go to post

  • Josh Argent
    started a topic Fixed 'tool windows' like in photoshop?

    Fixed 'tool windows' like in photoshop?

    I want to make my own mini tool windows like in photoshop that only minimize when the main application is minimized. Is this possible in .NET/C#? Thanks in advance :)
    See more | Go to post

  • nicstel
    started a topic Python Editor Shortcut

    Python Editor Shortcut

    Hi,

    I'm trying to find a way to switching code in the python editor with a shortcut on keybord or with the mouse, like if I select Window in the toolbar and select the code on which I want to working on. I'm not sure if my question is clear but I tried.

    Thanks

    Nicolas
    See more | Go to post

  • Gurkboll
    started a topic DirectX Window error
    in C

    DirectX Window error

    Greetings dear forum!

    I am currently trying to learn some directX programming and thus I am following this tutorial I found. After completing the first stage I should be able to get a blue window when I run the program, but instead I get no less then 103 Errors. After looking through the code and searching on the web for awhile I decided to ask if anyone her could enlighten me of what I've done so terribly wrong.

    Here
    ...
    See more | Go to post

  • NKTA
    started a topic DOM on new open window

    DOM on new open window

    Hello.


    I have a question regarding method window.open(... ) or open(...).

    If i use this method to open a new window, is it possible to use DOM to append objects to that same window, or is it restricted.

    I have been searching for foruns and web in general, there seems not having a straight answer.

    Giving an example, with an event Listener i detect the keypress "Enter", which...
    See more | Go to post

  • romepatel
    started a topic How to detect the window close event.

    How to detect the window close event.

    I have an parent-child window. I need to refresh the parent window when the child window is closed. I had tried
    Code:
    <body onunload="window.opener.location.reload();">
    When i navigate to different page in the child window , each and every time the parent window is refreshed. I want to refresh it only when the child window is closed. How can i do that?
    See more | Go to post

  • how do i document.forms[0].submit() a form to a window.open?

    I have a virtual form with inputs like this...
    Code:
    newInput = document.createElement("INPUT");
    newInput.type = "hidden";
    newInput.name = "deprecated_form_id";
    newInput.value = deprDocID;
    document.forms[0].appendChild(newInput);
    and when i do a document.forms[0].submit(); how do I get it to submit to a window.open with specific options like toolbar=no, location=no...
    See more | Go to post

  • cruzzer
    started a topic prompt window value to alert window problem

    prompt window value to alert window problem

    I need to know how can I exclude a data item from the Alert Window’s list message if the user leaves a prompt window blank.

    Example :
    If the user types a value to both “idnumber” and “departmen t” prompt but leaves the “access” prompt empty or clicks cancel, I want the Alert Message List to look…

    LIKE THIS:
    ...
    See more | Go to post
    Last edited by Dormilich; Apr 29 '10, 05:39 AM. Reason: please use [code] [/code] tags when posting code

  • daint
    started a topic CURL with JS Query
    in PHP

    CURL with JS Query

    Hello,

    I'm currently trying to query an HTML page to extract data into a DB via the CURL command. The page containing the data is a frame within a 'parent' window. The parent window expects a number of parameters (which it uses as a form of login), then the 'child' window is displayed.

    Code of the 'parent window'...
    Code:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    ...
    See more | Go to post
    Last edited by daint; Mar 19 '10, 11:27 AM. Reason: Adding more info

  • tms005
    started a topic How to Compile Aix C++ Codes in Window platform?
    in C

    How to Compile Aix C++ Codes in Window platform?

    Anyone know how to compile Aix C++ Codes into Window platform?

    I have tried to compile my Aix (Version 4.2) C++ Codes using Bloodshed Dev C++ and Microsoft Visual C++ Compiler and I have copied all the include files from my Aix system to my Window system,

    but encounter many errors due to the differences in their Library References.


    Can anyone help?
    Thanks a lot.
    See more | Go to post

  • Accessing grand parent function when parent window is closed.

    Is this possible?

    I am trying to access function from grand parent window (the main window) in my child popup window but the parent window is closed in this case.

    a.jsp --> grand parent window (main browser window)
    b.jsp--> parent window (pop up window)
    c.jsp--> child window (pop up window)

    I need to call a function from a.jsp in c.jsp when b.jsp is closed.

    Than...
    See more | Go to post

  • NeoPa
    started a topic Database Window Currently Showing

    Database Window Currently Showing

    Does anyone know where I could find the visible status of the Database Window (from code)?

    I have code to hide it specifically, but to hide it, one must first select it, which shows it. This causes it to flash briefly on the screen (if it was already hidden) and frankly, looks unprofessional.
    Code:
    Call DoCmd.SelectObject(ObjectType:=acForm, InDatabaseWindow:=True)
    Call DoCmd.RunCommand(Command:=acCmdWindowHide)
    See more | Go to post
Working...