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

  1. Don Child

    Turn off emails

    Hi Mike, You mean "Manage Watched Threads" on the right side, correct?
  2. Don Child

    Is there a site for old books that might have the manuals for Visual Xbase by Rytech International?

    Hi, I've looked at many sites and googled for the VXBase manuals, but have been unsuccessful in finding them. I did purchase the tools way back, but didn't hold onto the manuals. I think there was also a book specifically about the templates back then. But I have no clue how to even search...
  3. Don Child

    Not able to log into my previous account, and there's no "Forget Password"

    Thanks Jon/gbaughma/doubledriveline, I found the Forgot Password link that you pointed out, and am back in the official profile. I don't know the answer to your question, Deniall. If I find out, I'll forward a reply.
  4. Don Child

    Oracle connection works while debugging in VBSEdit, but not when run from the command line.

    Hi, I have an oracle connection defined "Driver={Oracle in instantclient_21_6};Dbq=DB;Uid=MYUSERID;Pwd=" & ORACLE_S & ";" , and this works fine while debugging in VBSEdit, with CSCript. But the command line c:\windows\system32\CMD.EXE /C CScript.exe...
  5. Don Child

    How to validate an INSERT, after Executing

    In case anyone needs this in the future, someone answered this in another forum. They pointed to https://stackoverflow.com/questions/12676747/how-to-get-the-affected-rows-in-vba-ado-execute as an example of how to get the number of rows affected by the INSERT. This answer, from the forum...
  6. Don Child

    How to validate an INSERT, after Executing

    Hi, I have Set cn = CreateObject( "ADODB.Connection" ) cn.Open "Driver={SQLite3 ODBC Driver};Database=c:\XXXXXXXX\XXXXXX\XXL_XX\MYPRODDB.db;" , and it connects fine, and runs queries. The INSERT is executing fine as well, based on a query from my sql tool afterwards. THISTABLE_ins =...
  7. Don Child

    Manipulating long text lines, similar to fields in a table

    All working perfectly, thanks everyone. LIST SubStr( D2LINE1, 87, 1), ChrTran( SubStr( D2LINE1, 87, 1), "+-", "-+" ) FOR SUBSTR( D2LINE1, 72, 3 ) = "BBB" to file C:\DOWNLOAD\REPL.TXT SUBSTR(d2line1,87,1) CHRTRAN(SUBSTR(d2line1,87,1),"+-","-+")...
  8. Don Child

    Manipulating long text lines, similar to fields in a table

    Hi Chris, I'm already settled on doing APPEND, because then I can in effect manipulate the text file, the same way as a table. With the FiletoStr, StrToFile, I'd end up with a memo field that contains the entire file. I didn't know about CHRTRAN. That's a nice shortcut, thanks.
  9. Don Child

    Manipulating long text lines, similar to fields in a table

    Yes, that's it. That's the final piece, an intermediary Search & Replace. Thanks, mjcmkrsr.
  10. Don Child

    Manipulating long text lines, similar to fields in a table

    Chris, Thanks, the Xbase designers thought of everything.
  11. Don Child

    Manipulating long text lines, similar to fields in a table

    Hi mjcmkrsr and Chris, Yep, I figured filetostr would be necessary, but couldn't figure out how we could perform something similar to table manipulations. I would still have to specify the exact location on each line where the specific pluses and minuses are, since that might be other...
  12. Don Child

    Manipulating long text lines, similar to fields in a table

    Hi, Normally if I have a text file with line lengths less than 255, I can APPEND the text file into a table, manipulate the lines in the table, then output the changes to another text file. But the text files I'm working with, have line lengths of around 1000 characters. The line length is...
  13. Don Child

    Are the longer field names in a dbc container accessible from the Repl/Dot Prompt?

    Chris, I don't know how the software goes about doing the conversions of the index names, but I'm using DBConvert Access to Foxpro. I purchased a license in 2012, and am upgrading it today, for this new project. It worked fine the last time I used but, but I don't recall what happened with...
  14. Don Child

    Are the longer field names in a dbc container accessible from the Repl/Dot Prompt?

    Mike - envious. Never attended any of the conferences. Dbase itself is still alive and kicking, they even sell Dbase V for Dos. Chris - Never knew that, about the DBF containing an indicating of it's umbrella DBC. Very useful, I'm now more excited about playing with Foxpro. Mike -...
  15. Don Child

    Are the longer field names in a dbc container accessible from the Repl/Dot Prompt?

    Perfect, thanks Scott/Mike/Chris. I play in Dosbox on my android tablet sometimes, and still use some of the original Dot Prompts. So the terminology is literally like yesterday.
  16. Don Child

    Are the longer field names in a dbc container accessible from the Repl/Dot Prompt?

    The command tool that shows up when you run VFX. It's been there since the beginning, in fact way back with Dbase. Even the modern xbase compilers all have repls to type in queries on the fly. In the Dbase days, it was called the Dot Prompt.
  17. Don Child

    Are the longer field names in a dbc container accessible from the Repl/Dot Prompt?

    Hi, I'm thinking about converting an Access database to foxpro, because I do a lot of ad hoc queries and manipulation when there are problems. If I convert the .mdb (not .accdb) to a Foxpro database in a dbc, will I be able to access the longer field names from the repl?
  18. Don Child

    JScript to search for specific outlook emails, and download attachments

    Eric, VBSEdit, https://www.vbsedit.com. Been using it for years. Customer service very prompt. They have lots of samples, both online and included in their distribution. Also - relevant to this thread - it supports Windows Scripting Hosts in general including JScript, and mixing VBScript...
  19. Don Child

    Update Records From Another Table

    Wrg, Even if you can't want to share the code, we can try and help you with debugging and stepping through it. Do you have a Clipper compiler, so that you can recompile with a debug option? Alternatively, depending on whether it used third-party libraries, you might be able to compile, run...

Part and Inventory Search

Back
Top