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 SkipVought 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. smythe

    explorer crashes

    I am running windows xp professional. Occassionally when I am in windows explorer, I get an error message and explorer crashes. explorer.exe - Application error The instruction at "0x70a7b0f" referenced memory at "0x18c04972". The memory could not be "read". Click on OK to terminate the...
  2. smythe

    sendmail issues in outlook express

    Hello, I'm having issues setting up a POP3 account in Outlook Express. This usually works fine at my house on my DSL connection... but right now I am at my parents for Thanksgiving using their dial up connection. I have entered all the POP3 information correctly: incoming server...
  3. smythe

    Can programming be separated from software design?

    I completely agree with rosieb, in a perfect world you theoretically can do this (college course) but in the real world... Designs specifications change, management changes their minds, and communication is often tangled... depending on the company, it's current financial status, and a host of...
  4. smythe

    diff

    Well... I finally though of trying to run windiff from the command prompt... I typed windiff -h and a whole new help box appeared displaying options for a command line interface which is exactly what I needed to accomplish this. The frustrating part about this is that there is no mention of...
  5. smythe

    diff

    Where can I get the legacy FC program? It does not appear to be included with the cygwin utilities. Thanks
  6. smythe

    diff

    Well I got the unix diff working no XP, but it doesn't do everything I need. Does anyone know of a command line interface that creates output similar to Microsoft's windiff.exe? Windiff gives me what I need, but I need to pipe the output to standard output... how can I accomplish this?
  7. smythe

    diff

    Thanks, that is useful. I actually ended up using this http://unxutils.sourceforge.net/ which is basically the same thing you recommended I think but does not require an emulator. Thanks again.
  8. smythe

    diff

    Thanks but this is what I needed: http://www.cygwin.com
  9. smythe

    diff

    I need a unix like "diff" for use with Windows XP. I need to run this on the command line and send the output to standard out. Does anyone know where I can get an XP port of diff? Thanks in advance. Kevin
  10. smythe

    diff

    I need a unix like "diff" for use with Windows XP. I need to run this on the command line and send the output to standard out. Does anyone know where I can get an XP port of diff? Thanks in advance. Kevin
  11. smythe

    Databases in Visual C++

    This is a broad question. There are many ways of connecting to a database in visual c++: DAO, ADO, ODBC Which one you use depends on your requirements and the type of database you are using. Here are some good tutorials using MFC with databases: http://www.codeguru.com/mfc_database/index.shtml
  12. smythe

    line parsing

    The boost tokenizer class is an excellent library made readily available that can accomplish this: http://www.boost.org/libs/tokenizer/tokenizer.htm Also, this code may be useful: #include <iostream> #include <fstream> #include <string> using namespace std; //... string file,line,word...
  13. smythe

    vb reference to COM

    Thanks, got it working. The COM object was registered properly, but I was simply using the wrong name for a parameter in the CreateObject function. It needed to be Set comSched = CreateObject(&quot;Novar2BCM.Novar&quot;) instead of Set comSched = CreateObject(&quot;Novar2BCMLib.Novar&quot;)...
  14. smythe

    vb reference to COM

    CreateObject How do I use CreateObject in VB to instantiate a dll instead of doing it in the references. This should be simple, sorry I'm a c++ programmer. For instance, I reference my Novar.dll in my references then use this code...
  15. smythe

    guilt feeling to change jobs

    Actually, that should be &quot;eggggsselent&quot; Mr. Burns style!
  16. smythe

    cut command???

    Have you tried looking up possibilties using sed or awk?
  17. smythe

    find a record (DAO)

    Sry that should be strcpy(d,COleData_i.Format(&quot;#%m/%d/%Y#&quot;)); small syntax error...
  18. smythe

    find a record (DAO)

    It's probably the way you are formatting the date. DAO often looks for #'s on the date. Try strcpy(d,COleData_i.Format(&quot;#%m/%d/%Y&quot;#)); instead of strcpy(d,COleData_i.Format(&quot;%m/%d/%Y&quot;)); if that still doesn't work this discussion may prove useful...
  19. smythe

    guilt feeling to change jobs

    You have to do what's right for you, that doesn't mean you should burn bridges or leave your company in a bad spot... have you thought of accepting the other position and possibly contracting your current job on a part time basis to train the other employees up to speed? Just think what...
  20. smythe

    STL (vector) warnings

    Take a look at this article: http://www.codeproject.com/vcpp/stl/stl_without_warnings.asp

Part and Inventory Search

Back
Top