Problem with giving an edit box focus in sbo2005

Hi
I have created a form in sbo2005 with screen painter.
I ideally want one of the edit boxes to have focus, ie have the cursor in that box. I have included a command -
oform.Items("1").Click ct_Regular
But this doesn't seem to work. The cursor flashes briefly and then disappears.
Can anyone suggest anything please ?
Regards Andy

Hi,
In SBO 2005, you can set the tab-order of the items, the item with the lowest tab order should get the initial focus.
regards
Ad

Similar Messages

  • Has anyone else had problems with their RAW editing window?

    I'm having real problems with my RAW editing window (the one that automaticaly pops up when you open a raw file). I've opened several images, but when I click on the different thumbnails on the left hand side the large preview image in the center doesn't change. Obviously I need to be able to see this to make the required changes.
    Any ideas/help you be greatly appreciated!!!

    Hi Kate,
    I haven't yet been able to replicate your problem. Will you please describe your workflow? Are you simply selecting multiple files from your computer and double clicking to automatically open in Camera RAW?
    Also curious, with all of your images open in the RAW editing window, what happens when you use the arrows near the bottom right? Does your image change?
    Cheers,
    Michael

  • Problem With File Download Dialog Box

    Hi all,
    I have jsp page that allows a user to export oracle data to excel.
    I have these code in my page:
    <%@ page contentType="application/vnd.ms-excel" %>
    response.setContentType ("application/vnd.ms-excel");
    response.setHeader ("Content Disposition",
    "filename=\"historicalrate.xls\"");
    I run the page and it popups a file download dialog box with Open and Save buttons.
    When I click the Save button a Save As window opens with a hr.xsl file name and Microsoft Excel Workbook(*.xls) as save type. It is what I want.
    The problem I have is when I click the Open button on the file download dialog box it displays data in excel format on a browser well. Then I click File > save as on browser's tool bar the Save As window pop up with no file name and a default Text(tab delimited)(*.txt).
    I need the file name and Microsoft Excel Workbook(*.xls) as default save type.
    Any help would be greatly appreciated.
    Please help
    Thanks

    I have the same problem with hui_ling.
    When user click on "Open", Excel start and open excel file correctly but the file name on excel title bar. 'Cause the file name is in Japanese characters. Any one can help me?
    Message was edited by:
    TNTVN

  • Problems with html content in box

    Hi! I have a problem with html content. For example photoswipe. If I import the folder with the index.html of photoswipe as an article all works fine. If I link it trough the folio overlay creator/webcontent) into a box in indesign dps, it stays empty. Seems like it doesnt find the images/paths??
    Klaus

    This sounds familiar. PhotoSwipe doesn't seem to like working in a web content overlay unless the JavaScript and other source files are uploaded within HTMLResources. This means editing your local HTML file so that paths to the JavaScript, images and CSS files begin by pointing to HTMLResources virtual folder (../../../HTMLResources/) before their subfolder and filenames. It's worth a try.

  • Problem with bullets in text boxes

    Hi,
    I haven't seen this problem written up anywhere but I am
    having problems with my text formatting differently in text boxes
    when I've used bullets in the text. I am using Captivate 2.
    So here's what happens:
    If the text caption has a bullet
    anywhere in the body, when I publish my captivate course, the text
    looks like normal 12 pt Arial.
    If there is a text box without any bullets, the text looks
    like it was bolded.
    The next result is that I have two types of body text
    throughout my course.
    I went into every slide and verified that there is no other
    text formatting going on and I did find that Impact was sometimes
    in the same text boxes where I had bullets but I finally got rid of
    all the impact. However, the problem remains. Can anyone help me?
    Thanks,
    Lin

    Hi Lin and welcome to our community
    My guess here is that you are using the Transparent caption
    type. When you do this, the caption anti-aliases the text inside
    and many claim it looks either bold or fuzzy. You have two options.
    1. Use Bullets on all captions. Don't worry, you don't have
    to actually SEE the bullets. Just press Enter a few times and apply
    bullets to one of the blank lines. Then size the caption so the
    bullet part is hidden from view.
    2. Implement a trick discovered by fellow Adobe Community
    Expert Paul Dewhurst. You can see his trick by
    clicking
    here.
    Hopefully one of these works for you... Rick

  • Solved: InDesign CC: Problems with text in text box: text flows around invisible object

    I just upgraded from CS4 to CC. I have two problems with text in some text boxes:
    The text seems to flow around invisible object that I cannot find or delete. It's as if there is a photo or other object behind the text box; but when I press COMMAND-a to select all, I don't see any such object.
    When I move this text box, the layout of the text within changes. For example, when the box is high on my spread, the text flows correctly within the box; but when I move it down, it flows around that hidden other object. For another example, when the box is low on the page, the text starts at the top of the box; but when I move the text box up, the text starts somewhere in the middle of the box.
    I have checked margins of the text box and the paragraph options of the text paragraphs (margins, indents, alignments). They all look OK.
    If I modify the text box, checking the box "Ignore text wrap", then the problem goes away; but then the text also will not flow around a real object that I want it to flow around.
    Solution:
    There were objects in a hidden layer on that one spread. It seems that in CS4 when you "select all" you would also select objects in hidden layers; but in CC it doesn't.

    Arthur, Garry
    Would be great if you could send the files as attachment in an email to [email protected]
    Else, you may post here using these steps: http://forums.adobe.com/message/3994281
    Thanks!
    - Neeraj

  • Problem with applet, popup window and focus loss

    Hi all !
    I've got a problem when my applet lose the focus. Let me explain :
    I've got an applet embed in a jsp page. There are several buttons in it that allow the user to open modal windows.
    The problem comes when the user gives the focus to another application whithout closing the modal window first.
    When he tries to come back to the web page owning the applet (using the task bar), then the modal window stays behind it and blocks any action on the applet.
    Does anyone know how to force the modal window to be displayed in front of the applet, even when the user plays with focuses ?
    Thank's in advance.

    thank you for your help, sils.
    I've written that code :
    * Cr�� le 31 ao�t 05
    package com.scor.apricot.web.rpc.ltnp.applet.listener.ldf;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import javax.swing.JDialog;
    import javax.swing.JPanel;
    public class AppletWindowListener extends WindowAdapter {
         private JPanel panel;
         private JDialog dialogWindow;
         public AppletWindowListener(JPanel panel, JDialog dialogWindow) {
              this.panel = panel;
              this.dialogWindow = dialogWindow;
         public void windowActivated(WindowEvent e) {
              if (dialogWindow!=null && dialogWindow.isShowing())
                   dialogWindow.toFront();
    }Is that right ?
    I don't know how to add the listener, where must I put the addWindowListener method ? It seems that this method cannot be used with a JApplet object.

  • IPhoto problem with email, export, editing...

    Had my iMac upgraded with a new harddrive and Lion at my authorized retailer & service center. All has been good but did not use iPhoto much after the upgrade, but all seemed to be good.
    Recently photographed a family occasion and now I experience the following problems;
    1. After successful import I edit the pictures which leads to numerous crashes, seemingly randomly, but most frequently when jumping from editing one picture to the next.
    2. Share, Email does not work, only a few of the selected pictures are sent, sometimes with a low resolution thumbnail instead of the desired picture. The selection process works normally, but when the mail has been formatted only a few or none picture are inserted, in any of the templates, including classic. The number of selcted photos and their size are reported normal, they just don't show up in the mail itself
    3. Resorting to export to a folder, all of the pictures are exported, however not always with intact changes/edits???
    I have previously never had any major problems with iPhoto up until this version, and am seriously considering ditching it after all the wasted time.
    Any suggestions how to attack this problem in iPhoto 11 & 10.7 Lion?  (I am unable to find any plist etc like in 10.6 and earlier)
    Thanks for any hints and/or tips...

    Hi Larry,
    thanks for your quick reply...
    The harddrive and all user data was transferred by the authorized service center. I able to see and use all the old pictures, so I think (and hope) my pictures were correctly transferred.
    After reading this:
    https://discussions.apple.com/thread/3087683?start=45&tstart=0
    and done minor edits to ALL the NEW (of today) pictures I want, it seems to file, export correctly. I did some additional minor adjustments (exposure, saturation, sharpness, etc) and behold, the export worked ok, including edits like crops, straightenings, etc, that were omitted without the "adjustments"...
    It feels like some proper bugs to me, and will probably look for another more robust and flexible software to do my edits...
    Recommendations?
    Using Picasa sometimes, but read somewhere they use a hack to get to the iPhoto pictures & database, not sure I like that... Maybe I should go Aperture...???

  • Problem with S60 2nd Edition FP2 and mobility pack

    When i run the sample game from mobility pack with the S60 2nd Edition FP2 the bottom part of the phone display seems to freeze and wont refresh. I have that problem with the emulator and with a real phone (6630). Does anyone experienced the same problem? I tried with other platform SDK and it runs ok. There's a screenshot of what happens.....
    http://img297.imageshack.us/img297/9373/s602ndfp2le5.png

    And I must add something else, I can't format the memory card, I have some important applications installed on the memory card... and I don't know how I can move them to phone's memory, a new memory card or take backup...
    I appreciate if someone help me with both problems.
    Click on the Kudos Star, if you find my post helpful!

  • Problem with preview after editing

    I looked around the forum topics for this but I am not even sure what the problem would be called since I am a first time user.
    I have this problem where I add clips fine, and I am able to add text to them and what not by typing the text and then dragging the text thing over the photo I want to add text on and it usually separates it into two photos (1 with text and 1 short one). But.....
    Then I run into problems with playback. At first I can see the little red indicator of where I am in the movie moving with the timeline and showing the seconds changing, but then later on (the further I get into adding clips and production) in the project I will go to play the clip before my edit (with all clips selected so it should play until i it stop) and it will not show the indicator moving and only plays about 2 seconds of the clip before stopping. It's almost like when you only select one clip to play and it stops abruptly after except this doesnt move through the clip at all. I have had to save, close down and re open but now I am at the point where I do that after every change.
    Anyone else had this?
    Tom

    By "rendering", David means that the video footage has to be 're-created' to include the text which you've added. The computer has to rebuild those 'titled' sections of your video bit-by-bit.

  • Problems with downloading OCS single box win32 version

    I'm trying to download OCS single box win32 and seem to have a problem with the disk2 download. (win32_ocs_90411_singlebox_Disk2.zip). The download is finishing with an incorrect size and the result is (of course) that i can't unzip the download.
    The others (disk 1 and 3) are OK.
    Is anyone familiar with this problem???
    Thanks in advance,
    Maarten

    Hi Maarten!
    Try to contact somebody from OTN or Oracle directly and attend them to the problem.
    I never downloaded this version, but it happened to me as well that some software from OTN did not download correctly. Contacting OTN did solve this.
    cu
    Andreas

  • Quicktime 10 problem with Export / Saving Edited Clips

    I can do all the editing, triming, adding of clips using Quicktime Player 10.3 (727.3) but CANNOT use export. I just get an export progress box as seen below. It never advances, only thing is the time estimate continually increases. This was for two clips that were 26 seconds as you can also see in the Movie Inspector Dialog Box. The 2 million+ hours seemed a little longer than I expected. Any suggestions?

    We have solved our problem.
    In fact, opening the Excel file disabling macros we had a sheet with the code.
    Analyzing ths code, we seen that the macro use English reference (R1C1) to the cells and not the French reference (L1C1).
    Frederic

  • Problem with form autofilling every box in column underneath it when I type in one box.

    Hello everyone,
    I am doing an assignment for a summer class online. This summer class requires us to use Adobe Reader to fill out some questions that involve tables and typing. One of the tables is structured in such a way that we must fill in each row with pertinent information relating to the case that we negotiated. The problem is, whenever I fill in a box in a certain row, it will fill in every single box in that same column with the information that I had typed in only one box. Can anyone help me figure out the problem here?

    If I had to guess I would say that the person that created the fields made the first one then copy/pased the addtional fields and did not change the field names. All fields with the same names will auto-fill.

  • Problem with webutil file dialog box when trying to save/open

    Approximately 12 months ago we had this same issue and I think we managed to resolve it with a one off patch. Were getting it on another site now so any info will be much appreicated.
    Basically when using webutil file chooser Client_Get_File_Name to upload/download something to/from the database it works sporadically.
    When we choose a location to upload from or download to. we then click the buttonon the webutil file chooser and the box disapears without doing anything. Sometimes it works ok but i cant find any pattern to it working/not working
    Has anyone else experienced these problems?

    i found it
    patch 6127521
    thanks

  • Problem with Jolt Repository Editing

    Greetings to all,
    I am suffering with a problem.A deficit of knowledge.
    Here it is:
    Our applications are running on Solaris 10 and Tuxedo 11gr1. If i need to add service in Jolt Repository how do I do it?
    All I have access to server is via a Putty Terminal (black screen console) and we have a jolt repository file which I do not understand completely.
    It has lines like this :
    add PKG/GETFLTSCHDFRI01: I think this is a package.
    add SVC/GETFLTSCHDFRI01: I think this is service declaration.
    bt=FML32:ex=1:BT=FML32:vs=3:bp:pf=167772161:po=1:
    pn=DATA:pa=rw:pt=string:ep:bp:pf=167772162:po=1:\
    pn=END_USER:pa=rw:pt=string:ep:bp:pf=167772163:po=1:
    pn=SERVICE_NAME:pa=rw:pt=string:ep:
    What I could interpret/guess is -
    bt - buffer type.
    ex - No idea
    BT - buffer type. why twice?
    pn is parameter name for service GETFLTSCHDFRI01.It has 3 of them.
    pt is parameter type.
    pa - parameter access permissions .
    ep - No idea
    bp - No idea
    pf -  No idea
    po - No idea
    add SVC/.GETSVC:vs=1:ex=0:bt=FML32:bp:
    pn=REPNAME:pt=string:pf=167772161:pa=wr:ep:bp:pn=REPVALUE:pt=string:pf=167772162:pa=rd:ep:bp:
    pn=STATLIN:pt=string:pf=167772163:pa=rd:ep:
    add SVC/.GETREC:vs=1:ex=0:bt=FML32:bp:
    pn=REPNAME:pt=string:pf=167772161:pa=wr:ep:bp:
    pn=REPVALUE:pt=string:pf=167772162:pa=rd:ep:bp:
    pn=STATLIN:pt=string:pf=167772163:pa=rd:ep:
    Now why this "." is before GETSVC or  GETREC -  - No idea
    Is there any way to understand this file completely and manually edit it to add a new service?
    Please help.
    Regards,
    Deb

    Thanks Bob,
    I copied the "jolt" directory from the Unix server (which I can only access by Putty ) in my local windows machine.
    I ran the below from Command Prompt.
    C:\Program Files\Java\jdk1.7.0_45\bin>appletviewer C:\Users\Deb\Desktop\jolt\jolt\RE.html
    The applet popped up but other than "Server" and "Port Number" everything was grayed out.
    I received an warning like :Warning: Can't read AppletViewer properties file: C:\Users\Deb\.hotjava\properties Using defaults. in the first run but not in second run.
    My ubb shows :
    JSL
            SRVGRP=JOLTGRP
            SRVID=1000
            CLOPT="-A -o logs/slog/JSL.out -e logs/slog/JSL.err --
                   -n //unixserver:32799 -m1 -M3 -x10 -T 360"
    I checked port status.
    unixserver:/apps/tuxapps/intserv_dev/config>netstat -na|grep 32799
          *.32799              *.*                0      0 49152      0 LISTEN
    Now when I am trying to connect from the applet putting the
    "Server" as "unixserver"
    "Port" as 32799
    It gives an
    bea.jolt.SessionException :Cannot connect to any //unixserver:32799
    Reason:NwHdlr: Cannot get address by name.
    Could you please suggest what is going wrong?
    Rgds,
    Deb

Maybe you are looking for