User Profile

Collapse

Profile Sidebar

Collapse
Silgd1
Silgd1
Last Activity: Feb 23 '10, 02:31 AM
Joined: Sep 19 '07
Location: Buffalo, NY
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Silgd1
    replied to Python - Pamie "onclick" how to handle
    Read up on and try WinGuiAuto. It should help you get an instance of the popup window and "click" the ok button. brief example of clicking the "Save" button on "File Download" pop-up....

    Code:
    hwnd = wga.findTopWindow(wantedText='File Download')
    saveButton = wga.findControl(hwnd, wantedText="Save",wantedClass="Button")
    wga.clickButton(saveButton)
    Hope this helpe...
    See more | Go to post
    Last edited by Dormilich; Aug 2 '10, 06:21 AM.

    Leave a comment:


  • Silgd1
    replied to Combobox get() not returning selected value
    I would think it should be...



    Just a thought....
    See more | Go to post

    Leave a comment:


  • Silgd1
    replied to Closing an excel application
    Closing an excel application

    I found out that you must do the following:

    Code:
    xlApp.Visible = 0
    del xlApp
    you must make x1App.Visible=0 before you use del x1App, otherwise EXCEL.EXE remains in memory.
    See more | Go to post

    Leave a comment:


  • Silgd1
    started a topic Closing an excel application

    Closing an excel application

    Hi All....

    I'm using python 2.4, Win XP Pro v.2002 sp3, and I use pyscripter 1.9.9.2 as my editor.

    I have written code to open an existing excel file and grab some data. The problem I am having is closing down the excel application. Here some "bits" of the code I am using:

    Code:
    xlApp = Dispatch("Excel.Application")
    
    xlApp.Workbooks.Open(Filename = path+fname)
    ...
    See more | Go to post

  • Silgd1
    started a topic process check before visual jsf page loads
    in Java

    process check before visual jsf page loads

    Hi All.....

    I have written a method in a java class that accesses the mysql backend db to check if a process is still running. If the process is still running, a JOptionPane is produced informing the user of this and offers an <ok> option(to check the process status again) and a <cancel> option(to redirect the user to the homepage). If the process is completed, I want the page to just load as normal. I want this method...
    See more | Go to post

  • Silgd1
    replied to SendKeys automation
    Hey all......

    The problem was with the XP pro sp3 update. You can google a fix for this. It makes changes to the terminal service dll, and makes a few registry changes. Now we can have multiple users running concurrent sessions.
    See more | Go to post

    Leave a comment:


  • Silgd1
    replied to SendKeys automation
    Thanks Micmast......

    I'm going to try to have "scheduled tasks" run the app in the foreground..... if that's possible.

    Silgd1
    See more | Go to post

    Leave a comment:


  • Silgd1
    started a topic SendKeys automation

    SendKeys automation

    Hi All....

    I am using python 2.4. I have a python script on an xp machine. This machine is on a network, and is dedicated to running python scripts. I use remote desktop to access the machine thru the network.

    I have a script on this machine which uses Cpamie and SendKeys to navigate a website. I use "from SendKeys import *"

    Here is the problem. I have the script automated to run, using windows'...
    See more | Go to post

  • Silgd1
    started a topic email attachment in python

    email attachment in python

    Can anyone please shed some light on how to name an attachment in an email. I am sending out an email with an attachment that is being named using the default "ATT00016.t xt" format. I want to actual apply a name to the attached file. I haven't found much on google. Any help would be greatly appreciated. Thanks
    See more | Go to post

  • Silgd1
    started a topic progress bar in netbeans 6.1
    in Java

    progress bar in netbeans 6.1

    Hi All.....

    I am using netbeans 6.1 to create a web application(vis ual web jsf pages). I have a heavy task I need to run, so I run the task in a separate thread which is started from a button_action. Once the button is clicked, it sets visible a woodstock component progress bar(Indetermina te) to show the heavy task is running. The problem I am having is try to get the progress bar to "disappear" once the heavy task has completed...
    See more | Go to post
    Last edited by acoder; Dec 1 '08, 06:35 PM. Reason: Moved to Java forum

  • Silgd1
    started a topic progress bar from a separate thread in netbeans
    in Java

    progress bar from a separate thread in netbeans

    Hi All.....

    I am using netbeans 6.1 to create a web application(vis ual web jsf pages). I have a heavy task I need to run, so I run the task in a separate thread which is started from a button_action. Once the button is clicked, it sets visible a woodstock component progress bar(Indetermina te) to show the heavy task is running. The problem I am having is try to get the progress bar to "disappear" once the heavy task has completed...
    See more | Go to post

  • Silgd1
    started a topic unchecking a checkbox in a visual web jsf page
    in Java

    unchecking a checkbox in a visual web jsf page

    Hey All...

    I have visual web jsf page, developed in netbeans 6.0, and it has a layout panel which contains three(3) checkboxes of the woodstock component variety. If a user checks one of the checkboxes and then decides to check another, I want the previously checked checkbox to become unchecked. Is this possible?? Please provide some example code if it is.

    Thanks...

    Silgd
    See more | Go to post

  • Silgd1
    started a topic Get Value from a comboBox as text

    Get Value from a comboBox as text

    Hey All;

    I have a form with a ComboBox. I populate the ComboBox with the following query:

    Code:
    SELECT [customers].[id], [customers].[name] FROM customers ORDER BY [customers].[name];
    This query populates the comboBox with all the customer names from the customer table. I want to be able to select a customer from the comboBox and pass it as a parameter to another query, but what I keep getting is the customers.id...
    See more | Go to post

  • Silgd1
    started a topic passing parameters from visual web jsf to a servlet
    in Java

    passing parameters from visual web jsf to a servlet

    Hi All,

    I am trying to pass parameters from a mutiple selection listbox contained in a visual web jsf page to a servlet. I am using netbeans 6.0.1, and already have a method written in the java portion of the jsf page to get the selected item from the listbox and return them as a string. An example of the returned string looks like this '(8, 10, 11)'. I need to pass the string to a servlet where they will be used by a method in another...
    See more | Go to post

  • Nevermind everyone....fig ured it out.......thank s
    See more | Go to post

    Leave a comment:


  • I added the tags, but didn't seem to work
    See more | Go to post

    Leave a comment:


  • Here is the code from the "view source" in the browser.

    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xmlns:wairole="http://www.w3.org/2005/01/wai-rdf/GUIRoleTaxonomy#" xmlns:waistate="http://www.w3.org/2005/07/aaa">
    ...
    See more | Go to post

    Leave a comment:


  • how to produce a submenu from an onMouseOver on a hyperlink in a jsp fragment

    Hey All....

    I am creating web page using Netbeans 6.0. I use A jspf (java server page fragment) that is included in most of the other pages. There are several hyperlinks on the jspf that navigate to other pages. I want to install the ability to onMouseOver the hyperlinks on the jspf to produce submenus that will navigate to other pages. I know that in Netbeans I can go to the properties of the hyperlinks and fill in the javascript...
    See more | Go to post
    Last edited by acoder; Jul 2 '08, 06:06 PM. Reason: fixed code tags

  • Silgd1
    replied to What is your OS and Python Version
    OS: Win XP Prof 2002

    Using Python 2.4

    IDE is Pyscripter 1.7.2
    See more | Go to post

    Leave a comment:


  • I figured it out. I had to do the following:

    Code:
    br.form.action="the wanted action"
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...