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 Wanet Telecoms Ltd 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: *

  1. beltijs

    accelerator character in Ttoolbuton

    Hi! i not understand if i can't get it right or if just is not possible. I have a Ttoolbutton in a Ttoolbar, Ttoolbutton->style = tsButton, Ttoolbutton->caption = &New Ttoolbar->showcaption = false. So, according to the definition if i press Alt+N the Onclick...
  2. beltijs

    dbgrid hides 1 row?

    Hi! I have this situation. Mysqlquery | datasetprovider | clientdataset | datasource and a dbgrid (grid_A) showing what's in the clientdataset. The query returns a set of records, but in the dbgrid there is 1 record that is not shown. the strange thing is that trying to...
  3. beltijs

    why this sentence doesn't work?

    Works perfectly, THANKS A LOT!!!!
  4. beltijs

    why this sentence doesn't work?

    I'm using mysql 4.0.21 and Toad to run this query. The message i'm receiving is that there is a Syntax error, where? select a.id_opcion, a.nombre, a.campo, a.visible, b.id_usuario, if(b.ancho is null, 50, b.ancho) as ancho, b.posicion from det_rmen as a left join...
  5. beltijs

    Table is read only???

    I couldn't make it work, i was reading a lot of posts in some forums, and i found out i have to use tupdatesql to execute diferents action over the data returned by the sql. But it didn't work. Otherwise i realise that de performance was very poor. So i decide to use a msqldac component. I...
  6. beltijs

    Table is read only???

    ok, im having this problem: Database = mysql Tables = ttable connection = tdatabase dbgrid with Tquery i want to update, i have done this with ado tables and querys. Ok, query says: " Select a.id_movimiento, a.id_item, a.id_tamanio, c.descripcion as desc_tamanio, a.id_deposito, a.cantidad_ped...
  7. beltijs

    dbf or what?

    hi! I want to you to help me with some choices i have to make. I have an application that the user install in their computer (i say these because i want to consider that every user may have a diferent computer with diferent resource and programs installed), i first work with dbf tables, but i'm...
  8. beltijs

    Shared selective folder on Xp Pro

    i think i have to create user C in A and B, because there is one folder in each machine that is shared for everyone (including C), and other folder in A that is only shared with B.
  9. beltijs

    Shared selective folder on Xp Pro

    hi! i've this problem. A network with 3(A,B,C) machines, 2 of them (A,B) wants to share a folder without sharing with the third one (C). Ok, i've read a lot of posted maded to this forum, but i found a problem that i can't solve. I create in all three machines all users account of the network...
  10. beltijs

    Syntax error SQL statement

    i solve the problem in this way: i have modified de sql statement that select the data like this: SELECT nro_maquina, ubicacion_nombre, cliente.nombre, ficha_tec_e.id_cliente FROM ficha_tec_e INNER JOIN cliente on ficha_tec_e.id_cliente = cliente.id_cliente...
  11. beltijs

    Syntax error SQL statement

    it's a Tadoquery with this sql: SELECT ficha_tec_e.nro_maquina, ficha_tec_e.id_cliente, ficha_tec_e.ubicacion_nombre FROM ficha_tec_e; Because of this problem i have take away all relationship with other tables until i solve this problem. I have take away all indexes, none of the fields are...
  12. beltijs

    Syntax error SQL statement

    Hi! I having some problems with a ClientDataset with a Datasetprovider. When i make clientdataset.applyupdates(-1) it shows an error message: 'Syntax error un sqlstatement'. The database is Ado, the datasetprovider has his updatemode set un UpWhereKeyOnly, and the key fields are specified. I...
  13. beltijs

    UsDeleted doesn't recognize

    hi! I've this code for a clientdataset myclientdataset.first while not myclientdataset.eof do begin if myclientdataset.UpdateStatus = usInserted then {do something} if myclientdataset.UpdateStatus = usModified then {do something} if myclientdataset.UpdateStatus =...
  14. beltijs

    Dialogs Language

    Hi! How can i change the language of the buttons in the dialogs screens?. I want to translate it to spanish instead of "Yes" and "Cancel" i want to have "Si" and "Cancelar". Thanks
  15. beltijs

    IndexName in Adotable doesn't sort records?

    Hi! i have a Tadotable, i have set the indexname with an index i define in the database for that table. When i open the table it doesn't order the records acording to the indexname i'have define. When i add a Watch for the indexname of the table in the line i open it, the indexname have the...
  16. beltijs

    Debug CPU allwais apear

    I'm writing some code, then i press F9 to execute de code. Then de Debug CPU Windows apears in this line: ntdll.dbgBreakpoint: 77F767CD int 3 77F767CE ret Standing in the second line, i press F9 and continue, then it stop again in the same line. I press F9 again and then launch me to the...
  17. beltijs

    Pchar Initialization?

    Thank you Towerbase
  18. beltijs

    Pchar Initialization?

    Hi! I write a function that looks like this: function codigo_tipofact(nro_ingresado: string): string; var pcnro_ingresado : pchar; pre_guion : string; pcpre_guion : pchar; post_guion: string; posicion : Integer; begin pcnro_ingresado := pchar(nro_ingresado); posicion :=...
  19. beltijs

    Find Procedures of a Unit

    I want to make a List of Procedures i have in a unit at runtime. Is there a way to read each procedure of a unit and put it in a List?
  20. beltijs

    Locate is not working in AdoTable

    Well, i solve the problem, i make the search based in two columns, something like this: " if Locate('pl_pantalla;pl_campo',vararrayof([pantalla,busqueda]),[]) then " Now is working fine. Lets say that i solve the problem but i didn't answer the question. Thanks Griffyn for your help ;)

Part and Inventory Search

Back
Top