How do I serialize an array of custom objects?

I need to serialize this array:
public class MyData
   public Triplet[,] MyArray = new Triplet[12, 12];
   ...etc...
where:
public class Triplet
   public Int16 X;
   public Int16 Y;
   public Int16 Z;
   public bool Modified;
I get this error:
"Cannot serialize object of type Triplet[,]. Multidimensional arrays are not supported."
The serialization code in MyData is as follows:
   XmlSerializer serializer = new XmlSerializer(this.GetType());
   using (StreamWriter writer = new StreamWriter(fileName))
      serializer.Serialize(writer, this);
Do you know how I should serialize MyArray?
Thank you.

XMLSerializer does not support multi-dimentional array.
use binary serialization
https://social.msdn.microsoft.com/Forums/en-US/90c98754-2580-404a-81ae-aedba5f2604d/serialize-multidimensional-arrays?forum=csharplanguage
Please remember to mark the replies as answers if they help and unmark them if they provide no help.

Similar Messages

  • How to use two dimensional array in custom.pll

    HI
    How to use two dimensional arrays in custom.pll
    I tried by the following way .
    type ship_array is table of number index by binary_integer;
    type vc_array is table of ship_array index by binary_integer;
    But I am getting the error as that
    A plsql table may not contain a table or a record with composite fields.
    Please tell me the way how to use them

    which forms version are you using? two dimensional arrays are available in >= 9i if memory serves.
    regards

  • Writing an array of custom objects to CSV

    I am brand new to PS. I have been reading many, many forums and am stuck on something I think you all will find very easy.
    Essentially all I want to do is use the test-path method to determine if a file and track yes or no. Repeat for several products. And finally export to a CSV.  So far I have cobbled together the If statement that will return a Yes Or No with the product name. 
    Able to put it into an array of custom objects so I can export-csv without just getting the just the name lengths.  The problem is that I only get the last value of the custom objects over and over again.  Here's my simple code:
    $hostname = hostname
    $Products = @()
    $myobj = "" | select COTS_Product, PassFail
    If(test-Path -Path C:\"Program Files"\Java\jre7\THIRDPARTYLICENSEREADME.txt)
    $myobj.COTS_Product = "JRE 7 on Host?"
    $myobj.PassFail = "YES"
    $Products += $myobj
    else
    $myobj.COTS_Product = "JRE 7 on Host?"
    $myobj.PassFail = "NO"
    $Products += $myobj
    ##Product 2
    If(test-Path -Path H:\Smileys\6.gif)
    $myobj.COTS_Product = "Smileys 6 on Host?"
    $myobj.PassFail = "YES"
    $Products += $myobj
    else
    $myobj.COTS_Product = "Smileys 6 on Host?"
    $myobj.PassFail = "NO"
    $Products += $myobj
    $Products | Export-Csv H:\$hostname.csv -NoTypeInformation
    Here's my output:
    COTS_Product
    PassFail
    Smileys 6 on Host?
    YES
    Smileys 6 on Host?
    YES
    SHould Be:
    COTS_Product
    PassFail
    JRE 7 on Host?
    YES
    Smileys 6 on Host?
    YES
    Please Help.

    You have been  reading a lot of very old and very faulty misleading forums.  Start by actually sitting downa nd trying to learnPowerSHell.  You cannot guess your way through any relatively sophisticated technology.
    Here is a little example of a way to do this in PowerShell.
    function Test-Product{
    Param(
    $product,
    $path
    New-Object PsObject -Property @{
    COTS_Product=$product
    PassFail=Test-Path $path
    $test_products=@{
    'JRE 7'='C:\Program Files\Java\jre7\THIRDPARTYLICENSEREADME.txt'
    'JSmileys 6'='h:\Smileys\6.gif'
    $products=foreach($key in $test_products.keys){
    Test-Product $key $test_products[$key]
    $Products | Export-Csv H:\$hostname.csv -NoTypeInformation
    This can be expanded in any way needed without issues.  It uses the design of PowerShell to set up the objects so they are manageable.  Until you learn about objects and formal programming logic and some elements of design you will have some difficulty
    in figuring out how to do these things.  Once you learn the basics they will seem very simple.  You cannot learn the basics from reading forum posts.
    ¯\_(ツ)_/¯

  • How do I make an Array of an object?

    If I have the following class:
    public class myStruct {
         String pid;
         String name;
    How do I make an array of myStruct's?
    I tried to do something like this
    public class MyTest {
    public static void main ( String [] args ) {
         System.out.println( "test myStruct");
         myStruct [] k = new myStruct[ 10 ];
         k[0].pid = "1";
         k[0].mnemonic = "test";
         System.out.println( k[0].pid );
    It compiles, but I get "Exception in thread "main" java.lang.NullPointerException at MyTest.main
    I know I am doing something wrong, any ideas how I could do something like this?

    in class myStruct,
    public class myStruct {
    String pid;
    String name;
    there is no 'String mnemonic;".
    in class MyTest, you have a line that reads
    k[0].mnemonic = "test";
    when there is no String mnemonic in myStruct. maybe that's why.

  • Using Arrays in custom objects

    All,
    I have searched for an answer to this but have not been able to find out so I'll post the issue and see what happens.
    I am creating a service and client for use with a JavaCard system. We have a pre-existing domain class called CardMetaData wich holds information about a card such as it's type, it's name, and an array of strings representing the static keys required to create a secure channel to the card. Essentially it looks like this:
    public class CardMetaData implements Serializable
            String[] cardStaticKeys = {"key1","key2","key3");
            String name;
            String type;
            ///getters and setters..
            //plus
            public String getStaticKey(int keyType)
              return this.cardStaticKeys[keyType];
         public void setCardStaticKey(String keyValue, int keyType)
              //Validation of input may be added later or put in an Aspect
              this.cardStaticKeys[keyType]=keyValue;
    }This is a datat transfer object.
    It is served up by a service with the following interface:
    public interface JCTemplateService extends Remote
         public CardMetaData getTemplate(String ATR) throws java.rmi.RemoteException;
    }Everything compiles and deploys find. The WSDL is:
    <definitions name="JCCardTemplateService" targetNamespace="urn:JCCardTemplateService">
         <types>
         <schema targetNamespace="urn:JCCardTemplateService">
    <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
         <complexType name="CardTemplate">
         <sequence>
    <element name="cardStaticKeys" type="tns:ArrayOfstring"/>
    <element name="description" type="string"/>
    <element name="name" type="string"/>
    </sequence>
    </complexType>
         <complexType name="ArrayOfstring">
         <complexContent>
         <restriction base="soap11-enc:Array">
    <attribute ref="soap11-enc:arrayType" wsdl:arrayType="string[]"/>
    </restriction>
    </complexContent>
    </complexType>
    </schema>
    </types>
         <message name="JCTemplateService_getTemplate">
    <part name="String_1" type="xsd:string"/>
    </message>
         <message name="JCTemplateService_getTemplateResponse">
    <part name="result" type="tns:CardTemplate"/>
    </message>
         <portType name="JCTemplateService">
         <operation name="getTemplate" parameterOrder="String_1">
    <input message="tns:JCTemplateService_getTemplate"/>
    <output message="tns:JCTemplateService_getTemplateResponse"/>
    </operation>
    </portType>
         <binding name="JCTemplateServiceBinding" type="tns:JCTemplateService">
         <operation name="getTemplate">
         <input>
    <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="urn:JCCardTemplateService"/>
    </input>
         <output>
    <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="urn:JCCardTemplateService"/>
    </output>
    <soap:operation soapAction=""/>
    </operation>
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="rpc"/>
    </binding>
         <service name="JCCardTemplateService">
         <port name="JCTemplateServicePort" binding="tns:JCTemplateServiceBinding">
    <soap:address location="http://localhost:8080/jcaa/templateService"/>
    </port>
    </service>
    </definitions>When I use a dynamic proxy to access this service like this:
    public static void main(String[] args) throws Exception
              URL urlWsdl =
                   new URL("http://localhost:8080/jcaa/templateService?WSDL");
              String nameSpaceUri = "urn:JCCardTemplateService";
              String serviceName = "JCCardTemplateService";
              String portName = "JCTemplateServicePort";
              ServiceFactory serviceFactory = ServiceFactory.newInstance();
              Service service =
                   serviceFactory.createService(
                        urlWsdl,
                        new QName(nameSpaceUri, serviceName));
               JCTemplateService myProxy =
                   (JCTemplateService) service.getPort(
                        new QName(nameSpaceUri, portName),
              JCTemplateService.class);
         ->    CardMetaData ct=myProxy.getTemplate("123456");
              System.out.println("CardTemplate from WS is "+ct.getDescription());
              System.out.println("key 1 from WS is "+ct.getKeyENC());
              System.out.println("key 2 from WS is "+ct.getKeyMAC());
              System.out.println("key 3 from WS is "+ct.getKeyKEK());
              System.out.println("Name is "+ct.getName());
         }It fails with a 'deserializzation error incomplete object' error at the line indicated above. If I remove the String[] from the value object and replace it with 3 separate string variables it works.
    Any idea's?
    Mike

    Does this mean, if you need the Dynamic Proxy client approach (and cannot use the Static Stub client, since it's J2EE implementation specific as I've learned from you, Kathy), today you cannot expect String arrays to work in J2EE web services?
    I have got a datatype Foo with an ArrayList containing String Arrays. In webMethods GLUE my server and client understand each other, it works pretty well. But I found that the WSDL is way to complex/not correctly understood by other SOAP client implementations like MS SOAP Toolkit or Mozilla Web Service Implementation.
    So my idea was to switch from GLUE to J2EE. Ok, this leads me to a WS Basic Profile I compliant WSDL and all. But now it seems this works only for really simple java types.
    I really need the ArrayList with the String Array elements. But I think in my web service (WSDL) I have to use a wrapper type which is the String representation of my (serialized by hand) Foo type and I have on the client side to create the Foo type from the string. That would not be nice, my hope was that J2EE supports more in this area. :-) Anyway, at the end it's important for me to have a portable (interoperable!) way to create and use a web service.
    So, to ask the question short and to the point:
    Today, if I want my client to work with different J2EE implementations using the Dynamic Proxy client approach and other clients, like MS SOAP Toolkit, can I offer on the J2EE web service server side a datatype with an ArrayList containing String arrays in a portable and interoperable way without the need of custom deserializers on client side?
    Merten

  • How to find out the modified or customized objects in oracle apps

    Hi all,
    I have a proble, there is no documentation available from the client and I have to find out what all oracle seeded objects have been modified during customizations (in reports, forms, work flow, jsp, tables etc..)
    Are there any tools or any particular way where we can figure them out.
    Any suggestions will help me a lot.
    And this is very imp and urgent.
    Please help me if you have some thing..
    Thank you all,
    Nagender

    For JSP's
    Diff between JSP in $HTML_TOP and corresponding PROD_TOP/html (like $IBE_TOP/html for ISupport Files)
    Any file that you see differing between $HTML_TOP and $PROD_TOP/html are Customized.
    Database Objects:
    You can look at the CREATE TIME. All seeded objects would have the same CREATE TIME. Any modofication would overwrite the CREATE TIME.
    Note that one pitfall here is that of Objects created by a Patch applied after the intial Install.
    I have no clue how you would identify the Workflows and Reports.
    HTH

  • How to create the data for custom objects in pList

    Hi,
    I am new in developing on iPhone and I don't know much about this area. I would like to ask a question. I couldn't find the answer on this question in apple documentation but I hope Internet community will help me.
    Lets say I have a class called classA. The classA has 2 public properties (or fields):
    *int customIndex*;
    and
    NSString *customTitle;
    My view controller class showMeSomething has a property NSArray which holds the objects of type classA. I would like to load the array from the plist resource file. How do I edit the resource file with initial values or how do I know the format of the plist which can be loaded from using mainBundle for my array of custom objects?
    Thanks!

    Here's some info on working with plists:
    http://developer.apple.com/documentation/Cocoa/Conceptual/PropertyLists/Introduc tion/chapter1_section1.html
    They can be edited with any text editor. Xcode provides a graphical editor for them - make sure to use the .plist extension so Xcode will recognize it.

  • How to access custom object as property in yField

    Hi All,
    I have a stacked column chart. The data provider (dp) has an
    array of object DataObject which has array of custom objects of
    class ClientRev:
    public function ClientRev(name: String, rev : Number)
    cName = name;
    cRev = rev;
    // data provider
    public class DataObject
    public var clientRev : Array;
    Now I have to use cRev property of clientRev elements of
    DataObject (DataObjects makes data provider) in yField of
    ColumnSeries.
    if i write,
    yField="{clientRev[0].cRev}",
    It doesn't work. Please lemme know how can I achieve my goal.
    Thanks for help.

    "vaibhav.chauhan" <[email protected]> wrote
    in message
    news:gdmhok$2eq$[email protected]..
    > Hi All,
    > I have a stacked column chart. The data provider (dp)
    has an array of
    > object
    > DataObject which has array of custom objects of class
    ClientRev:
    > public function ClientRev(name: String, rev : Number)
    > {
    > cName = name;
    > cRev = rev;
    > }
    >
    > // data provider
    > public class DataObject
    > {
    > public var clientRev : Array;
    > }
    >
    > Now I have to use cRev property of clientRev elements of
    DataObject
    > (DataObjects makes data provider) in yField of
    ColumnSeries.
    >
    > if i write,
    > yField="{clientRev[0].cRev}",
    >
    > It doesn't work. Please lemme know how can I achieve my
    goal.
    Use a dataFunction

  • How to get module wise custom objects

    Hi ,
    How to get all the list of custom objects ( Eg : zreports, ztransactions, zscripts, zsmartforms,zwebdynpro components ..... )
    and how to segregate them which module wise ( FI / MM / SD .... )
    I am using Tadir for getting the custom objects. Please suggest how to segregate module wise.
    Thanks

    Hi,
    Entities are related to components by the package they are contained in.
    Have a look at the table TDEVC.
    Kind regards,
    Valentin

  • Need help creating custom objects and adding them to an array.

    Hi Everyone,
    So I'm dinking around in Powershell today and I'm failing at creating an array of custom objects.  I want to create a HTML report that builds out after every MDT image update. To do that, I need to collect my data on what's contained in each build.
    Here's my current script in progress -
    function Parse-Dependents($fullname){
    #PARAMETER SWITCHING
    if(!($fullname)){
    $dependents = get-dependents
    if($fullname){
    $dependents = get-dependents -fullname $fullname
    #SPIN THROUGH ARRAY OF GUIDS FROM GET-DEPENDENTS
    foreach($d in $dependents){
    #SPIN THROUGH EACH APP IN APPLICATIONS.XML
    foreach ($app in $apps){
    #IF MATCH THEN ADD OBJECT WITH PROPERTIES
    if($d -match $app.guid){
    #ADD APPLICATION MATCH TO THE ARRAY
    $applications = @{
    'Name' = $app.ShortName;
    'GUID' = $app.Guid;
    'Version' = $app.Version;
    'Last Modified Time' = $app.LastModifiedTime;
    'Last Modified By' = $app.LastModifiedBy;
    'Install Directory' = [string]'\\my\path\to\MDT\' + $app.WorkingDirectory.TrimStart(".","\")
    'CommandLine' = $app.CommandLine;
    new-object -typename PSObject -property $applications
    #RETURN MATCHED ARRAY
    return $applications
    It all works great until I look at my output and see that I get my expected properties and array, but at the end it's created additional empty entries for each of my initial properties I assigned.  So I get my list of apps like this :
    powershell.ex... OrgChart Plugin  \\my\mdt\server\ XX\user                     9/22/2014 5:... {ffee7497-0c...
    And then below it :
                     CommandLine                                                                                    
                     Name                                                                                           
                     Install Direc...                                                                               
                     Last Modified By                                                                               
                     Version                                                                                        
                     Last Modified...                                                                               
                     GUID                                                                                           
    And these are all listed under the Name property.  I'm still pretty new to PS (8 months or so now), and rarely have to create a custom object, but this seems like a case for doing so to create a custom html report.  Any ideas would be greatly appreciated.
    Ryan

    It's not really all that strange.  
    If you look at your script, you're not outputting the hash table until both loops finish.  The values are dependent on the properties of the $app objects enumerated in the inner loop, and only outputting an object if the dependent ($d) matches the $app
    guid property.
    At the end, you're outputting the hash table without that test, so it's going to have values based on the last $app in the loop, regardless of whether the guid matches the dependents or not.
    [string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "

  • Array of class objects

    I was wondering how would you declare an array of class objects. Here is my situation:
    I'm working on a project dealing with bank accounts. Each customer has a specific ID and a balance. I have to handle transactions for each customer at different times, so I was thinking that I need an array of class objects; however, I dont know how to initialize them.
    Here's what I did:
    BankAccount [ ] myAccount = new BankAccount[10];
    // 10 = 10 customers
    How do I initialize the objects?
    Thankz

    I was wondering how would you declare an array of
    class objects. Here is my situation:
    I'm working on a project dealing with bank accounts.
    Each customer has a specific ID and a balance. I have
    to handle transactions for each customer at different
    times, so I was thinking that I need an array of
    class objects; however, I dont know how to initialize
    them.
    Here's what I did:
    BankAccount [ ] myAccount = new BankAccount[10];
    // 10 = 10 customers
    How do I initialize the objects?
    Thankz
    HAI
    Use the hashtable
    and store the classObject of each customer with the corresponding Id in it
    and whenever u want to recover a class match the Id and get the corresponding class
    that is the best way to solve ur problem
    Regards
    kamal

  • Report on activities linked to custom object

    Hi,
    Is there a way show on a report each activity linked to a custom object record? e.g.
    Custom Object name 1 , Activity 1 subject
    Custom Object name 1 , Activity 2 subject
    Custom Object name 1 , Activity 3 subject
    When i use the Custom Object 1 reporting area i add the custom object "name" feild to my report then add "Activity Subject". Each custom object record can have many activity records, however when I run my report it says "No Results" despite there being data set up?
    I tried a similar report but instead of showing activities i tried accounts, of which there are a number linked to a single custom object record. When i ran the report it showed a single row for each custom object record, almost as though it was a one to one realtionship between custom object and account, rather than a one to many?
    Any thoughts on what might be going wrong? or how i can report on activities per custom object record?
    Thanks

    Using CO and account subject area, it should be possible to show M:M associations between CO and Account.
    But for CO and activity, reporting on M:1 association alone is possible using CO subject areas.

  • Newbie - help needed with array and dictionary objects

    Hi all
    Please see the code below. I've posted this code in another thread however the original issue was resolved and this is now a new issue I'm having although centered around the same code.
    The issue is that I'm populating an array with dictionary objects. each dictionary object has a key and it's value is another array of custom objects.
    I've found that the code runs without error and I end up with my array as I'm expecting however all of the dictionary objects are the same.
    I assume it's something to do with pointers and/or re-using the same objects but i'm new to obj-c and pointers so i am a bit lost.
    Any help again is very much appreciated.
    // Open the database connection and retrieve minimal information for all objects.
    - (void)initializeDatabase {
    NSMutableArray *authorArray = [[NSMutableArray alloc] init];
    self.authors = authorArray;
    [authorArray release];
    // The database is stored in the application bundle.
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    NSString *path = [documentsDirectory stringByAppendingPathComponent:@"books.sql"];
    // Open the database. The database was prepared outside the application.
    if (sqlite3_open([path UTF8String], &database) == SQLITE_OK) {
    // Get the primary key for all books.
    const char *sql = "SELECT id, author FROM author";
    sqlite3_stmt *statement;
    // Preparing a statement compiles the SQL query into a byte-code program in the SQLite library.
    // The third parameter is either the length of the SQL string or -1 to read up to the first null terminator.
    if (sqlite3preparev2(database, sql, -1, &statement, NULL) == SQLITE_OK) {
    // We "step" through the results - once for each row.
    // We start with Letter A...we're building an A - Z grouping
    NSString *letter = @"A";
    NSMutableArray *tempauthors = [[NSMutableArray alloc] init];
    while (sqlite3_step(statement) == SQLITE_ROW) {
    author *author = [[author alloc] init];
    author.primaryKey = sqlite3columnint(statement, 0);
    author.title = [NSString stringWithUTF8String:(char *)sqlite3columntext(statement, 0)];
    // FOLLOWING WAS LEFT OVER FROM ORIGINAL COMMENTS IN SQLBooks example....
    // We avoid the alloc-init-autorelease pattern here because we are in a tight loop and
    // autorelease is slightly more expensive than release. This design choice has nothing to do with
    // actual memory management - at the end of this block of code, all the book objects allocated
    // here will be in memory regardless of whether we use autorelease or release, because they are
    // retained by the books array.
    // if the author starts with the Letter we currently have, add it to the temp array
    if ([[author.title substringToIndex:1] compare:letter] == NSOrderedSame){
    [tempauthors addObject:author];
    } // if this is different letter, then we need to deal with that too...
    else {
    // create a dictionary to store the current tempauthors array in...
    NSDictionary *tempDictionary = [NSDictionary dictionaryWithObject:tempauthors forKey:@"authors"];
    // add the dictionary to our appDelegate-level array
    [authors addObject:tempDictionary];
    // now prepare for the next loop...
    // set the new letter...
    letter = [author.title substringToIndex:1];
    // remove all of the previous authors so we don't duplicate...
    [tempauthors removeAllObjects];
    // add the current author as this was the one that didn't match the Letter and so
    // never went into the previous array...
    [tempauthors addObject:author];
    // release ready for the next loop...
    [author release];
    // clear up the remaining authors that weren't picked up and saved in the "else" statement above...
    if (tempauthors.count > 0){
    NSDictionary *tempDictionary = [NSDictionary dictionaryWithObject:tempauthors forKey:@"authors"];
    [authors addObject:tempDictionary];
    else {
    printf("Failed preparing statement %s
    ", sqlite3_errmsg(database));
    // "Finalize" the statement - releases the resources associated with the statement.
    sqlite3_finalize(statement);
    } else {
    // Even though the open failed, call close to properly clean up resources.
    sqlite3_close(database);
    NSAssert1(0, @"Failed to open database with message '%s'.", sqlite3_errmsg(database));
    // Additional error handling, as appropriate...
    Message was edited by: dotnetter

    Ok, so I know what the issue is now...I just don't know enough to be able to resolve it!
    it's the tempAuthors objects.
    It's an NSMutableArray which is create on the line before the start of the WHILE loop.
    Having looked through the debugger, I can see that each dictionary object is created (with different codes which I assume are memory addresses) so all is well there. However, on each iteration of the loop in the middle there is an IF...ELSE... statement which in the ELSE section is clearing all objects from the tempAuthors array and beginning to repopulate it again.
    Looking at the containing dictionary objects in the debugger I can see that the tempAuthors object that each contains has the same code (again, I'm assuming this is a memory address) - so if I understand correctly, it's the same object...I assumed that when I created the dictionary using the dictionWithObject call that I would be passing in a copy of the object, but it's referencing back to the object which I then go on to change.
    Assuming the above is correct, I've tried several "stabs in the dark" at fixing it.
    I've tried relasing the tempAuthors object within the ELSE and initialising it again via an alloc...init - but this didn't work and again looking through the debugger it looks as though it was confused as to which object it was supposed to be using on the following iteration of the WHILE loop (it tried to access the released object).
    Having read a little more about memory management can someone tell me if I'm correct in saying that the above is because the tempAuthors object is declare outside the scope of the WHILE loop yet I then try to re-instantiate it within the loop (does that make sense???).
    Sorry for the long post...the more I can understand the process the less I can hopefully stop relying on others for help so much.
    I am continuing to read up on memory management etc but just not there yet.
    Regards
    Wayne

  • Passing Array to Custom Component

    I have a custom button component that has the following setter function:
    //get title dimensions
    [Bindable]
    public function get titleDims():Array {
       return _cubeTitleArray;
    In main.mxml, the button MXML code is as follows:
    <comp:updateButton
    id="update"
    cubeName="{_cubeName}"
    viewName="{_viewName}"
    serverChartId="{_serverChartId}"
    titleDims="xxx"
    enabled="false"/>
    How do I specify an array in the titleDims property so the button can use it?
    The array would be something like:
    {Month: comboBox1.text, Year:comboBox2.text, Sales Order:comboBox3.text}
    There are spaces in the key values. I would like to know how to deal with those also.
    Thanks!

    Use associative array. Something like this
    var myArray:Array = new Array();
    myArray["Month"] = "some value";
    myArray["Sales Order"] = "some other value";
    Check this livedocs page for reference
    http://livedocs.adobe.com/flex/3/html/help.html?content=10_Lists_of_data_4.html

  • I linux inode which contains 13 member array wich stores the actual block address of data .Similarly in windows how data is managed in disk ?. How many members in this array ?

    I linux inode which contains 13 member array wich stores the actual block address of data .Similarly in windows how data is managed in disk ?. How many members in this array ?

    Hello Vijay Nerkar,
    Your question is not related to Windows Forms General. What is the data you mean and also what is that array?
    If you are looking for something related to Windows File System, see some words here:
    http://en.wikipedia.org/wiki/File_system
    For example
    "Windows makes use of the
    FAT, NTFS,
    exFAT and ReFS file systems (the last of these is only supported and usable in
    Windows Server 2012; Windows cannot boot from it).
    Windows uses a drive letter abstraction at the user level to distinguish one disk or partition from another. For example, the
    path <tt>C:\WINDOWS</tt> represents a directory <tt>WINDOWS</tt> on the partition represented by the letter C. Drive C: is most commonly used for the primary hard disk partition, on which Windows is usually installed and from which it boots. This "tradition"
    has become so firmly ingrained that bugs exist in many applications which make assumptions that the drive that the operating system is installed on is C. The use of drive letters, and the tradition of using "C" as the drive letter for the primary hard disk
    partition, can be traced to
    MS-DOS, where the letters A and B were reserved for up to two floppy disk drives. This in turn derived from
    CP/M in the 1970s, and ultimately from IBM's
    CP/CMS of 1967.
    For more details, consider consult on MS Answers:
    http://answers.microsoft.com/en-us/windows
    Regards,
    Barry Wang
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • MM help REQ??

    Hi I need to change the O/P format for the TCode-ME56,SAP standard O/P is of 3-liner,I need to change it to 1-line.I had never done anything like this,I need some help? Plz if any one has idea to change the O/P using badi/exits plz tell me,even I had

  • Load balancing Reports Services 10g with WebCache?

    Hi Guys Does anybody have any good ideas on how to load balance Oracle Reports Services? Can I do it with WebCache as with Forms Services? /Jacob :)

  • Transform in perspective

    hi, usually when i press Cmd + t i can trasform my layer. let's say i have a simple shape, if i transform i can chose prospective but it wont make it longer or shorter in perspective. Today searching the web i found a psd file where for some reason i

  • Unsure about how to formulate for specific problem.

    I'm tyring to get the amounts from Transactions::D2:C21 to be reflected in the Personal Reoccurring::C2-C6 based on the "Type" in Trasactions::C2:C21. So if I have two groceries entries in Transactins, I want only those to add together into the Groce

  • Problems updating folio builder ID CS6

    Hello all. My IT dept and myself are at our wits end--we cannot get ID to update. I opened the Folio Builder pallete and it tells me I need to update. When I attempt to do it from the app, the "update" under the help menu is "grayed out." And also wh