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 bkrike 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 sarklow

  1. sarklow

    select to array won't keep the order

    I think because SELECT does not recognise VFP tags. Try SELECT INTO ORDER BY .... If you want to generalise then lcTag = TAG (table) SELECT .. INTO ... ORDER BY &lcTag
  2. sarklow

    How to get the volume label ...

    Hi Shy, Try ... DECLARE GetVolumeInformation IN win32api STRING, STRING @, INTEGER, INTEGER @, INTEGER @, INTEGER @, STRING @, INTEGER LOCAL ; lcFileSystemName, ; lcRootPath, ; lcVolname, ; lnFileSystemFlags, ; lnFsnameLen, ; lnMaxFileNameLen, ; lnVolNameLen, ; lnVolumeSerialNumber...
  3. sarklow

    Listbox, move all value help

    Hello, You would appear to be always selecting the first item in the approval_list and your DO WHILE condition will always be true. After you have added the item to the agenda_list you need to move an index on or wrap the code with a FOR loop up to the number of approval_list.ListCount ? Hope...
  4. sarklow

    What is a reflexive join?

    Hi Stewart A reflexive join exists when a table is joined to itself through a second column. For example, the table Employee(EmployeeID,...,ManagerID)could have a join from ManagerID to EmployeeID.
  5. sarklow

    Regional Settings

    Hi, Yes. SET commands are scoped to the current datasession. Perhaps stick a call to a SetSets() module in your form Load().
  6. sarklow

    How to pass param to another form and where to declare it

    Hi In the INIT of FORM2 LPARAMETERS lcParm1 * Check the presence of the parameters and whether they * have the expected type. * * If ok then assign to form property. * IF VARTYPE (lcParm1) = 'C' Thisform.cValue = lcParm1 ELSE Thisform.cValue = '' * * And any error reporting code...
  7. sarklow

    Dataenvironment Relations

    Hi, As I understand it you are trying to relate two different values from one Contract record to different records in the User table. Although you can logically set this up in the DE I what I think will happen is that the record pointer in the User table will settle on the record which matches...
  8. sarklow

    How to refresh form

    Thisform.Refresh()
  9. sarklow

    Scroll Bars & Edit Regions (Easy Question)

    Hi, EditBox.ReadOnly = .T. should do the trick.
  10. sarklow

    Previewing Forms for Certain data

    Hi Bebbo, Try using INLIST eg ... FOR INLIST (StkRecord.Dept,'01','03','06')
  11. sarklow

    Help not working properly

    Hi, If the Tools Options doesn't work - and it didn't for me - then try this solution from the MSDN which did work for me. http://support.microsoft.com/default.aspx?scid=kb;en-us;Q214560
  12. sarklow

    DODEFAULT() vs :: Scope Resolution

    Hi TheManiac, If you are about to start using classes and sub-classes be aware of a popular gotcha ... ANY text in a sub-class method will prevent the parent class method from firing. This includes a simple space or a comment.

Part and Inventory Search

Back
Top