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: *

  1. duongduong12345

    How to do with tables in my database are growing day by day.

    Hi Olaf; I use them sequence as above: ----------- Do _copydata Do _copytable With Alltrim(table_name), Alltrim(field_year) Do _delete With Alltrim(table_name), Alltrim(field_year), Alltrim(father_of1), Alltrim(father_of2) ----------- * table_name is the name of father table. * Father_of1 and...
  2. duongduong12345

    How to do with tables in my database are growing day by day.

    Dear all, Below are relevant code: *************** * Moving (store) which records for date/time field = _nam to new table in new folder. *************** *------------------------------ Procedure _copydata && First: Copy database (.dbc & .dct) Copy File Data\data1.Dbc To...
  3. duongduong12345

    How to do with tables in my database are growing day by day.

    Dear all, Here is my situation. I have a constantly growing table of records with a date/time field. I want to move some records with old date/time to another tables in new folder and available move back when i need. (It's same Bakup, but not entire table, just some records in table and...
  4. duongduong12345

    How to display general field on form

    Hi Olaf and Mike; You're a pro. As both of your advice. I store the path to the image file; add an ordinary image control to the form; and write code to set the image's Picture property as you navigate the table. It's done. And i know "Stay away from general fields, even with LINK option"...
  5. duongduong12345

    How to display general field on form

    Thanks Dan and Olaf, My dbf file content employee's photo, it's not a image. So i can not use native Image control. Any another solutions ? NCD
  6. duongduong12345

    How to display general field on form

    Hi all, Please help me ! I design the form in visual fox 9.0. I used OleBoundCotrol to design General Field, i add picture to this field by code below: -------- Local cJPGFile cJPGFile = Getfile('jpg') If !Empty(cJPGFile) Select nhan_vien Append General hinh From (cJPGFile) LINK =...
  7. duongduong12345

    How to combinate two tables in one grid?

    Dear all, Thanks for your help. But now, i solved it already, very easy. . Make relationship (table1 and table2) in Dataenvironment . The grid display fields in table1. . Add new column to grid, bind the table2.field direct to that column in the grid (don't bind table2.field to column.text)...
  8. duongduong12345

    How to combinate two tables in one grid?

    Hi Mike, JRB and all, Thanks for your support. I wonder, why there is only one solution as you teach me. It's so complicated one. In the Foxpro for Windows, very easy for me to do it (First: Make the relationship, Second: Brow Table1.fiels, Table2.fields..). So i think VFP's better than FPW...
  9. duongduong12345

    How to combinate two tables in one grid?

    Dear all, I'm new one to VF, please teach me how to combinate two tables in one grid. I have 2 tables (1 to many relation), anh i have 1 grid for display 1st table, but now i want to add more one column (is the field in second table) into that grid and I made relation in Data Environment...

Part and Inventory Search

Back
Top