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 Mike Lewis 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. thomascd

    Pb with table buffering and datassesions when INDEXING

    No, it is looking at the right table. It is not speicifed in the vfp doucmentation that the table sould be opened exclusively for indexing, or is it ?
  2. thomascd

    Pb with table buffering and datassesions when INDEXING

    Thanks, why would that be a design pb to feel the need to index a table in a multi user environment ? In my case this is required on search form with a grid which the user can order the columns as he wishes. I think you've got a point here with table opened exclusively, but the index operation...
  3. thomascd

    Pb with table buffering and datassesions when INDEXING

    when I have the same form opened twice in a multi user environment, I am getting a crash when indexing a table in the second opened form at this part of the code: IF CURSORGETPROP("Buffering") = 1 INDEX ON &cOrderField TO (NdxFile) ENDIF I get an error message:"command cannot...
  4. thomascd

    How to automate documentation of classes

    Hi Any tip to automate the documentation of a class in a class library ? I would like to sweep all class libraries in a project, then all classes in each library and print their methods, properties and description ? Am I expecting too much ?
  5. thomascd

    use a variable by reference, address ? like "&" in foxpro

    HOw to use a variable by reference in VB like one would do using the operator '&' in visual foxpro or other languages ? for example m1="my value" m2="m1" msgbox (&m2) 'should display "my value" and not "m1"
  6. thomascd

    Passing an array to a procedure

    Ha thanks Nath, what a relief !
  7. thomascd

    Passing an array to a procedure

    Thanks for your persistence, but while I am not getting an error, the array is not modified when I return from the function.
  8. thomascd

    How to pass an array to a procedure ?

    well, still getting an error in sub main, saying that argument must be byref. Do I need to use a temporary variable ?
  9. thomascd

    Passing an array to a procedure

    well, I am still getting the same error in the sub main.
  10. thomascd

    how to launch an EXE from VB?

    Is it possible to launch an exe from VB using WSCRIPT.SHELL object ? The problem with using the shell function is that the code doesn't wait for the exe to finish.
  11. thomascd

    How to pass an array to a procedure ?

    Hello, I can't succed to pass an array by reference to a procedure and modify the values directly. Can you tell me what is wrong in my code ? Sub main() Dim Array1(2, 1) As Long Modify (Array1()) End Sub Sub Modify(Array2 As Long) For I = 0 To 2 Array2(I, 0) = I Array2(I, 1) = I + 1 Next I End Sub
  12. thomascd

    how to launch an EXE from VBA?

    Is it possible to launchan exe from VBA using WSCRIPT.SHELL object ? The problem with using the shell function is that the code doesn't wait for the exe to finish.
  13. thomascd

    Passing an array to a procedure

    Still not working with brackets, I get 'argument must be byref'
  14. thomascd

    Passing an array to a procedure

    Hello, I can't succed to pass an array by reference to a procedure and modify the values directly. Can you tell me what is wrong in my code ? Sub main() Dim Array1(2, 1) As Long Modify (Array1()) End Sub Sub Modify(Array2 As Long) For I = 0 To 2 Array2(I, 0) = I Array2(I, 1) = I + 1 Next I End Sub
  15. thomascd

    How to detect if a file is in use

    Thanks for your info
  16. thomascd

    How to detect if a file is in use

    Hi is there a quick way too detect if a file is in use by any user ? (any kind of file, not foxpro tables)
  17. thomascd

    How to run NET SEND from FOX PRO ?

    Hi guys, I want to send a message to other computers on the network, I saw from previous post that I can use dos NET SEND, but I can't manage to make it work from foxpro. Moreover, is it only working with win2000 ?
  18. thomascd

    excel automation: "oexcel.displayalerts" doesn't work

    Thank you everybody, your reponses helped me solve my problems
  19. thomascd

    excel automation: "oexcel.displayalerts" doesn't work

    You're right for this one Danceman, but why does displayalert not work ? and how to solve the problem with "do you want to overwrite the file..." without deleting it ?
  20. thomascd

    excel automation: "oexcel.displayalerts" doesn't work

    Thanks for this one. That's a work around.

Part and Inventory Search

Back
Top