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

  • Users: mseth
  • Order by date
  1. mseth

    regular expressions

    there's also the PCRE project - Perl Compatible Regular Expressions, it's in a nice DLL form.
  2. mseth

    secure shell with c++

    Just in case you don't feel up to searching or have trouble finding it, http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html
  3. mseth

    Problems linking a dll project!!!!

    http://openil.sourceforge.net/download.php is free and might be useful?
  4. mseth

    I'm new to C++

    http://www.thefreecountry.com/ http://freebyte.com/programming/ Those are 2 decent places to start. For windows I'd recommend MinGW, a port of g++, which is what the above bloodshed.net setup uses. As an alternative IDE you might like http://www.parinyasoft.com/
  5. mseth

    secure shell with c++

    You could download the source to 'putty' this might help?
  6. mseth

    multiple checkBox selection.

    You could try toggling 'flag' bits then do a switch/case something like this.. unsigned int flags = 0x0; if(Checkbox1.Checked == true) flags &= 0x01; if(Checkbox2.Checked == true) flags &= 0x02; if(Checkbox3.Checked == true) flags &= 0x04; ... switch(flags) { case 0x01...
  7. mseth

    Save cursor in a file (.CUR file format)?

    I think it's very similar to icon format, try www.wotsit.org they have info on .ani animated cursor format.
  8. mseth

    Disk Wiper

    www.google.com/search?q=Eraser+disk+wipe "Eraser
  9. mseth

    Problem creating an MDI interface

    You may wish to invest in "Programming Windows, 5th Edition" by Charles Petzold. Also, Dev-C++ comes with an MDI example if I remember correctly.
  10. mseth

    File name ending...

    .cc is also another common extension and for headers .hpp is sometimes used
  11. mseth

    adapting console code to a gui

    you can use sprintf instead to print to a destination buffer then set the text of the control to the buffer's contents. int i = 5; char buf[32]; sprintf(buf, "The number is %d", i); SetWindowText(hWnd, buf);
  12. mseth

    looking for good C++ environment

    http://www.parinyasoft.com/ MinGW Studio is also quite nice.
  13. mseth

    Visual Studio and GNU compilers

    http://petra.hos.u-szeged.hu/~aking/www.parinya.ca/ This is very very similar to Visual Studio and is designed around the MinGW port. As far as I know, you can't make Visual C++ work with any other compiler.
  14. mseth

    Find a letter in char

    isalpha is in <ctype.h> (or if you're doing C++) <cctype>
  15. mseth

    How to set up sudo

    You need to edit the /etc/sudoers file. To get information on this file, try this command: man sudoers
  16. mseth

    VNC shows me a blank screen

    Look at the vncserver script. It by default launches an xterm and twm (tiny window manager) if i remember correctly. You can, after logging in, kill the twm, and this will just leave the xterm in the middle of your screen. After this, type "startkde" (or "startkde &") and KDE should load...
  17. mseth

    Get file Size for files &gt; 4 GB

    GetFileSize returns the low-order dword of the file size, if the size is > 1 DWORD then you can optionally pass in another to get the high-order dword, which will make up the total file size. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fileio/base/getfilesize.asp
  18. mseth

    Redrawing a Win32 Interface

    Since he's using a button to start the looping, he could just disable the button after the thread's been launched. Maybe have a "stop/pause" and "start/resume" buttons for controlling the thread.
  19. mseth

    Flicker Free Resize?

    Here you go, this site is great for several more "advanced" tutorials with windows coding, http://www.catch22.net/tuts/flicker.asp
  20. mseth

    two things...

    the functions you referenced were from Borland's old DOS C and C++ compilers I do believe. In windows, there are functions to manipulate the console window's text and attributes, MSDN should have more information.

Part and Inventory Search

Back
Top