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

  1. atoledo

    About Response.buffer=false

    Yes... I tried the response.buffer=true and periodical response.flush. I think It's like a page timeout ( talking about the page that builds the graphics!) Is any sentence to set the timeout time of an aps page! Thank's
  2. atoledo

    About Response.buffer=false

    My ASP page displays a lot of records, so in order to made the user not bored waiting for the page to be written I place at the top of the page the Response.buffer=false, however, there's some graphics that are built by another asp page and they are called by the first BUT, perhaps the sentence...
  3. atoledo

    About Access Violations

    ahhhh ok! so what can i do to allocate memory? Thank's
  4. atoledo

    About Access Violations

    HI! I´m new programming in C++ in a multhreading environment. Please somebody know what´s happening when I´m debugging and I obtained an Access Violation at this point: 35373533 ??? What does it mean? Thanks!... The cursos comes from a function and instead of returning to the caller...
  5. atoledo

    A dialog

    Hi! How can I show a dialog box from a single window application. I´m triying to call the dialog box with the doModal function from the application but it gives me this error: Debug Assertion Failed! in the file wincore.cpp line 884 Thanks
  6. atoledo

    CTime problem

    When I debug my application it gives me the Access Violation when it tries to run the mktime function :S PLEASE HELP!!!! I have two days triying to manage this !!! Thanks
  7. atoledo

    CTime problem

    int checkingDate(string number,int dateDigit) { //int currentDigit=0; int good; int digitToCheck; long difDays; int newYear=0; string stringYear; int modCurrentDigit; string tempDigit; tempDigit.insert(0,number[dateDigit]); digitToCheck=atoi(tempDigit.c_str())...
  8. atoledo

    How to Initialize Controls in a Dialog Box!

    Hi! I need some help from you.... I am opening a dialog box with the dialogBox() function and calling this procedure to catch some messages: BOOL CALLBACK ReceivedVolanteProc(HWND hwndDlg, UINT message, WPARAM wParam, LPARAM lParam ) { switch (message) { case WM_COMMAND...
  9. atoledo

    Converting fron int to char

    How can I convert a int to a single char? Thank you!
  10. atoledo

    How to set a focus

    oK! thanks! I found the solution THAN YOU VERY MUCH!!!!
  11. atoledo

    How to set a focus

    BOOL ventanita::OnInitDialog() { CWnd *uWnd = GetDlgItem(IDC_USUARIO1); uWnd->SetFocus(); // TODO: Add extra initialization here return TRUE; // return TRUE unless you set the focus to a control // EXCEPTION: OCX Property Pages should return FALSE } yes but it doesn't...
  12. atoledo

    How to set a focus

    BOOL ventanita::OnInitDialog() { //Recover mthe control ID CWnd *uWnd = GetDlgItem(IDC_USUARIO1); // Set the focus uWnd->SetFocus(); }
  13. atoledo

    How to set a focus

    Hi! I´m a C++ beginner and I would like to know how can I set the focus to a edit box. I´m triying to build a login dialog and I would like to set the focus to the first edit box ( where the user puts his/her login). I tried to use GetDlCtrl and setFocus but no results! Thanks!
  14. atoledo

    Access Remedy Database from VB?

    HI! Could you please provide me the stirng connection that you use to connect to the remedy database. I have one that works well by VB6 but by ASP it doesn´t work PLEASE HELP!!!!!
  15. atoledo

    Connection String from ASP

    I am trying to write an ASP script which connects to our Remedy server with the ODBC driver provided in the client install Could somebody tell me which is the connection string that works! Thanks
  16. atoledo

    Accesing Remedy Database by ASP

    Hi! I´m trying to connect to an ARS Database from an ASP application using the Remedy ODBC driver, but it sometimes work and sometimes not. I don´t know if I´md doing something wrong when I´m trying to connect bue I´m really desperate. When the ASP application is trying to connect to the...

Part and Inventory Search

Back
Top