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

  1. billyng

    The "SendUsing" configuration value is invalid

    craigsboyd, your code works great. Thanks!
  2. billyng

    Passign array to a method

    Good point, I always mix up () with []. Thanks!
  3. billyng

    Passign array to a method

    Hey, it works. Thanks! By the way, how come I don't nned to use EXTERNAL ARRAY in a function or procedure for passing array? The compiler only complains it when it is in a form's method.
  4. billyng

    Passign array to a method

    Hi folks, I am trying to pass an array to a user define method with the following code In the command button's click event SELECT firstname, lastname ; FROM users ; WHERE id=123 ; INTO ARRAY aUser THISFORM.runautofill(@aUser) In the form's runautofile method LPARAMETERS...
  5. billyng

    Save Report As HTML

    I guess I need to try the 3rd party lib. Thanks folks!
  6. billyng

    Save Report As HTML

    Hi folks, I am using VFP 8. I notice there is a "Save As HTML" option in the File menu. I look at some other people posted the related questions here. Most of the suggestions were using frx2word. Is it impossible to programmically save the report to HTML with this built-in festure? If it...
  7. billyng

    Color code the items in the List Box

    Thank you all your good tips!
  8. billyng

    Color code the items in the List Box

    Hi folks, I have a ListBox that list all the items in different categores. Since there are too many, I want the items to be color coded base on their categories. Is it possible? Thanks! Billy
  9. billyng

    How can I make the form's size unchangeable

    good point, thanks!
  10. billyng

    synchronized method

    Very cool, thanks!
  11. billyng

    How to find out a page is selected?

    Cool, I should have looked at the pageframe properties. Thanks!
  12. billyng

    Shows .F. in the ListBox

    Thankss guys. It looks so much better now.
  13. billyng

    How to find out a page is selected?

    Hi folks, Is there an easy way to find out a page in the pageframe is selected? Thanks! Billy
  14. billyng

    Shows .F. in the ListBox

    Hi folks, I run a query and store the result into an array for the list box. If there is no result from the query, the list list box will show a line with .F.. How can I display an empty list instead of one line of .F. when the result is empty? Thanks! Billy
  15. billyng

    UNLOCK a record in the reopen table

    Good point, I should use FOUND() to see if I can LOCATE. Thanks! By the way, does it mean RLOCK() will be released after I close the table? Thanks! Billy Ng
  16. billyng

    synchronized method

    Hi folks, In VFP, is there any way to synchronize a method (like C and Java) in order to make the threads to access a function one at a time. Thanks in advance! Billy
  17. billyng

    UNLOCK a record in the reopen table

    Hi folks If I do the following in the init() SELECT table1 LOCATE for key=10 IF RLOCK() && do something ..... USE IN table1 ENFIF Can I just do SELECT table1 UNLOCK IN table1 to release the record lock later in the destory()? Thanks!
  18. billyng

    How can I make the form's size unchangeable

    Hi folks, Would anybody please tell me how to make the form's size unchnageable? Thanks!
  19. billyng

    Is PUBLIC var per session?

    This is what I am worried about. This sounds like the PUBLIC var is working like a static var in other languages. Thanks for your tips.
  20. billyng

    user a function

    yeah, I did it in the main program and it works. Thanks!

Part and Inventory Search

Back
Top