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

  • Users: VNDN
  • Order by date
  1. VNDN

    How move text file from NT to Unix box?

    Hello everyone, I have a standalone VB application that generates a couple files to a directory on the LAN. And after those files are generated need to move thoses file to a Unix server but I haven't done anything like that before. I dont even know if it is possible. Please guide me. Thank you...
  2. VNDN

    How to finding gaps in identity values?

    will someone help me for indentifying gaps in identify values when data is removed in SQL 2000. Thanks in advance.DN
  3. VNDN

    IS THIS POSSIBLE ?????

    I have been assigned to maintain a application that had written in Clipper 5.2. and I am learning and making changes to application at the same time. And The scoop is that we constantly having an error "File is used by another" when support associates running a utility to reindex all...
  4. VNDN

    COULD NOT FIX THIS ERROR, NEED HELP

    I had it figured out. Thank you all your help everyone.
  5. VNDN

    COULD NOT FIX THIS ERROR, NEED HELP

    GRIFFMG, yes, the printer folder is available. No, the index operation is not causing the problem. When I copy a lookup.dbf in the same directory as the executable and comment the set path to, it runs fine. But this did not solve my problem. Thanks CVL
  6. VNDN

    COULD NOT FIX THIS ERROR, NEED HELP

    WHEN I RUN THIS SMALL PROGRAM BELOW I RECIEVED THE FOLLOWING ERRORS: DBFNTX/1001: OPEN ERROR. BUT I KNOW FOR SURE THAT THE LOOKUP.DBF IN THIS DIRECTORY(\\FILE007\INDEHELTH\Medicare\TestSys\MSTAR) ANY IDEAS, HOW TO FIX THIS?.. This is my first time to write something in clipper. Please guide me...
  7. VNDN

    text file

    Use FileSystemObject Make sure to include microsoft scripting runtime reference in your project. Good Luck
  8. VNDN

    How do I pass a recordset between forms?

    use property let and property let event to pass recordset between form.
  9. VNDN

    Help Validating Strings & Numbers.

    Private Function IsAlphaNumeric(ByVal arg As String, ByVal sReason As String) As Boolean Dim sbuffer As String For nCharacter = 1 To Len(arg) sbuffer = Mid$(arg1, nCharacter, 1) If Not (LCase(sbuffer) Like "[a-z]" Or IsNumeric(sbuffer)) Then: IsAlphaNumeric =...
  10. VNDN

    CLIPPER HELP!!!!!!

    Thanks you so much for all your help, everyone
  11. VNDN

    How to update records in DBF file from VB 6.0?

    rnathan, Thanks for your sample code. It works but I ran into a date problem, I have a recordset that get the date field from the dbf file, but when my recordset returns, the date field changes to time and i dont know why it does that. any idea. Thanks CL
  12. VNDN

    PLEASE HELP ON SEEK RECORD

    HOTEYE, IT IS STILL NOT WORK. thanks CVL
  13. VNDN

    How to update records in DBF file from VB 6.0?

    vb5prgrmr? How? do you have any examples?
  14. VNDN

    How to update records in DBF file from VB 6.0?

    Hello all, Do you have any ideas of how to updating records in the DBF file from vb, I have never work with dbf file extension before. Please guide me. Thanks much for your help.
  15. VNDN

    PLEASE HELP ON SEEK RECORD

    THANK SO MUCH FOR ALL YOUR HELP. I WILL TRY YOUR SUGGESTION. I AM VERY NEW TO CLIPPER. THIS IS MY FIRST TIME CODING SOMETHING IN CLIPPER. THANKS AGAIN.
  16. VNDN

    PLEASE HELP ON SEEK RECORD

    I have another problem. Can anyone please take a look at this part of code. when use Seek function to seek Provno2 with same FYE but it always return as zero record. but I know for sure that we have record that match the criteria in our DBF1. Please tell me what's wrong this this code. Thanks...
  17. VNDN

    CLIPPER HELP!!!!!!

    I have another problem. Can anyone please take a look at this part of code. when use Seek function to seek Provno2 with same FYE but it always return as zero record. but I know for sure that we have record that match the criteria in our DBF1. Please tell me what's wrong this this code. Thanks...
  18. VNDN

    CLIPPER HELP!!!!!!

    ROB, The file that i am appending from is a text file file.txt. Does that work the same as .csv. Thanks
  19. VNDN

    CLIPPER HELP!!!!!!

    BOZZ, DO YOU HAVE A SAMPLE OF THE CODE THAT I CAN SEE. THANKS
  20. VNDN

    CLIPPER HELP!!!!!!

    Hello everyone, This is my first time writing something clipper. I am trying to append a text file with comma delimited into a DBF file but I could not figure out how to get it to work. I am just stuck. Please help me. Thanks in advance.

Part and Inventory Search

Back
Top