Dynamic Input field creation - issue with bindValue in loop

Hello,
I am creating context node elements at runtime. My node looks like this -
LocalNode
  Question
  Answer
for(int i;i<wdContext.nodeLocalNode.size();i++)
wdContext.nodeLocalNode().setLeadSelection(i);
  IWDTextView TV1 = (IWDTextView)view.createElement(IWDTextView.class,"TV"+i);
  TV1.setText(wdContext.currentLocalNodeElement().getQuestion());
   mainGrp.addChild(TV1);
   IWDInputField IP1 = (IWDInputField)view.createElement(IWDInputField.class,"TE"+i);                             
  IP1.bindValue("LocalNode.Answer");
   IP1.setValue(wdContext..currentLocalNodeElement().getAnswer());
   mainGrp.addChild(IP1);
Please note: Question column is the textView and Answer column is the input field
The output should be as follows-
Question               Answer
Header                  None
How Many             7
Comments             Maybe valid
Do you agree        Yes
Although the text view displays correctly, the input field only shows the last record value and the output currently displays as follows-
Question               Answer
Header                   Yes
How Many             Yes
Comments              Yes
Do you agree         Yes
What am I doing wrong here?
How can I bind the corresponding values to the input field in a loop?
Regards,
Nisha

Hi,
Could you please provide the code .
Regards,
Sunil.

