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 wOOdy-Soft 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 ilyad

  1. ilyad

    sql server 2000 "in", "not in"

    The SQL seems correct to me. Are you sure both fields are of the same type and length? Another way to get the same result is: select fg.contact, fg.LastName from final_aig fg left join aig_errors ae on fg.contact = ae.contact where ae.contact is NULL order by fg.lastname
  2. ilyad

    how to send a file to cd driver, like "Send to" in Win Xp?

    See also http://www.berezniker.com/display/VFP/Enumerate+Available+Drives
  3. ilyad

    Other fields from MAX() record don't match

    I certainly will, thanks a lot again. Haven't time today to look very closely, will read on Sunday.
  4. ilyad

    how to send a file to cd driver, like "Send to" in Win Xp?

    Hi Pamela, Just looking at the code you posted, where do you use the API? To get the number of logical drives? But you're not using this number in the code bellow.
  5. ilyad

    Grid Befre-/After-RowColChange event query

    Apart from others' ideas I think you're probably moving focus out of the grid and thus lots of other extra events occurring. Marcia Akins posted a way to validate records in a grid on a different web-site.
  6. ilyad

    Other fields from MAX() record don't match

    Tamar, Thanks a lot for the link to your paper. I'll study it in details tomorrow, but I have to admit, I didn't know about nested joins. I always use JOIN with ON condition following right away.
  7. ilyad

    Form not showing as object in debugger

    Hi Bryan, To console you a bit I've seen some Debugger problems and even posted a thread on another forum about it. The thread then turned into a complete joke starting with "Now we're in trouble. If there's a bug in Debugger how are we suppouse to debug it with Debugger that has bug in it?" :)...
  8. ilyad

    Case Sensitive search

    I think you should use LIKE instead of =
  9. ilyad

    Troublesome File Write Error in FoxPro

    Also how many files in this directory already? Try to move them to another place.
  10. ilyad

    Troublesome File Write Error in FoxPro

    Did you try to defrag this drive?
  11. ilyad

    Troublesome File Write Error in FoxPro

    Usuaally the first error indicates some network failure. Are you writting this file on the Network? What kind of Network do you have - NT or Novell? So I agree with dgrewe here. Make sure the file is not opened with the same name.
  12. ilyad

    On key label - Additive

    In the code that does the assignation simply add code I posted as the last line. Or you can use SelLength approach as shown by others, but then you would need to pass an object reference to your editbox into the procedure.
  13. ilyad

    On key label - Additive

    Try keyboard '{Ctrl + End}'
  14. ilyad

    Other fields from MAX() record don't match

    Olaf, :) Yes, it would be nice to have Salary = SSN :)
  15. ilyad

    Display Info in Tool Tips in a Grid

    I'll try to play with AllowCellSelection property. In this particular form I can not really move editbox out of the grid, though, of course, for editing I have an Editbox on the form. I may try to use only first 250 chars instead and replace editboxes back with textboxes in the grid. I'm afraid...

Part and Inventory Search

Back
Top