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. adrstan1

    Re-write from scratch, time for a new design

    Start from here: http://www.cs.wustl.edu/~schmidt/ACE-overview.html And also take a look at the wxWidgets project and maybe Boost
  2. adrstan1

    What Skills Would You Like To Acquire?

    Dig intro the linux kernel sources ...
  3. adrstan1

    free source control programs

    or subversion
  4. adrstan1

    Get an Error as soon as the program runs.

    Have you used a debugger ?
  5. adrstan1

    server to client messages

    How your server code looks like ?
  6. adrstan1

    Please help me to parse XML documents with C/C++

    Use xerces: http://xml.apache.org/xerces-c/ Is coming with good docs and examples
  7. adrstan1

    Socket for Data Stream

    Use SSL
  8. adrstan1

    software to parse and evaluate user defined fields and formulas

    You can existing parsers to generate code according to a grammar describing your expression processing. Take a look at: yacc, bison, lemon, boost spirit
  9. adrstan1

    How to format ascii text and convert to pdf?

    no, you can use tools like groff or Latex ...
  10. adrstan1

    Int array to Char array conversion?

    Just send the integer buffer byte by byte after converting the data to the network host order (using htonl function). Is there a hidden reason your are not proceeding in the normal way ? "In other words I guess this should be text form because I do not have to account for a little/big endian...
  11. adrstan1

    Java/Sun or Microsoft.net

    Java, if the application will run on several platforms. If you know for sure the application is meant to be used on Windows only, than .Net Anyway, swtiching from Java to .Net is quite easy
  12. adrstan1

    No Predictions for 2006???

    jmd0252, I use debian linux as desktop at home, and Windows XP at work (the second is not a choice). But even so, I use cygwin on windows, since the Command Prompt is far to be as powerful as the bash shell
  13. adrstan1

    No Predictions for 2006???

    My prediction: - Linux will rule the server market - Windows will continue to dominate the desktop market and take our hard earned money - .Net will continue to gain new followers against Java, unfortunately ... - Embedded platforms software development will have a boom - And, unfortunately...
  14. adrstan1

    scanned images

    You want to copy the text part from the first picture into an imgage, or you actualy want to paste the text part into a text document, as text ? If first is true, use any image viewer software (Paint for example). If second, use an OCR program, but it may not work perfectly, depending on the...
  15. adrstan1

    When to switch Operating Systems

    Besides Windows, I think is good to teach kids to use a Linux system also, is becoming more and more popular these days ...
  16. adrstan1

    upload a resource file on a ftp server

    Hi, I'm not a MAC user, sorry if the questions looks stupid. I'm trying to upload a rsrc resource file on a ftp server using the shell (terminal). I'm using MAC OSX 10, the ftp server is hosted on a Solaris 2.8 machine. The problem is the uploaded file has 0 bytes size (I understood because is...
  17. adrstan1

    Timer in C

    Switch to another compiler, why are you keep using TurboC on Windows 98. Than use function SetTimer to set the timer and catch the WM_TIMER message Windows will send after the timer will expire. After finishing, kill the timer with KillTimer
  18. adrstan1

    send file into an FTP

    Or use curl in your script
  19. adrstan1

    How to program web-browser?

    Do you really want to program a web browser, or just want to provide internet browsing capabilities to your application ? If the second is true, since you have specified you want your code to be cross-platform, look at wxMozilla: http://wxmozilla.sourceforge.net/downloads/ which embeds the...
  20. adrstan1

    how to make sure a packet is sent out?

    Let me see if I understand correctly. The problem is that you want to send a packet to yourself, but you are not receiving any packet ?

Part and Inventory Search

Back
Top