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 strongm 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: bon011
  • Order by date
  1. bon011

    Create form

    Yeah, that is exactly what I was looking for. Thanks a lot.
  2. bon011

    Create form

    I want to get code to create the form from existing from. For example when I have from that have one commandbutton. Can I get code from this form that can I paste into procedure? Local oForm oForm = CREATEOBJECT("myform") oForm.show(1) **This code bellow I need to get. Is Any...
  3. bon011

    Create form

    Hi all, I wont to create form from procedure. I have create this form in form builder. Is any chance to generate somehow this (form)code that can I paste into procedure? Thanks
  4. bon011

    ToolTipText in grid?????

    MikeLewis, You was right. But I done it. I used afterrowcolcahange event and remember record that is selected. I store records tooltiptext in new property. Then I show the new property. But cell must be focused. Thats only way I can do that. I think.
  5. bon011

    ToolTipText in grid?????

    Hi all, how to show ToolTipText in grid. Every record has text filed that contain text that I wont to show when user move mouse on record in a grid. I have set MyForm.ShowTips=.t.
  6. bon011

    how to make sql command????

    select id, type, sum(count) from mytable group by id, type That is all
  7. bon011

    how to make sql command????

    it is Ok I done it. It was easy.
  8. bon011

    how to make sql command????

    Hi all, This is example of table id type count 1 A 2 1 A 3 1 B 5 2 A 1 2 B 2 3 C 3 3 C 4 How to make SQL select command that will make sum of filed "count". But it must sum rows that have same id and type. The result should look like...
  9. bon011

    Insert into cursor

    Hi all, I need to insert a new record into cursor on the end. But it is always not in the end, why???? In table the new record is in the end but in the cursor no. Any Idea?
  10. bon011

    Problem with setfous

    You I tried it. It works exactly as I wont. Perhaps I made some mistake before. Thanks
  11. bon011

    Problem with setfous

    MikeLewis The dafault property was set to .F. and still is.
  12. bon011

    Problem with setfous

    Slighthaze I tried to say that it doesn't work. I'm using vfp 6.0
  13. bon011

    Problem with setfous

    no way
  14. bon011

    Problem with setfous

    Hi, I have an interesting problem. In textbox keypress event I have this code: ---------------------------------------- LPARAMETERS nKeyCode, nShiftAltCtrl if nKeyCode==13 thisform.command1.setfocus endif ----------------------------------------- But after I press ENTER in textbox so then is...
  15. bon011

    SQL select to R/W cursor in 6.0

    This is good solution too.
  16. bon011

    record out of range

    Of course when You add a new record than recno() retun the last record number.
  17. bon011

    SQL select to R/W cursor in 6.0

    I am working in VFP 6.0 and there isn't any possibility to select some data from table to cursor with SQL statment and then update this cursor. So I wrote this function that makes from noeditable cursor editable cursor: function r2rw(aCursor) local i, cFname, nSize, cType, cField select *...
  18. bon011

    record out of range

    I get this error sometimes. It happens to me when I chenge work area(select table or cursor) try to use this: use leave append blank store recno() to nrec . . . use leave go nrec
  19. bon011

    Cleanup database

    Yes, that is exactly what I was looking for. Thanks
  20. bon011

    compare two textboxes

    In case of character input: you can do it this way: if len(alltrim(thisform.txtfrdate.value))<len(alltrim(thisform.txtdate.value)) messagebox(....) endif Put this code in lost focus property of yours textboxes In case of date input if thisform.txtfrdate.value<thisform.txtdate.value...

Part and Inventory Search

Back
Top