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

  • Users: avn
  • Order by date
  1. avn

    Exporting Data to a textfile with a dynamic filename.

    within a stored proc: use 'bcp' out... then create a variable @currdate-(representing its filename); you might as well implement the dateadd function (to increment date in filename). avn
  2. avn

    VB6 -> Crystal Reports - StoredProcParam(x)

    rraney, try storing the parameter value to a variable then use that variable in passing it through a formula. dim x x=Stored_proc_param_value crystal1.storedprodparam(0) = x crystal1.formula(0)={x} ---> check parameters of this property avn
  3. avn

    Crystal Reports from DAO recordset

    mwhalen, instead of using a recordset, use the querydef property of the crystal control. It is also possible for you to pass your global variable to be use in your crystal report formulas. e.g. crystal1.querydef="select * from employee" crystal1.formula(0)={name_of _d_variable...}
  4. avn

    listbox

    christina, instead of using listbox to display your data, try making use of the MSFLEX GRID -- hope this works for you...
  5. avn

    Error--too many files open

    foxpro 2.6 is limitted when it comes to handling open databases. Try closing some of your open databases or rather open the database when needed only then close it immediately. This will free up a big space from your memory. Hope this make sense...

Part and Inventory Search

Back
Top