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 strongm 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: cucho
  • Order by date
  1. cucho

    Tabular datawindow returns fewer rows than underlying stored procedure

    You can use ODBC to try if it happen the same thing with the DW.
  2. cucho

    Tabular datawindow returns fewer rows than underlying stored procedure

    Ok, try this instead of create a temp table, create a table with the same structure in the database then modify the store procedure to fill this table and run it from query analizer. Then create another table modify the store procedure to fill this second table using the datawindows. Now you...
  3. cucho

    Tabular datawindow returns fewer rows than underlying stored procedure

    Run PROFILER from sql server and then do a retrieve of the datawindows. In the profiler you will see how powerbuilder call the store procedure. You can copy the exec statement and put it in the query analizer.
  4. cucho

    Application Timeout in Delphi 7

    Thanks
  5. cucho

    Application Timeout in Delphi 7

    I need to shutdown the application if the user has not use it for 30 minutes.
  6. cucho

    Application Timeout in Delphi 7

    I need to set an application timeout but i don't know how to do it. Anyone can help me. Thanks in advance.
  7. cucho

    Calculating 2 years from a date

    Hi add 730 days, then calcuate if this month is 1 or 2(i think you have to exclude 29 of february) then you must see if the year is leap or the next year is leap, if one of the two are lead add 1 more day. if this month is greater than 28 of february then you must see the next 2 year to see if...
  8. cucho

    Must migrate back end from sybase to sql server - INI file changes?

    Did try to start SQL Profiler to debug the SQL Server session? It could help you a lot.
  9. cucho

    Must migrate back end from sybase to sql server - INI file changes?

    I use this in the .ini file Vendors=MICOSOFT DBMS=MSS Microsoft SQL Server 6.x ServerName='servername' Database='dbname' DBParm=AppName='',Log = 0, host='computername',DBTextLimit='32000' If you need help my mail is pcucho@yahoo.com
  10. cucho

    Must migrate back end from sybase to sql server - INI file changes?

    Try this SQLCA.DBMS = "MSS Microsoft SQL Server 6.x" SQLCA.AutoCommit = False SQLCA.DBParm = ""
  11. cucho

    Help with dll building

    f i do this i get long __declspec(dllexport) __stdcall cfinterfase(CString h) { CString d = "HELLO: "; AfxMessageBox(d); AfxMessageBox(h); return 10; } Its display 2 message box 1 with HELLO and the other with the value of h but if i change the last afxmessagebox with...
  12. cucho

    Help with dll building

    I'm forget to mention that i'm using Visual C++ 6.0 without any sp or update.
  13. cucho

    Help with dll building

    Hi, i'm building a dll (with MFC) wich i need to call it from another language. I declare it in this way long __declspec(dllexport) __stdcall cfinterfase(CString h); in the body of the function i need to concatenate 2 string 1 is the argument. so i do this long __declspec(dllexport)...
  14. cucho

    Suppress Tab Key in Window

    Did you try to create a user event with the keydown event??
  15. cucho

    Does SQL Server 7.0 support Nested cursor ?

    I have a problem when i want to use nested cursor and i found this. declare the first cursor, then declare the second and when you close the second cursor deallocate it ex declare first_cursor cursor for select * from ff open first_cursor fetch first_cursor into @gg while (@@sqlcode=0)...

Part and Inventory Search

Back
Top