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

    class memory allocation error

    Hi, why you set m_pMainWnd = &dlg; ? To start a dialog it's enough: CScenaDlg dlg; int nResponse = dlg.DoModal(); Have a look at the calling stack: wich is the last C instruction you see? Access Violation normally has to do with invalid pointers Tell us more
  2. Masi

    Data Environment question

    Do you make a call to the Requery method too?
  3. Masi

    Dataenvironment, requery, and freezed binded fields ( not updating )

    I try again: I'm trying with a simple form where there are just a couple of fields with dataSource, dataMember and DataField correctly binded to the only dataenviroment and the one and only RecordSet. As i run the application i see the data correctly displayed on all the edit controls; BtnNext...
  4. Masi

    Dataenvironment, requery, and freezed binded fields ( not updating )

    Hi all of you, the fields in a form, binded ( by DataSource/DataMember/Datafield) with a recordset do NOT automatically update in case of a MoveNext, MoveRight, ecc. If i set their text manually like : txtDescr = DE.rsTbl("Descr") instead, it works. any ideas?
  5. Masi

    Data Environment and Reports

    I know that it isn't the best you can do but, why don't you just explicitely call .Requery ? forgive my English, please masi
  6. Masi

    How can i send HTTP Request from C/C++ ? ..please help me

    I don't have time to build for you an example but, know this: usually HTTP servers comunicate in clear text so, have a look at the protocol specs. After that you can test the part you'll like to use for your application using a simple telnet connection. Once you have checked it out, the only...
  7. Masi

    debugging a dll

    If your debug version of your application is using the debug version of your dll, you should be able to set breakpoint directly in the sources of your dll, or to trace code from your application. You could also avoid to use to debug version of your application, tracing anyway your dll code by...
  8. Masi

    smtp

    It's easy, just try it out using a telnet connection. you can write <HELP> to see the function supported. Ones you've clear how to use it, exploit the POSIX socket library, witch is portable and, it works also in windows. Have a look and write here again if you have problems. Hope that...
  9. Masi

    Informix, Linux and -952 ( incorrect password )

    Yes, i've purchased it. Masi
  10. Masi

    Informix, Linux and -952 ( incorrect password )

    I've just upgraded the server. I had the .UC5 version and i upgraded to .UC8. Let me know it this is enough! Masi
  11. Masi

    Sendmail and Posfix

    If it takes too long, you probably have a problem! Check you sandmail.* or your linuxconf and select network->server->sandmail. Hope that helped Masi
  12. Masi

    Segfault with threads

    Try to get more control of the allocation and deallocation process to indentify where the problem is. I normally prefer to allocate objects in a initFunction and deallocate them in a shutdownFunction. Having to do with object and their destructor, the deallocation order can be important or, at...
  13. Masi

    Informix, Linux and -952 ( incorrect password )

    I was using an informix version with this bug!! The current one doesn't have this problem. Thank you anyway Masi
  14. Masi

    How to stop mail relay

    You should have a line in the configuration module witch is &quot;Enable ralay control&quot;. Enabling that you let your server manage only the mail to or from the authenticated clients. Witch are the local processes, clients logged in by a telnet server, and so on. i hope that helped! Masi
  15. Masi

    How can i export a query result in an ascii file having....

    It's working, thanks! But it seems, as in your example, that when it has to do with a lot of fields, it doesn't put them all in a raw having one record/raw like i want it, but it decide to put one field/raw! Thanks a lot for helping me Masi
  16. Masi

    How can i export a query result in an ascii file having....

    How can i export a query result in an ascii file having fixed field size instead of using a delimiter? I saw &quot;output to&quot; and &quot;unload to&quot; but, the first writes also column name and column value on each raw, and the second seems to force the use of a delimiter. Thanks for any...
  17. Masi

    Re-Direct cerr...

    You could do it at the prompt in this way: program_name 2> error.log Is it enough?
  18. Masi

    How keep alive some .exe

    Is it a windows application, a VB project? Can they comunicate by DDE ( Dynamic Data Exchange )? Can this process set up a lap allowing the remote control too? I need some dettail to help you, sorry!
  19. Masi

    Delaying my dll -Urgent

    You could use a timer! You enable it when you need it and disable it as you get the callback! Can you tell me why you can't syncronize it in another way?
  20. Masi

    Mandrake7.1 not responding after installation

    If you get another terminal by pressing Ctrl+Alt+F1 ( normally X window is on F7 so you should have F1, F2, F3, ecc.) loggin in as root you can try to reconfigure X running Xconfigurator. Instead if your computer is really blocking ( curious ), you can try, at the lilo boot, to type <<linux...

Part and Inventory Search

Back
Top