Similar Messages

  • Add Dynamic Input field

    Hi...Experts am new in ABAP Webdynpro. Actually my application is Add Dynamic Input Field in webdynpro. Already One lable, one Input field is there and I add one more button. When I click that button Dynamically Adding same like existing lable and inputfield.Can anyone tel me how to resolve my problem.

    Hi..Yugesh
    U will try this,Definitly Ul get Answer.
    For Dynamically creating Attribute
    DATA : rootnode_info TYPE REF TO if_wd_context_node_info,
    dyn_node_info TYPE REF TO if_wd_context_node_info,
    dyn_node TYPE REF TO if_wd_context_node.
    DATA : dyn_attr_info TYPE wdr_context_attribute_info.
    dyn_attr_info-name = 'NAME'. Attribute Name
    dyn_attr_info-DEFAULT_VALUE = 'Prakash'. +Iam Setting Default value of attribute,u can change as per ur requirement +
    dyn_attr_info-type_name = 'ZDE_NAME' . Data Element(CHAR20) ( Type Of Attribute )
    rootnode_info = wd_context->get_node_info( ).
    CALL METHOD rootnode_info->add_attribute
    EXPORTING
    attribute_info = dyn_attr_info.
    This will create a attribute at run time...
    For Dynamically creating Input Field
    DATA lr_container TYPE REF TO cl_wd_uielement_container.
    DATA lr_input TYPE REF TO cl_wd_input_field.
    DATA lr_table TYPE REF TO cl_wd_table.
    DATA lo_nd_sflight TYPE REF TO if_wd_context_node.
    DATA lr_button TYPE REF TO cl_wd_button.
    DATA lr_grid_data TYPE REF TO cl_wd_grid_data.
    DATA lr_flow_data TYPE REF TO cl_wd_flow_data.
    DATA lr_matrix TYPE REF TO cl_wd_matrix_head_data.
    +Note : Before that change the Layout of ROOTUIELEMENTCONTAINER to MATRIX LAYOUT +
    navigate from <CONTEXT> to <SFLIGHT> via lead selection
    lr_container ?= view->get_element( 'ROOTUIELEMENTCONTAINER' ).
    CALL METHOD cl_wd_input_field=>new_input_field
    EXPORTING
    bind_value = 'NAME' + attribute which i created above+
    id = 'INPUT1'
    RECEIVING
    control = lr_input.
    lr_matrix = cl_wd_matrix_head_data=>new_matrix_head_data( lr_input ).
    lr_input->set_layout_data( lr_matrix ).
    CALL METHOD lr_container->add_child
    EXPORTING
    index = 1
    the_child = lr_input.
    ENDIF.
    Code it in WDDOMODIFYVIEW...

  • Issues with nested for loops - saving images from a camera

    Hi all,
    I've written a vi. to capture a specific number of images ('Image No') and save these images, outputted to a folder of my choice.  Each image is identified sequentially.  However, I wish to do a number of iterations ('Run') of this capture sequence, such that the filename of each image would be 'Filename (Run)_(Image No).png', e.g. run 5, image 10 would be 'Filename 5_10.png'.  I have tried a nested for loop for this but I receive an error 'Asynchronous I/O operation in progress' (I've attached a printscreen).
    Can anyone assist me in solving this problem? I preiously posted this in machine Vision but got no response (http://forums.ni.com/t5/Machine-Vision/Capturing-image-sequences-issues-with-nested-for-loops/m-p/19...).  Please find attached my vi.
    Kindest regards and thanks,
    Miika
    Solved!
    Go to Solution.
    Attachments:
    Labview problem.jpg ‏3841 KB
    Image sequence save to file.vi ‏48 KB

    Miika,
    the problem is not the filenam, but the name of the folder (AHHHHH!). You try to create the same folder in the outer for loop over and over again.... (it is the error message above the '======', not below )
    Norbert
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • F4 Help for a dynamic input field( class CL_DD_INPUT_ELEMENT)

    Hi all,
    I am programming a dynamic document which has several input fields on it. I want to program F4 helps for these fields, does anyone have an idea how I can do that?
    I have the idea to program a button(class CL_DD_BUTTON_ELEMENT) next to the input field and manually program an F4 help in the event handler of the button. But I do not know how I can handle pattern entries with '*' etc. in the input field. Is there a function module which could give me an F4 list(F4IF_INT_TABLE_VALUE_REQUEST could not be used, because it needs a dynpro field as a return field, which we do not have in this case).
    Kind Regards,
    Sükrü

    hi
    good
    SELECTION-SCREEN DYNAMIC SELECTIONS FOR NODE|TABLE node.
    allows you to define further nodes for dynamic selections. If the node has type T, you can use TABLE instead of NODE. The user can then decide at runtime the components of the node for which he or she wants to enter selections. Dynamic selections require special handling in the database program
    F4 HELP->
    AT SELECTION SCREEN ON VALUE REQUEST FOR P_SACHA.
        PERFORM VALUES_SACHA.
    THANKS
    MRUTYUN^

  • Interactive form -Dynamic input fields

    Hi,
    I am working with an interactive form.
    After Userinputs a InputField1 it should populate Inputfield2 dynamically.
    Lets Say if I enter a 01/01/2009 in input field1, second input field should be a week after date 01/07/2009.
    How do we handle this ?
    rgds
    Vara

    Hi,
    Select the InputField1 and goto Script Editor and select the Event type: "Change" and Language as "FormCalc" and in editor write the below code:
    InputField2.rawValue = Num2Date(IsoDate2Num($.rawValue)+7,"DD/MM/YYYY")
    Based on your requirement change the display pattern of both the date fields in the object pallette.
    Note: Make both the fields as Date/Time Fields and not TextFields.
    Regards
    Pradeep Goli

  • Session creation issues with DS3.2

    We are using BODS 3.2 for development. We are aware that a newer version of DS has been released quite a long time ago but due to some reasons we are still using DS 3.2.
    We are facing some session creation issues. We are using Teradata and Oracle as source and extracting\updating data using some SQLs in script tasks. SQLs are targeting huge amount of data. We executed a job and checked on the servers, sessions were created on the databases. Job kept on executing for long time and was not getting completed, there was no error also. After waiting so long, I checked on Database server and found that session was lost for these SQLs on Database servers. We are able to create a successful connection using Data Stores.
    Please suggest something, Why the sessions are not getting lost on the database servers?.
    Thanks & Regards,
    Gaurav Bansal

    ginger_11 wrote:
    Hi...I'm new to the forum.
    2 of the same phones in my household having similar issues since OS upgrade. 
    -Text automatically going to MMS when sending pics and the pics won't send.  1 phone freezes, the other acts like its sent but not sent-this phone won't load emailed pics either.
    -Keep getting notifications that passwords need updated for email accounts.
    -Facebook app won't load on 1 phone-tried deleting, pulling battery and re-installing.  Still getting "session re log-in required" but there is nowhere to load the log-in info under accounts. Getting the same message on the other phone but the app is still listed under accounts so am able to log in.
    -Both phones are randomly re-starting. Multiple times over past 3 days. 
    Any known issues like these?
    There must be some common factor why both phones are having the same problem.
    With the 10.2.1.537, the only problem I had was a few contacts merged and surnames were repeated.
    I haven't noticed any difference with the latest upgrade.
    Maybe a security wipe and restore contacts and email then one app at a time.

  • Dynamic input fields

    I need to dynamically generate the input fields based on the results returned from the query. How do I name each input fields differently.
    Eg:-)
    Say I have 5 rows returned from EMP table. I need to generate 5 input fields to change their names??
    How does the XSL script looks like??
    null

    First one - javascript good.
    Second one - take user to another page.
    [JavaBean and Servlet are not interchangable, JSP and Servlet are]

  • Playlist creation issues with Centrale

    Hello,
    I've had a Zen X-Fi 32gb for over a year and I love it. However, I have consistently had issues with creating playlists using Centrale. Frequently, when I go to add a song to an existing playlist or a new playlist,Centrale adds the song to a different playlist than the one I intended. I estimate that this happens with about 50% of my playlists. Does anyone else experience this and has anyone figured out how to correct this? It's maddening!
    Thanks,
    Jenn

    i've heard similar issues as yours although i'm sorry i cannot be really of help because i do not use it now.
    http://storeyourpicture.com/images/s...lectronics.jpg

  • Dynamic crystal report generation - issues with column headings

    Hi All,<br>
    I'm trying to generate a crystal report dynamically based on a "result set" data(Query: select REPORT_ID, REPORT_NAME, REPORT_DESC, RPT_FILE_NAME, LOCATION from IRS_REPORT_DETAILS). I'm able to generate the report run time, But the report is without columns heads. I would like to include the column headings as well. <br><br>
    I searched the API(RAS) and found that there is a 'add(java.lang.String fieldName, java.lang.String headingText) " method present in "ReportObjectController" using which we can add the headings.<br><br>
    ReportDefController reportDefController = clientDoc.getReportDefController();
    ReportObjectController reportObjectController = reportDefController.getReportObjectController();
    reportObjectController.add( "{Table.Field}", "FieldName" );
    <br><br>
    I'm facing problems in using this code. When trying to use this function for my fields(Ex: reportObjectController.add( "{ IRS_REPORT_DETAILS.REPORT_ID}", "Report ID" );) it is giving me the following error:<br><br>"com.crystaldecisions.sdk.occa.report.lib.ReportSDKGroupException: The field was not found.---- Error code:-2147213310 Error code name:fieldNotFound"<br><br>
    <b>The following is my dynamic crystal report generation code:</b><br><br>
    public ReportClientDocument execute(String repName, String query) {
              ReportClientDocument boReportClientDocument = null;
              try {
                   boReportClientDocument = new ReportClientDocument();
                   boReportClientDocument.newDocument();
                      // Add a table based on the given Resultset to the report.
                   dbConnResultSet mySampleResultSet = new dbConnResultSet();
                   //mySampleResultSet.execute(query);
                   boReportClientDocument.getDatabaseController().addDataSource(
                             mySampleResultSet.execute(query));
                   IReportSource test = boReportClientDocument.getReportSource();
                   // Access all the database fields
                   DatabaseController databaseController = boReportClientDocument
                             .getDatabaseController();
                   IDatabase database = databaseController.getDatabase();
                   Tables tables = database.getTables();
                   ITable table = (Table) tables.getTable(0);
                   int NO_OF_FIELDS = table.getDataFields().size();
                   int LEFT_POSITION = 200;
                   // Add all the database fields to the report document
                   for (int i = 0; i < NO_OF_FIELDS; i++) {
                        IField field = table.getDataFields().getField(i);
                        FieldObject fieldObject = new FieldObject();
                        fieldObject.setFieldValueType(field.getType());
                        fieldObject.setDataSource(field.getFormulaForm());
                        IReportObject rep = (IReportObject) fieldObject;
                        IObjectFormat objformat = rep.getFormat();
                        objformat.setEnableCanGrow(true);
                        objformat.setHorizontalAlignment(Alignment.from_int(1));
                        rep.setFormat(objformat);
                        rep.setLeft(LEFT_POSITION);
                        rep.setWidth(1000);
                        LEFT_POSITION = LEFT_POSITION + 1000 + 50;
                        ISection section = boReportClientDocument
                                  .getReportDefController().getReportDefinition()
                                  .getDetailArea().getSections().getSection(0);
                                   //***************** Data being added to the report here, But headings are not added*****************
                        boReportClientDocument.getReportDefController()
                                  .getReportObjectController().add(rep, section, i);
                   boReportClientDocument.createReport();
                   /*Some report saving code is present down*/
              } catch (ReportSDKException ex) {
                   ex.printStackTrace();
              } catch (Exception ex) {
                   ex.printStackTrace();
              return boReportClientDocument;
    <br><br>
    appreciate your help.

    IField field = table.getDataFields().getField(i);
    Here you are getting the first field in the array.  This may not be the field you want to add since we aren't sure how the arrays are ordered when retrieving fields from the report.  It is better to retrieve the fields with the findObjectByName method, thus ensuring you are retrieving the field you want to add to your heading.

  • Dynamic DNS updates and issues with re-imaged / replaced machines with the same computer name

    Our AD team gets asked frequently to delete bad DNS entries because a computer was replaced or VDI was re-created, and when it was joined to the domain it had the same computer name but different SID, so the DNS entry for that computer can no longer be updated
    to a new IP address because the new computer doesn't have rights to update that object in DNS.
    I recently saw a resolution to this was to set the security for DNS to allow updates from "Domain Computers" as described in the KB below.
    http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=2005210
    Has anyone done this?  Any negative implications from this?
    Thanks

    Granting all domain computers write access to all records in the dns zone does solve the problem. On the negative side, DNS security is reduced significantly. For example, any user with admin rights locally on his/her computer will be able to sabotage
    services in your domain by deleting or changing host records of domain controllers, servers or other client computers. 
    A more secure solution in this case will be configuring DHCP servers to update DNS on behalf of the client and granting DHCP servers appropriate access to DNS zone. Take a look at
    Configuring Secure Dynamic Update for more info.
    Gleb.

  • Dynamic input fields for Doc Props in Batch Mode; Acrobat Pro 9

    I'm using Acrobat Pro 9.  I'm looking for a way for Acrobat to automatically fill/replace the Title and Subject fields of the document properties with the file name of the PDF it is processing during batch mode.  Currently I have this step set to interactive and must type the name in for each file as it is processed.  Is there a script I can use? A macro? Heck! A Hack? It would literally take weeks off of my monotonous work load as the file names are long and there are thousnds of them to be processed.
    Thanks,
    Photonogon

    If you want the file name with the path, you could add the following JavaScript:
    title = path;
    subject = path;
    If you just want the file name:
    var filename = path.split("/").pop();
    title = filename;
    subject = filename;

  • Field order issue with Avid codec

    Is there some way of setting the field order of the source for Encore DVD 2. Given the problems I experienced with ProCoder I decided to encode a project using the inbuilt Main Concept encoder.
    On the interpret footage menu I can correctly set the aspect ratio but not the field order.
    Unfortunately Quicktime does not seem to be passing on the correct field order to the Main Concept encoder everytime.
    I have had one encode using a preset I created that worked perfectly - I then copied that preset and added a crop and scale to get rid of some VIT (out of essential but viewable on the customers replay system) and everything was field muddled.
    I can see how you can set the output field order but no way of setting the source field order. Transcoding on automatic had the same jumbled field effect.
    BTW these were full Quicktimes not refs

    Probably - although it is such a small re-scale, that if the scaling algorithm is even half-way decent the result should be fine. This is Digibeta originated footage.. in fact the result when I re-worked this in ProCoder was excellent.
    I just wanted to avoid having to place a mask over 8 different sequences amounting to 50 minutes in length, as anything you then export would result in a full render (even though the Avid would play it in real time).
    I guess I'll have to seriously look at my workflow - everything used to just work beautifully - Avid PAL codecs all UFF except for AvidDV LFF; now I keep getting a weird progressive looking result with the new Avid 1:1 10bit codec even though the source is interlaced UFF and recently I rendered an Avid DV export with all settings correct (Source LFF Target UFF) and it ended up jumbled. I had to deliberately set the source to UFF. I do think the culprit is QT 7 as all these problems seem to have started from the switchover from QT6+, but I'm not certain.

  • Auto-user creation issue with OS10.6 clients

    We're having an issue where if a user is created via Workgroup Manager (LDAP) and matches the local user's account credentials on their Mac (or possibly not) it will automatically add iCal calendars and things of that nature – i'm pretty sure i've seen this dialogue when creating a new account, it prompts whether you want Mac OS X to auto configure things for you. My client hasn't mentioned they've seen this dialogue but it rings in my mind. Does anyone have any idea how to disable this feature via the Server? It seems only related to 10.6 clients and servers. It is causing clashing of calendar issues, that don't particularly work either. Many thanks.

    Bump.

  • Block creation issue with new entity and datasource

    The below calculation script that will not create blocks. This is just one of the formula for one cost account. the formula repeats similarly for other cost accounts. When ran it won't create blocks so #missing data. I even tried switching the "AccountCenter" (account dimension dense) and use "DS" (datasource dimension sparse) instead but it runs a lot longer and causes delays in any other calc script that runs after that. I have tried lock and send from excel smart view for those blocks only and  it works the first time the script is run. But every time after the first time the script runs forever and never ends. i had tried set createmissingblock on but that just slowed down everything.
    FIX ("Jan":"Dec", @RELATIVE(Entity1, 0),  @RELATIVE(Entity2,0), "P_PRojects", @RELATIVE(Project1",0),"Actual", &CurrFcst, &CurrFcstVersion, FY15:fy21)
    "AccountCenter"
    @CALCMODE(BLOCK);
    IF (@ISMBR (@RELATIVE("ParentAccountCenter",0)) AND @ISMBR(@RELATIVE("ParentProject",0)) AND @ISMBR ("DS"))
    IF((@ISMBR(&FcstStartMo:"Dec") AND @ISMBR(&FcstYear1) AND @ISMBR(&CurrFcst)) OR (@ISMBR(&FcstYear2:&FcstYear7) AND @ISMBR(&CurrFcst)) OR (@ISMBR(&CurrMth) AND @ISMBR(&CurrYr) AND @ISMBR("Actual")))
    "AccountCenter"=1AccountPct->RetailFP&A*AccountCenterPct->RetailFP&A*AccountCenterAgregate Pct->"RetailFP&A"*("DS_ALL"->"P_Cost"->P_Projects-"DS_ALL"->"722020"->P_Projects-"DS_ALL"->"722200"->P_Projects-"DS_ALL"->"562040"->P_Projects);
    IF (@ISMBR(@RELATIVE("otherEntity",0)))
    @MEMBER(@SUBSTRING(@NAME(@CURRMBR("Entity")),11,24)) = @MEMBER(@SUBSTRING(@NAME(@CURRMBR("Entity")),11,24)) + @CURRMBR("Entity");
    ENDIF
    ENDIF
    ENDIF
    ENDFIX

    Account (dense)
    Period (dense)
    Data Source (sparse)
    Entity (Sparse)
    Project (Sparse)
    Scenario (Sparse)
    Version  (Sparse)
    Year (Sparse)
    EntityFunc Attribute
    Members
    Account (dense) - "AccountCenter"(level1),  "AccountCenter"(level0), 1AccountPct, AccountCenterPct, AccountCenterAgregate Pct, P_Cost", "722020", "722200", "562040"
    Data Source (sparse)- DS, DS_ALL
    Entity (Sparse)- Entity1, Entity2
    Project (Sparse)- RetailFP&A, P_Projects
    FIX ("Jan":"Dec", @RELATIVE(Entity1, 0),  @RELATIVE(Entity2,0), "P_PRojects", @RELATIVE(Project1",0),"Actual", &CurrFcst, &CurrFcstVersion, FY15:fy21)
    "AccountCenter"
    @CALCMODE(BLOCK);
    IF (@ISMBR (@RELATIVE("ParentAccountCenter",0)) AND @ISMBR(@RELATIVE("ParentProject",0)) AND @ISMBR ("DS"))
    IF((@ISMBR(&FcstStartMo:"Dec") AND @ISMBR(&FcstYear1) AND @ISMBR(&CurrFcst)) OR (@ISMBR(&FcstYear2:&FcstYear7) AND @ISMBR(&CurrFcst)) OR (@ISMBR(&CurrMth) AND @ISMBR(&CurrYr) AND @ISMBR("Actual")))
    "AccountCenter"=1AccountPct->RetailFP&A*AccountCenterPct->RetailFP&A*AccountCenterAgregate Pct->"RetailFP&A"*("DS_ALL"->"P_Cost"->P_Projects-"DS_ALL"->"722020"->P_Projects-"DS_ALL"->"722200"->P_Projects-"DS_ALL"->"562040"->P_Projects);
    IF (@ISMBR(@RELATIVE("otherEntity",0)))
    @MEMBER(@SUBSTRING(@NAME(@CURRMBR("Entity")),11,24)) = @MEMBER(@SUBSTRING(@NAME(@CURRMBR("Entity")),11,24)) + @CURRMBR("Entity");
    ENDIF
    ENDIF
    ENDIF
    ENDFIX

  • Issue with Motion Menu looping in CS6

    Greetings all!  I have been troubled with a recurring issue in a project I've been working on for a while where my Main Menu (the only one I have with a moving background) will not loop correctly.  I am not an Encore veteran so there may be something simple that I'm doing wrong and just haven't caught yet... or perhaps this is some weird bug, I'm not sure.  Here is what I've set up and the problem I'm having:
    My Main Menu has 4 buttons: one goes to a primary video and the others are 3 submenus... all submenus work fine and can link back to the Main Menu without issue and when the Main Menu first loads, it also works fine with the video in the background playing normally.  The primary video linked from the Main Menu also returns to the Main Menu as its End Action.  My problem arises when the Main Menu is allowed to reach the end of its video and loops back to the beginning again before navigating away to another part of the disc.  When it loops, the background video plays all the way through a second time like you would expect, however the menu is no longer interactive and no buttons can be pressed (the highlight also disappears on the second loop).  Following the conclusion of the second loop, the Main Menu doesn't loop a third time but rather jumps randomly to about chapter 2 or 3 of the primary video!  I have definitely not set it to do this.  I was not sure what to do about the End Action of the Main Menu itself, as the "Motion" tab of the Menu's properties has a drop-down for looping the motion part... thus so far I have the End Action set to "Main Menu: Default".  The motion background video is 45 seconds long and I have tried messing with the loop settings under the Motion tab, but it hasn't seemed to make much of a difference, it still breaks.  Just for clarification, this is an error which I didn't notice right away because it appears to loop through the menu a second time normally, but the error occurs after the first play of the motion menu.  Also, it happens both in preview and when I burn it to a disc.
    If anyone else has experienced an issue like this or happens to know what I did wrong, please let me know so I can finally get this DVD project over with!  I would be most grateful!  Thank you!

    Project corruption most frequently occurs because one or more changes are made and Encore gets "confused." But we rarely know why some such changes behave correctly and others do not.
    If you must change an asset use a different name, never ever simply overwrite.
    This just may be the issue then... Using Adobe's fancy "Dynamic Link" thingy I did edit a few assets after importing them into Encore.  Sadly, I think Encore is definitely confused by this as now every time I open my project it prompts me to re-import one of the assets because it detected "changes" when in fact I have not changed it more than once and it is just trying to re-import the same thing over and over.  I really wish I'd known to take these measure beforehand as I'm not sure how long it'll take now to rebuild the project completely, but I suppose I have no other choice if I want a working menu...  wish me luck!
    I'd like to note, however, that the asset that it always prompts me for is NOT related in any way to the Main Menu that is causing problems.  It's an asset linked to from a different submenu.  Also, I had planned everything out first, but as you might expect, little hiccups appear along the way and things need to be tweaked to have them work the way you want.  Or maybe you think to add something later that you hadn't thought of before, it actually happens pretty often.
    Still, it seems like Adobe is trying to promote the easy manipulation of assets within projects with the Dynamic Link feature.  I really hate how these softwares do not even work the way they should... and yet Adobe charges people insane amounts of money for them.
    Is there any good DVD authoring software that isn't so temperamental?  I apologize if this isn't the appropriate place to ask... just curious for the sake of my own sanity.

Maybe you are looking for

  • Use of Vendor and Customer in 'Define Shipping Data for Storage Location"

    Under the stock transfer order configuration, there is a IMG step <b>"Define Shipping Data for Storage Location".</b> In this at storage location level, we can assign, sales org/distribution channel, division and VENDOR and CUSTOMER to storage locati

  • Bridge CS4 / Flash Web Gallery

    Hi! I'm trying to create a web gallery in Bridge CS4. If I save to disk, then it'll run fine locally, but once uploaded it won't any more. No idea why. It used to work, and as far as I know, I altered *nothing*. Here is one that did work: http://www.

  • Scope and Objectives of making java swing scientific calculator

    I am going to write code for java swing scientific calculator..... can any body help me to write scope and objectives of this project.... please please :-(

  • P67A-GD55 can't access bios.

    Had problem earlier to access bios using an msi p67a gd43, today i changed in to a p67a gd55 and i have the same problem. When i start it counts "98","99","A3" and then i press ALT and it just locks saying "starting setup". I'm able to boot in to win

  • HTML comment replication

    We recently upgraded from RH5 to RH7 and I am running RH version 7.00.145 on my machine. After upgrading, we found there were problems with em dashes and en dashes, in that they displayed as &emdash; or &endash in our output. We corrected this with a