User Profile

Collapse

Profile Sidebar

Collapse
merinodaniel
merinodaniel
Last Activity: Jun 30 '07, 08:37 AM
Joined: May 3 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • hey i have the same problem :S, can u post the code so i can see how u did the search code? ty bye
    See more | Go to post

    Leave a comment:


  • merinodaniel
    replied to C# 2005
    in .NET
    ty, ty, ty, :p i always have this problem in java also :P
    i dont know why i always forgot it jeje
    another doubt how can i show a dialog with some text so i can change this line,


    Console.WriteLi ne(total);



    ty for answer me
    bye
    See more | Go to post

    Leave a comment:


  • merinodaniel
    replied to calling an array to sort...
    in Java
    i dont know if its ok to compare a object in a array with all the array in this line :

    if (a[j-1].compareTo (a) <0)

    i try to do this code but i can figure it out how to do this line, sry i thinks its wrong this compareTo.
    bye
    See more | Go to post

    Leave a comment:


  • merinodaniel
    replied to Boolean array to integer?
    in Java
    ok, this is what i think u want to do, u want to have a array with integers like bynary so when u have true is 1 and false is 0.
    well i can do this:

    boolean[] b = {true, true, false, false, true, true};
    int[] a = new int[b.lenght];
    for(int i = 0; i <= b.lenght; i++){
    if(b[i].equals(true)){
    a[i] = 1;
    }else{
    a[i] = 0;
    }
    }

    i think this is ok, sry if something...
    See more | Go to post

    Leave a comment:


  • merinodaniel
    started a topic C# 2005
    in .NET

    C# 2005

    hi all, first post so pls dont be hard with me :p
    well i have this code and i dont know why it says error pls check it :

    double total = 0.0;
    int size = _receipt.Count;
    for (int i = 0; i <= size; i++)
    {
    if ((Receipt)_rece ipt[i] is ItInvoices) //the ERROR is in this line
    {
    ItInvoices itinvoi = (ItInvoices)_re ceipt[i];
    total = total + itinvoi.getNeto ();...
    See more | Go to post
No activity results to display
Show More
Working...