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 sobesoft

  1. sobesoft

    Access and .NET

    With the comming of .NET, what is the future of Access as a development tool? Will Access be upgraded? Will it use VB.NET? Will there be a way to migrate code or forms? TIA
  2. sobesoft

    Got Online Microsoft Courses?

    I took the Programming SQL 2000 Instructor led course (5 days in the classroom). MOC. I would recommend this approach if you have no experience at all with SQL server becauses it forces you to get hands on experience with the product (which I didn't have at the time). If you already work with...
  3. sobesoft

    ODBC [Visual FoxPro Driver] Syntax error?

    Try the following code. You need to open an ADO connection and specify the directory if it is a free table, not the DBF file itself. cnDb = New ADODB.Connection connStr = "Driver=Microsoft Visual Foxpro Driver; " + ; "UID=;SourceType=DBF; SourceDB = " + "c:\&quot...
  4. sobesoft

    What is rpcmon.dll?

    What is rpcmon.dll? What component is it part of? Thanks.
  5. sobesoft

    platform

    If I understand your question, Yes! C# compiles to IL (intermediate language), which gets used by the .NET runtime. The big question is whether .NET runtime as been ported to other platforms, which (correct me if I am wrong) has not happened yet.
  6. sobesoft

    Update VFP FoxPro Using ADO

    The connection string for DBF (free tables) looks like this: Driver={Microsoft Visual FoxPro Driver}; SourceType=DBF; SourceDB=\path; Exclusive=No;
  7. sobesoft

    Update VFP FoxPro Using ADO

    You need to create a static, client-side, optimistic ADO recordset using the open method of the ADODB.recordset object like this: SET ocn=server.createobject("ADODB.CONNECTION") ocn.open("DSN=FoxSample") SET ors=server.createobject("ADODB.RECORDSET")...
  8. sobesoft

    CONVERTING FORM CLIPPER

    Use the RDD of Clipper 5. http://www.southbeachsoftware.com/artclipper.asp
  9. sobesoft

    How to get SQL column descriptions?

    I want to get column descriptions from SQL to put on my front end labels instead of hard coding them. I know I could probably do this through extended properties. Does anyone have any other ideas for creating and accessing this meta-data from the front end?
  10. sobesoft

    Cannot connect to remote database through ASP

    Do you have the correct permissions on the \\fshv5 server? The anonymous user IUSR_MACHINENAME needs read (at least) permissions to the directory and the file on the \\fshv5 server.

Part and Inventory Search

Back
Top