Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: filipe29
  • Order by date
  1. filipe29

    LinkedList

    I have made it.Thanks.Do you know how to put the LinkedList circular??
  2. filipe29

    LinkedList

    Ok.Thanks.By the way how can i do a next of a linkedlist and return the value? Like this: sentidos.iterator().next(); sentidoActual.intvalue()=sentidos.get("index"); Thanks
  3. filipe29

    LinkedList

    Ok.What im trying to do is a linkedlist of an integer values.I have: private static LinkedList sentidos= new LinkedList(); for (int i=0;i<8;i++) sentidos.add(new Integer(i)); Now i want to check if the index of the linkedlist has the integer 0 for example.
  4. filipe29

    LinkedList

    Yes but how do i do this: if (sentidoActual==0)... I test with intValue()but dont work.
  5. filipe29

    LinkedList

    Hi.I want to return a value inside of a LinkedList with the method get,i have: this.sentidoActual =(int)sentidos.get(8); sentidoActual is a integer and when i do that i receive the following error: "Formiga.java": inconvertible types; found : java.lang.Object, required: int at line 23...
  6. filipe29

    parameter is something or null

    Once more i dont want to check if the combotext is null but the parameter.And the parameter is not the column name.
  7. filipe29

    parameter is something or null

    i have a combo that selects the field and a textedit that set the text to find.In the combo i have fields of type string and integer and want to do a partial search. So i need more than one parameter and when a field is selected by the combobox the others are set to null. But for some reason...
  8. filipe29

    parameter is something or null

    No what i want to do is to use sometimes the parameter and sometimes not.
  9. filipe29

    parameter is something or null

    hi i have the sql query : select * from cliente where nome like :pnome or :pnome is null pnome is a parameter and when i go to the parameters strings i have 2 parameters not one,why??
  10. filipe29

    filter

    not in sql server
  11. filipe29

    filter

    The % doesn't work.How can i filter a integer and a string with searching just a little part of ?? I'm using adoquery with sql server
  12. filipe29

    filter

    hi i have a simple adoquery and a filter like this: if combo.text='Nome' then dm.Qry_clientesP.Filter:='Nome like'+texto.Text texto is a editbox when i do that tells me that the arguments are of incorrect type or out of range or in conflit with the others.
  13. filipe29

    filter

    sorry this is a question in the delphi forum
  14. filipe29

    filter

    How can i filter just a few words of ..like this i have a name like "Paulo Sousa" and i want to filter all the names started by "Pa" How do i do that?
  15. filipe29

    wrong sintax

    Hi again.i think that in adoquery the null function doesnt seems to work.(sql server 2000) Now i have : select "bla bla bla" where nome like :param1 or :param1 is null and nothing happens when param1 is null
  16. filipe29

    wrong sintax

    and p2 also
  17. filipe29

    wrong sintax

    sorry i forgot to mention that p1 is a parameter
  18. filipe29

    wrong sintax

    what's wrong with this syntax? select * from cliente where nome like =:p1 or like =:p2 is null
  19. filipe29

    locate doesnt work

    Hi .I have a locate to a query like this: if vendas_em_divida.Locate('IDVenda',qry_vendasidvenda.Value,[])=true then showmessage(vendas_em_dividaidvenda.AsString); and for some reason the message is not displayed.The sintax is correct and i have in vendas_em_divida the value...
  20. filipe29

    search just a few caracters

    Sorry i forgot to mention that when i talk in runtime i must say that i am developing on delphi.

Part and Inventory Search

Back
Top