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!

Recent content by xinjie

  1. xinjie

    Position form in another form when radio clicked

    You can use Foxhwnd.ocx for this purpose if you stick to the original design. Foxhwnd.ocx can be found in the VFP6 installer, and details of how to use it can be found in the help file.
  2. xinjie

    PDF to text converter for batch folder processing

    I'm sorry because I didn't get it either because I'm just so new to this field.
  3. xinjie

    PDF to text converter for batch folder processing

    Hi, Chris Miller Thank you!
  4. xinjie

    PDF to text converter for batch folder processing

    Hi, KarenLloyd I discussed your question with a friend (Chinese). He is sure it can be solved in VFP6. However, I don't know how to establish a connection between you and him because the forum doesn't allow to leave an e-mail address. Do you have a good suggestion?
  5. xinjie

    Help with visual foxpro pageframe

    You can open foxcode.dbf and search for “Anchor” and just do the same. This method is limited to your insistence on using the VFP base class.
  6. xinjie

    User defined property in Property-window

    Simply put, you can use MemberData for this purpose. For example, you have two attributes: test and testdesc. then, you can write the following script through MemberData Editor: If Aselobj(LoSelobj) = 0 Aselobj(LoSelobj, 1) Endif If LoSelobj[1].Test = 1 LoSelobj[1].Test = 2...
  7. xinjie

    Poll #5: What other programming languages did you use, do you use, or are planning to use/learn?

    I am learning X# and I believe it will continue my technical life.
  8. xinjie

    form still continues even if one object.INIT fails

    Public oform1 oform1=Newobject("form1") If Vartype(oForm1) = "O" oform1.Show EndIf Return * Define Class form1 As Form DoCreate = .T. Caption = "Form1" lload = .F. Name = "Form1" Add Object command1 As myCommand With ; Top = 24, ; Left = 12, ...
  9. xinjie

    Combobox in grid with different RowSource for each row

    What I've described is not outdated and simply requires the DynamicCurrentControl property to be used again. It's something like this: With Grid With .Column1 .DynamicCurrentControl = "iif(Recno() = 1, "myImage", "myCombo")" EndWith EndWith An example of this technique...
  10. xinjie

    Combobox in grid with different RowSource for each row

    You want each current control in a separate column to use its own data source if I understand you correctly. There are usually two ways to accomplish this: 1 Use the dynamic properties of Column; 2 Using the control's BackStyle_Access method. I usually use the second method because it's easier...
  11. xinjie

    CursorAdapter.CursorRefresh doesn't seem to work when starting a VFP transaction

    Chriss, Whether you define the SelectCMD property or add any code to BeforeCursorFill/BeforeCursorRefresh, it is normal just in the normal case. But once CursorRefresh is executed in a VFP transaction, everything becomes unbelievable and the correct result is not obtained.
  12. xinjie

    Report Form print sizing problem

    Maybe you can update your VFP9 ReportingApp(Link)! If the problem is not resolved, then try DPIAwareManager(Link). In any case, they are beneficial.
  13. xinjie

    CursorAdapter.CursorRefresh doesn't seem to work when starting a VFP transaction

    Hi, Chriss Description from the help:(https://www.vfphelp.com/help/_5wn12pnzp.htm): Visual FoxPro stores the value changes, which are used by CursorFill. The CursorRefresh method uses the value of the SelectCmd parameter, not the SelectCmd property. This facilitates construction of custom...
  14. xinjie

    CursorAdapter.CursorRefresh doesn't seem to work when starting a VFP transaction

    Hi, Chriss Whether I change parameter and do CursorFill or CursorRefresh, I get another record, when changing my parameter value. This is exactly the result I need. And, I didn't get any errors.

Part and Inventory Search

Back
Top