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. LeanneK

    weird date error

    I have never had this problem. This may be a server setting. Otherwise you will just have to format the date before an insert and before display, which is easy using the Day, Year, Month or Left & Right functions.
  2. LeanneK

    why isnt recordset sort method working?

    Make sure that you are using a client side cursor. You should always use the client side cursor (note: there may be a problem with using client side cursors with auto number fields. I can't remember). Anyway, set the cursor location before openning the connection. conn.SetLocation = 3...
  3. LeanneK

    Patterns

    http://www.cs.wustl.edu/~schmidt/
  4. LeanneK

    New born programmer need direction, please.

    I would definately start out with Java. Learning to program is a thought process & not necessarily language dependent. You should be able to transfer your knowledge of one language to most others. VB6 is great in many situations, and I use it everyday. Its great for creating applications...
  5. LeanneK

    VB6 and VB .NET?

    I doesn't seem to me that any of the other responses really answered your question well. First, learning to program is a thought process & not necessarily language dependent. You should be able to transfer your knowledge of one language to most others. VB6 is great in many situations, and I...
  6. LeanneK

    fatal error RC1015: cannot open include file 'afxres.h'.

    The problem is with VC++. The application worked fine before I recieved a new computer. I already had VC++ re-installed, but I can try again. Note, the program worked fine on my old computer.
  7. LeanneK

    fatal error RC1015: cannot open include file 'afxres.h'.

    I keep getting the following error fatal error when compiling a program (any program): RC1015: cannot open include file 'afxres.h' when trying to compile a program
  8. LeanneK

    Changing Database at Runtime

    I would like to dynamically change the database from which I pull records. I tried creating an ADO connection and recordset (rs) and used the following code to link the "new" table to the report: Report.Database.SetDataSource rs This, however, does not appear to work. The...

Part and Inventory Search

Back
Top