ComboBox data

I have a combobox that uses an ArrayCollection to populate
it. I can't seem to get the 'data' from it though. What am I
missing?
I know the ArrayCollection works fine, but when I select the
2 'breeds', it gets populated with nothing.
Here is my comboBox
<mx:ComboBox id="breed1_txt" visible="false"
toolTip="Select the dominant breed of the pet"
dataProvider="{breedTypes}" labelField="breedName" />
Here is my create function when the form is submitted:
public function addPet(e:Event):void {
var petInfo:Object = new Object();
petInfo.petName = petName_txt.text;
petInfo.petType = petType_txt.selectedItem.data;
petInfo.petBreed = breed1_txt.selectedItem.data;
petInfo.petBreed2 = breed2_txt.selectedItem.data;
petInfo.petGender = petGender_txt.selectedItem.data;
petInfo.petAge = petAge_txt.selectedItem.data;
petInfo.petColors = petColors_txt.text;
petDAO.create({petData:petInfo});
petBreed1 and petBreed2 end up empty. Any clues?

"projectproofing" <[email protected]> wrote
in message
news:g9mm3d$q11$[email protected]..
>I have a combobox that uses an ArrayCollection to
populate it. I can't seem
>to
> get the 'data' from it though. What am I missing?
>
> I know the ArrayCollection works fine, but when I select
the 2 'breeds',
> it
> gets populated with nothing.
>
> Here is my comboBox
> <mx:ComboBox id="breed1_txt" visible="false"
toolTip="Select the dominant
> breed of the pet" dataProvider="{breedTypes}"
labelField="breedName" />
>
> Here is my create function when the form is submitted:
> public function addPet(e:Event):void {
> var petInfo:Object = new Object();
> petInfo.petName = petName_txt.text;
> petInfo.petType = petType_txt.selectedItem.data;
> petInfo.petBreed = breed1_txt.selectedItem.data;
> petInfo.petBreed2 = breed2_txt.selectedItem.data;
> petInfo.petGender = petGender_txt.selectedItem.data;
> petInfo.petAge = petAge_txt.selectedItem.data;
> petInfo.petColors = petColors_txt.text;
> petDAO.create({petData:petInfo});
>
> }
>
> petBreed1 and petBreed2 end up empty. Any clues?
selectedItem should already _be_ the data that was used for
the
itemRenderer.
HTH;
Amy

Similar Messages

  • Datagrid ComboBox data repetition

    I have made a datagrid and a column which has a ComboBox
    control which references a fixe length and data array to display
    the dropdown in the grid column. The problemis this array has to be
    repeated for every row of data in the grid.
    Is there anyway to make the drop down array just on list and
    referenced on the dropdown Combox column no matter how many records
    there?

    Hello Greg,
    I think I may have answered with your help my own question:
    I recoded the array as follows (and added a TextInput column
    in the example):
    This way I don't have to repeat the fixed 'aa' array in the
    {lst} with literals.
    Also I didnt understand that the DataGrid can had a different
    dp from the components. Is that right?

  • Obtaining comboBox data

    Hi there,
    I am trying to figure out how to create the selected data in
    a combo box as a variable in my form.
    Here is a part of my code as an example of what I want to do.
    var orderVariables:URLVariables = new URLVariables();
    orderVariables.custName = textName.text;
    orderVariables.custEmail = textEmail.text;
    orderVariables.custPhone = textPhone.text;
    How do I reference my combobox as an entity of
    orderVariables?
    Thanks
    CM

    I really dont know whats wrong with it. Heres the code for my
    send function:
    function sendOrder(event:MouseEvent):void{
    var orderVariables:URLVariables = new URLVariables();
    orderVariables.custName = textName.text;
    orderVariables.custPetName = textPetName.text;
    orderVariables.custAddress = textAddress.text;
    orderVariables.custSuburb = textSuburb.text;
    orderVariables.custPostcode = textPostcode.text;
    orderVariables.custPhone = textPhone.text;
    orderVariables.custEmail = textEmail.text;
    orderVariables.custTagStyle = tagStyle.selectedItem.data;
    orderVariables.custTagColour = tagColour.selectedItem.data;
    orderVariables.custTagSize = tagSize.selectedItem.data;
    orderVariables.custLine1 = textLine1.text;
    orderVariables.custLine2 = textLine2.text;
    orderVariables.custLine3 = textLine3.text;
    orderVariables.custLine4 = textLine4.text;
    var postOrder:URLRequest = new URLRequest("mailOrder.php");
    postOrder.data = orderVariables;
    postOrder.method = URLRequestMethod.POST;
    var loader:URLLoader = new URLLoader();
    loader.dataFormat = URLLoaderDataFormat.VARIABLES;
    loader.load(postOrder);
    gotoAndStop(2);
    My comboBox's are labelled tagSize, tagColour and tagStyle
    Can you notice anything wrong with this? :\
    Thanks for your help

  • Receive combobox data to another frame

    hi,
      I have combobox in frame 2. how can I receive the selected "string"data when I go in frame 3?
    I thing it can't do that. Must I store data in class and I read then when I go in frame 3.

    Create a layer for actionscript and have it extend the full length of your timeline.  Then just decalre a variable in frame 1, name it whatever you like...
    var comboboxVariable;  // if you know the data type, specify that too
    Then that variable will be available anywhere along the timeline.  You can assign it a value in frame 2 when the combobox is used and read its value in frame 3

  • ComboBox Data Grid

    Ok i got the following service below which controls the data
    provider for the data grid. The variable anaLink is in a function
    that everytime when a item is selected from the combobox the link
    changes. But the problem is when i select a item from the list the
    data isn't refreshing in the grid. I refresh the service by the
    following line of code
    this.getAnalytics.send();. But it isn't working am i missing
    something.
    <mx:HTTPService id='getInfo' url='{anaLink}'
    useProxy="false" method="POST">
    </mx:HTTPService>

    Basically i took a look at your example its a little
    different from my code. When a person select a item from the
    comboBox it will change the compid in the url once that is done the
    database will be queryed and the new data will be displayed in the
    grid. Here is the code below.

  • ComboBox data binding

    How do I bind a combo box to a model property? I thought this was going to be a simple thing, but now I'm not so sure. Do I bind the selectionModelProperty? If so, what do I bind it to? The bind method wants a SingleSelectionModel<T>. What is that and how do I relate that to my model property?

    Currenty there is no way to bind the selection property of the combobox because its read-only (correct me if I am wrong). A workaround is to have a changelistener.
    combobox.getSelectionModel().selectedItemProperty().addListener(new ChangeListener() {
                @Override
                public void changed(ObservableValue observable, Object oldValue, Object newValue) {
                    if (newValue != null) {
                        modelProperty.setValue(newValue);
            });

  • Combobox data question

    HI everyone, I'm trying to use COMBOBOX to select what lamp ON, but I want to do it just once, if I try to ON again the same LAMP Labview will show an error message, Is it possible? Thanks

    Duplicate Post

  • How do I get the value of a comboBox item that is in a grid?

    Hi all,
    I have a data grid that has comboBoxes in two of its columns.
    What I need to do is get the values of those bombo boxes when a user highlights the row of the grid NOT when the user uses the comboBox. I understand how to pull the values out once the change handler is invoked on the comboBox, but I'm not seeing a way to get at the comboBoxes that belong to the currently highlighted gridRow.
    I'm sure it's really straight forward, but I'm just not able to find any reference on how it's done. Any help greatly appreciated.

    This code shows how you can do it if you know the dataProvider fields for the ComboBox data.
    If this post answered your question or helped, please mark it as such.
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
       initialize="initData()">
       <mx:Script>
       <![CDATA[
        import mx.events.ListEvent;
          import mx.collections.*;
          private var DGArray:Array = [
             {Artist:'Pavement', Album:'Slanted and Enchanted', Price:11.99, combo1: [1,2,3], combo2: [100,200,300]},
             {Artist:'Pavement', Album:'Brighten the Corners', Price:11.99, combo1: [2,4,6], combo2: [200,400,600]}];
          [Bindable] public var initDG:ArrayCollection;
          public function initData():void {
             initDG=new ArrayCollection(DGArray);
          private function dgChangeHandler(event:ListEvent):void{
           var ac:ArrayCollection = event.currentTarget.dataProvider;
           txt.text = "";
           txt.text += ac.getItemAt(event.rowIndex).combo1 + "\n";
           txt.text += ac.getItemAt(event.rowIndex).combo2;
       ]]>
       </mx:Script>
       <mx:DataGrid id="myGrid" width="350" height="200"
          dataProvider="{initDG}" change="dgChangeHandler(event);">
          <mx:columns>
             <mx:DataGridColumn dataField="Artist" />
             <mx:DataGridColumn dataField="Album" />
             <mx:DataGridColumn dataField="Price" />
             <mx:DataGridColumn dataField="combo1">
              <mx:itemRenderer>
               <mx:Component>
                <mx:VBox>
                 <mx:ComboBox dataProvider="{data.combo1}"/>
                </mx:VBox>
               </mx:Component>
              </mx:itemRenderer>
             </mx:DataGridColumn>
             <mx:DataGridColumn dataField="combo1">
              <mx:itemRenderer>
               <mx:Component>
                <mx:VBox>
                 <mx:ComboBox dataProvider="{data.combo2}"/>
                </mx:VBox>
               </mx:Component>
              </mx:itemRenderer>
             </mx:DataGridColumn>
          </mx:columns>
       </mx:DataGrid>
       <mx:TextArea id="txt" width="100%" height="100%"/>
    </mx:Application>

  • ComboBox  with databinding

    Hi there,
    i got some problems with phtml:comboBox with the attribute “freetext” set. Any manual entered values doen’t show up in my model when using data binding. The selected values work fine.
    I found one posting regarding this problem, but wonder whether there a been a “official” solution from SAP in the meantime. I couln’d not find anything in SAP Notes.
    phtmlb:comboBox & data binding
    How do you work with comboBox – freetext ? How do you get the value manual entered? I case this is not a SAP-bug -> what is this freetext attribute then for?
    I though of creating a solution that works for all comboBoxes without having to know all IDs but I have no idea how to get dynamically the IDs of all comboBoxes and moreover the Get_Data Method doesn’t work here (returns wrong/empty object) although I use the “long ID”.
    View:
    <phtmlb:comboBox id = "SCC2SYNCLASSLOW"
                                     selection         = "//model/SCC_OVERLONGTEXT.SYN_CLASSLOW"
                                     table             = "//f4_model/F4HELP_SYN_CLASS"
                                     nameOfKeyColumn   = "KEY"
                                     nameOfValueColumn = "KEY"
                                     nameOfValue2Column = "VALUE"
                                     behavior           = "FREETEXT"
                                     />
    Handle_Event( ):
      comboBox ?= CL_HTMLB_MANAGER=>GET_DATA( request = request   name = 'phtmlb:comboBox' id = 'ccctrl_sccctrl_ccsearchctrl_SCC2SYNCLASSLOW' ).
    Frustrated I am…Thanks for any help!!
    Stefan.
    6.20 SP49

    Hi
    If you write a Bindable tag and change that variable  it will reflect automatically wherever you assigned that variable. so here the combobox will change whenever you change the array not the inside objects.
    Hope this helps.
    Rush-me

  • Three ComboBoxes Dependent on Each Other - Please Help

    I am trying to figure out how to make the data displayed in three ComboBoxes dependent on each other while not hard-coding business rules in "if" constructs, but instead use an ArrayCollection of invalid combinations.
    After compiling the following code and launching, the "$100.00" item in the Tariff ComboBox will be grayed out and inactive
    because its "valid" field is "false".
    QUESTION: what should be added to this application to support the following use cases of the ComboBoxes:
    1) If the user selects clothes and China in the Product and Source ComboBoxes, the "valid" field for the "$100.00" item in the "tariff" ArrayCollection changes to "true", so the "$100.00" item is black and active. Also, the "valid" field for the "none" item in the "tariff" ArrayCollection changes to "false", so the "none" item is gray and inactive.
    2) If after performing 1) above, the user selects Mexico Source ComboBox, the "valid" field for the "$100.00" item in the "tariff" ArrayCollection changes to "false", so the "$100.00" item is gray and inactive. Also, the "valid" field for the "none" item in the "tariff" ArrayCollection changes to "true", so the "none" item is black and active
    I do not want to hard-code these business rules using if() constructs in ComboBox change handlers. Instead, I want to use the "invalid" ArrayCollection below to enforce whatever invalid combinations are in that AC. This will enable a flexible system.
    I've been wracking my brain on this one so please help.
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
      creationComplete="init();">
      <mx:Script>
        <![CDATA[
          import mx.collections.ArrayCollection;
          import mx.events.FlexEvent;
          /* The items in these ComboBoxes will be grayed out and inactive
             if their "valid" field is "false".
             After launching the application, open the "Tariff" ComboBox
             and notice the $100.00 item is grayed out and cannot be selected.
             QUESTION: what should be added to this application to support
                       the following use cases of the ComboBoxes:
             1) If the user selects clothes and China in the Product and
                 Source ComboBoxes, the "valid" field for the "$100.00" item
                 in the "tariff" ArrayCollection changes to "true", so the
                 "$100.00" item is black and active. Also, the "valid" field
                 for the "none" item in the "tariff" ArrayCollection changes
                 to "false", so the "none" item is gray and inactive
             2) If after performing 1) above, the user selects Mexico Source
                 ComboBox, the "valid" field for the "$100.00" item in the
                 "tariff" ArrayCollection changes to "false", so the "$100.00"
                 item is gray and inactive. Also, the "valid" field for the
                 "none" item in the "tariff" ArrayCollection changes to "true",
                 so the "none" item is black and active
             I do not want to hard-code these business rules using if() constructs
             in ComboBox change handlers. Instead, I want to use the "invalid"
             ArrayCollection below to enforce whatever invalid combinations
             are in that AC. This will enable a flexible system.
          [Bindable] private var product:ArrayCollection = new ArrayCollection([
            {label: "cars", valid: true},
            {label: "clothes", valid: true}
          [Bindable] private var source:ArrayCollection = new ArrayCollection([
            {label: "China", valid: true},
            {label: "Mexico", valid: true}
          [Bindable] private var tariff:ArrayCollection = new ArrayCollection([
            {label: "none", valid: true},
            {label: "$100.00", valid: false}
          [Bindable] private var invalid:ArrayCollection = new ArrayCollection([
            ["cars"],["China"],["$100.00"],
            ["clothes"],["China"],["none"],
            ["clothes"],["Mexico"],["$100.00"]
          [Bindable] private var currProduct:Object = new Object();
          [Bindable] private var currSource:Object = new Object();
          [Bindable] private var currTariff:Object = new Object();
          private function init():void{
            systemManager.addEventListener(FlexEvent.VALUE_COMMIT, sysMgrHandler, true);
          private function sysMgrHandler(evt:FlexEvent):void{
            if(evt.target is ComboBox){
              var tgt:ComboBox = evt.target as ComboBox;
              switch(tgt){
                case cbxOne:
                  if(tgt.selectedItem.valid == false){
                    tgt.selectedItem = currProduct;
                  break;
                case cbxTwo:
                  if(tgt.selectedItem.valid == false){
                    tgt.selectedItem = currSource;
                  break;
                case cbxThree:
                  if(tgt.selectedItem.valid == false){
                    tgt.selectedItem = currTariff;
                  break;
        ]]>
      </mx:Script>
      <mx:Label text="Tariff Calculator"/>
      <mx:Canvas width="{hb.width}">
        <mx:Label text="Product:" x="{cbxOne.x}"/>
        <mx:Label text="Source:" x="{cbxTwo.x}"/>
        <mx:Label text="Tariff:" x="{cbxThree.x}"/>
      </mx:Canvas>
      <mx:HBox id="hb">
        <mx:ComboBox id="cbxOne" dataProvider="{product}" open="currProduct=cbxOne.selectedItem;">
          <mx:itemRenderer>
            <mx:Component>
              <mx:Label text="{data.label}" color="{uint(data.valid==true?0x000000:0xCCCCCC)}"/>         
            </mx:Component>
          </mx:itemRenderer>
        </mx:ComboBox>
        <mx:ComboBox id="cbxTwo" dataProvider="{source}" open="currSource=cbxTwo.selectedItem;">
          <mx:itemRenderer>
            <mx:Component>
              <mx:Label text="{data.label}" color="{uint(data.valid==true?0x000000:0xCCCCCC)}"/>         
            </mx:Component>
          </mx:itemRenderer>
        </mx:ComboBox>
        <mx:ComboBox id="cbxThree" dataProvider="{tariff}" open="currTariff=cbxThree.selectedItem;">
          <mx:itemRenderer>
            <mx:Component>
              <mx:Label text="{data.label}" color="{uint(data.valid==true?0x000000:0xCCCCCC)}"/>         
            </mx:Component>
          </mx:itemRenderer>
        </mx:ComboBox>
      </mx:HBox>
    </mx:Application>

    It seems like you may want another layer of indirection here. Not necessarily another class (that's probably needed, but orthogonal), but it seems awkward that your "valid/invalid" flags are sitting there directly in the combobox data provider ACs.The items themselves aren't really valid or invalid: it's whether they are selectable in the comboboxes based on the state of the entire application. Instead of storing plain Objects in those ACs, I'd suggest something like
    class Validator {
      public var selectedSource:String;
      public var selectedProduct:String;
      public var selectedTarriff:String;
      public var invalid:ArrayList
      public function isValid(type:String,item:String):Boolean {
        // loop over invalid to determine whether this particular item is valid, given the
        // currernt combination of selected items
    class ValidatedItem {
      public var name:String;
      public var type:String;
      public var validator:Validator;
      public function get valid():Boolean {
        return validator.isValid(type, name);
    Then fill your combobox dataproviders with ValidatedItems instead of Objects. You'll need to instantiate the Validator once for the app and inject it into each item (a Dependency Injection infrastructure like Mate or SmartyPants can make this easier). You can use a Singleton instead if that's more your thing (I'm trying to de-Singleton my life).
    I think that you'll need to wire some extra binding to Validator since otherwise ValidatedItem won't update the valid property when the selected items on Validator change, but that's straigthforward.
    Is this the sort of approach you were thinking of?
    Maciek Sakrejda
    Truviso, Inc.
    www.truviso.com
    Truviso is hiring: http://www.truviso.com/company-careers.php?i=87

  • How to display report from SQL query string

    <p>I am a new user at this forum, my name is Muneer.</p><p>I have a doubt please help me</p><p>I am develoing an Institute Management System (Plat form VB.Net 2003), that can add participant details, course details, Account details so and so....</p><p>my problem is i have a VB.net form ,that form include combo box and flex grid.</p><p>when i select a text from combobox, data will be display in flexgrid its ok. but i want same out in Report.</p><p>when i try to make it showing all data please help me asap. how can i pass data to report.</p><p>I am using ADODB.Connection method with Access Database.</p><p>waiting ur valuable reply</p><p>Muneer</p>

    This sample passes ado data to a report.
    [http://diamond.businessobjects.com/node/2052Â | /node/2052]
    Rob Horne
    Rob's blog - http://diamond.businessobjects.com/blog/10</p>

  • How do I use a variable to set movie clip properties?

    I'm building a simple contact page that allows users to
    select a city from a comboBox. I'd like to pass the selected
    comboBox data through a variable that controls a movie clip with
    the same name. (already on the stage)
    locationListener.change = function (loc_obj:Object) {
    var loc_mc = loc_obj.target.selectedItem.data;
    loc_mc._visible = true;
    So far this hasn't worked. I've tested hardcoding the movie
    clip instance name (Atlanta._visible = true) and it works, but I
    can't figure out why using the variable loc_mc won't trigger
    interaction with the movie clip.
    Something simple, I assume. Thanks in advance for any
    help.

    clbeech:
    I tried using your suggestion, but for some reason it doesn't
    recognize it as naming the movie clip instance. I traced the
    variable and confirmed that the correct value (Atlanta) is being
    passed.
    I assume this is because the variable is not declared as a
    MovieClip, but I can't figure out how to convert it inside the
    function.

  • JComboBox value to Color, .. help

    OK below is the relevent sections of code.
              Color RosyBrown = new Color(188, 143, 143);
              Color SaddleBrown = new Color(139, 69, 19);
              Color SandyBrown = new Color(244, 164, 96);
              Color Beige = new Color(245, 245, 220);
              Color Brown = new Color(165, 42, 42);
              Color Burlywood = new Color(222, 184, 135);
              Color Chocolate = new Color(210, 105, 30);
              Color Peru = new Color(205, 133, 63);
              Color Tan = new Color(210, 180, 140);     
              private String[] colorString = {"RosyBrown", "SaddleBrown", "SandyBrown", "Beige", "Brown"};
                   ratsColor = RosyBrown;
                   colorChoice = new JComboBox(colorString);
                   colorChoice.addActionListener(
                            new ActionListener() {
                                public void actionPerformed(ActionEvent e) {   
                                    JComboBox combo = (JComboBox)e.getSource();
                                    ratsColor = (Color)combo.getSelectedItem();
                        );Basically, Im trying to display readable text in the combo box when the user is selecting thier color, then translate that text into the actual java code for the color that is then passed to a drawing on screen to use the new selected color.
    The error im getting is essentially: java.lang.ClassCastException: java.lang.String
    Ive tried a few different ways of getting this to work, but am not having much luck. If anyone could give me a gentle nudge in the right direction it would be appreciated.

    honestly...
    Create your colors and use an array of those Color objects as the combobox data. Then create a custom cell renderer which takes the int RGB value of the color and looks up the color name in a ResourceBundle...
    String name = bundle.getString("color." + Integer.toHexString(color.getRGB()));
    color.112233=RosyBrown
    color.112244=SaddleBrown
    And then put a little color chip next to the color too, so people know what it really is. Or set the background or whatever.

  • UI Automation

    Hi,
    I have a dockable pane in my GUI it looks like the Properties pane in Visual studio 2010 .
    In my dockable pane window i have a toolbar with buttons, I am trying to automate(C++ or C#) it-- from another application - to click it but i am not able to do it. 
    can someone help me out here.
    I used UISpy to get the the automation ID but these buttons are not found in the UISpy tree.
    (i.e. i am not able to get a control over these buttons i tried using SendMessage() and PostMessage() with the Automation IDs but it failed, but it was successful in case of Ribbonbar buttons )
    Thanks
    DJ

    Hi,
    ---"from another application"---
    Meaning I have a MFC Dialog which will begin automation when i click a button. This is like the UISpy tool, where one can automate the controls of another GUI (eg : button Invoke, Enter text in edit box).
    In my GUI i have a dockable Pane, which has a toolbar and list and combobox, I am able to access and set the combobox data but unable to click the button on the toolbar and channge the contents of the list.
    I have uploaded an image of the toolbar in dockable pane in the url below
    http://social.msdn.microsoft.com/Forums/getfile/458889
    This image is from the GUI of VisualStudio 2010 C++ samples which will be available in ur system if VS2010 is installed
    C:\Program Files\Microsoft Visual Studio 10.0\Samples\1033\C++\MFC\Visual C++ 2008 Feature Pack\VisualStudioDemo
    Kindly let me know how to invoke the bool bar button in the tool bar. I tried using the foll code for invoking but didnt work
    IUIAutomationElement *iOkBtnEle;
    IUIAutomationCondition* pNameCondition = NULL;
    VARIANT varProp;
    varProp.vt = VT_BSTR;
    varProp.bstrVal = _T("7345");// 7345 is the ID for the button
    g_pAutomation->CreatePropertyCondition(UIA_NamePropertyId, varProp, &pNameCondition);
    pParent->FindFirst(TreeScope_Children, pNameCondition, &iOkBtnEle); //pParent is an IUIAutomationElement ptr which points to the GUI Window
    IUIAutomationInvokePattern *patternInvoke = NULL;
    HRESULT  res = iOkBtnEle->GetCurrentPatternAs(UIA_InvokePatternId, IID_PPV_ARGS(&patternInvoke));
    if (SUCCEEDED(res) && (patternInvoke != NULL))
               res = patternInvoke->Invoke();
               patternInvoke->Release();
               patternInvoke = NULL;
    It works fine for normal buttons(CButtons) on the CFormView.
    Thanks

  • How To Pre-Create and Deploy A Palm Database With My MIDletApp?

    Hello and thanks in advance for your help.
    I want to create a Java app for Palm (maybe others) that "ships" with a database of pre-loaded information so that the app can lookup data and allow the user to choose records for use in processing. I can see how the app itself can create a new database but I really want to be able to update the database over time without having to re-install the entire application. Seems like this should be easily done somehow but I don't see how.
    Thanks.
    David

    Hi
    Exactly U can use Hotsync Feature OF Palm OS to store some information (ComboBox data/List data etc.) on ur Plam in PDB that can be processed by ur application.Only u need to do is creat ur Application in J2ME and create Required RecordStores (No need to fillit with Data).
    Then Write a Conduit Application (U can choose Java Conduit) to Sync Data Required by Application from some centralize data base and set an Appropriate Flag or Date Status in Database that may help u to schedule next time updataion of info Req by ur Application on Plam.
    Palm user is using Hotsync feature for taking backup and in case of enterprise application for Synchornizing enterprise Data.Synchronization is Both way.
    I hope this may help u.
    if u need further help u can mail me at [email protected]
    Thanks
    Sumit
    I want to create a Java app for Palm (maybe others) that "ships" with >>a database of pre-loaded information so that the app can lookup data >>and allow the user to choose records for use in processing. I can see >>how the app itself can create a new database but I really want to be >>able to update the

Maybe you are looking for

  • I would like to cancel my purchase today   [removed personal info]

    I made a mistake.  I am sorry but need to cancel my purchase today??? Do not know  what i did?  Could you help me? Message was edited by: Beverley Gray

  • Poor raw conversion from Fujifilm X100 .raf format in Lightroom 3 and 4

    I'm seeing very poor results when doing raw conversion from Fujifilm X100 .raf format. Who can I contact about this? Is there anything I can do? See below for what is supposed to be a white curtain, lit by stage lighting. It results in a blown out bl

  • Ipod *totally* freezes while jogging

    Hey, so I am having a big problem with my iPod. Basically, I usually run with my iPod inside at the gym, and when I do so I rest the iPod on a ledge on the treadmill that I run on. However, recently I've gone out running a few times because I decided

  • Can't access Blog

    New computer, Mac Book Pro with latest version of IWeb. Last night I tried transferring information from my old powerbook. Not only was I not successful, but the power book bit the dust. I have backups where I published to folder from my blog, but a

  • SQL*NET 에서 PROTOCOL ADAPTER DEINSTALL (UNIX)

    제품 : SQL*NET 작성날짜 : 1998-11-24 SQL*NET 에서 불필요한 protocol adapters deinstall 하기(unix) SQL*NET 에서 PROTOCOL ADAPTERS 를 DEINSTALL 하려면 다음과 같이 하시면 됩니다 1. ORACLE 계정으로 LOGIN 2. orainst directory 로 에서 ( % cd $ORACLE_HOME/orainst ) 3. installer 실행 ( % ./orainst