Search:

Type: Posts; User: Amy N.

Search: Search took 0.01 seconds.

  1. Thank your for your response. I've got the...

    Thank your for your response.

    I've got the ID part done already. I just need to know how, from the local computer, the user can read that file remotely. This would be very simple if the file...
  2. how would I go about doing something like this?

    From a C program running from a local system, when it first executes, I would like check its ID against a text file located on a remote FTP site or a website. At that FTP site, there will be a text...
  3. Replies
    1
    Views
    1,013

    how to get the date through the Net?

    From a C or C++ program, how do I get the date from the Net?

    So let's say the date on the local PC may be changed or incorrect, extracting the date from let's say, Google, would give me the...
  4. I tried system ( ) already, but the compiled...

    I tried system ( ) already, but the compiled program hangs, until I press carriage return.

    How can I resolve that problem? Thanks.
  5. I read up further on this, and it looks like I...

    I read up further on this, and it looks like I need to use CreateProcess () instead.

    Anyone knows how I can solve the above problem using CreateProcess () ?

    Please show the whole syntax. ...
  6. anyone knows how to use the ShellExecute command?

    I'm on Win XP, with cygwin installed.

    From the shell, I can run the command c:\cygwin\bin\ls -l > filename
    This puts the output of the directory listing of the current directory into the...
  7. At the shell in cygwin, all those commands run...

    At the shell in cygwin, all those commands run fine, but they hang in the C program.

    I used Visual Studio to compile the C program. As far as what the systems commands were, they were any UNIX...
  8. Replies
    2
    Views
    6,065

    where to download grep, sed, awk for Windows?

    I would like to utilize these commands when I write C programs in Windows.

    I'm used to UNIX commands such as grep, awk, sed, ls, cat, diff and so forth. I would like to run similar commands in...
  9. porting a C program from Solaris to cygwin in Windows?

    I just installed cygwin 1.7 to my Windows PC.

    I have a C program that compiles fine using gcc on Solaris 10, x86. This C program contains system calls like:

    system ("ls -l > file.txt");
    ...
  10. OK, I just changed it to something else, like: ...

    OK, I just changed it to something else, like:

    system ("ls -l > tmp_file");



    The same problem occurred. The compiled program hangs when it reaches this command. To make it continue, I...
  11. It looks like it's not the UNIX commands that are...

    It looks like it's not the UNIX commands that are causing the problem.

    If I type the Windows commands, I still have the same problem.

    I think that my syntax for the system command is not...
  12. problem running a C program in the cygwin shell in Win XP

    Hi,

    I just installed cygwin on Windows XP. I used Visual Studio to compile a test
    C program. If I were at the shell in cygwin, and typed this command:

    $ date > tmp_file

    The content of the...
  13. Replies
    6
    Views
    5,305

    No, a GUI interface. So, for example: The...

    No, a GUI interface.

    So, for example:

    The user double clicks on something in Windows, the GUI pops up, allows them to enter in values in this GUI, and then, when they're finished, it calls up a...
  14. Replies
    2
    Views
    4,383

    how to install gnu C compiler for Windows?

    I easily installed the gcc compiler on Solaris by running the tar xvf command. All files got uncompressed, and I can then use the compiler because gcc got installed on Solaris.

    I tried to do the...
  15. Replies
    6
    Views
    5,305

    any shareware GUI to use for Windows ?

    Hi,

    I've been writing some C codes using gcc in the UNIX environment and have no experience on the Windows environment. I figure I can still write with gcc in Windows. But I'm not familiar with...
  16. I should explain my problem better by describing...

    I should explain my problem better by describing what I'm doing:

    My platform is on Solaris. I have already written C codes to
    interpret data AFTER they got extracted from Microsoft Access. The...
  17. how to write Microsoft Access MDB file to a text file?

    I'm in the UNIX environment. I'd like to read a Microsoft Access MDB file, and convert the contents of that file into an ASCII text file. I want to write a C program to do this.

    Does anyone know...
Results 1 to 17 of 17