Search Result

Collapse
10 results in 0.0040 seconds.
Keywords
Members
Tags
console
  •  

  • ghoti70
    started a topic Scheduled Task odd behavior
    in .NET

    Scheduled Task odd behavior

    I have 2 .NET 4 console apps that I want to run as a scheduled tasks, but set up so that it does not need user logged in.

    Both apps are nearly identical, and are reading Exchange inboxes via IMAP.

    #1 copies attachments to a folder
    #2 saves the body to a database, based on the subject line.

    #1 is working perfectly, no problems.
    #2 works fine when run manually, or when the task is set up...
    See more | Go to post

  • Dusted
    started a topic Server Console and Form ?

    Server Console and Form ?

    Hello, I'm trying to write a multithreaded TCP server program, I want it to run in a console and continual check for incoming connections.
    EX.....
    Code:
     
           while (true)
           {
               clientSocket = serverSocket.AcceptTcpClient();
               handleClient client = new handleClient();
               client.startClient(clientSocket,Convert.ToString(counter));
                }
    ...
    See more | Go to post

  • Windows Forms button click activates console command

    Hello

    I have the following program: i made a console application in a windows form, i've put all the code in the MainProgram.cpp (not the Form1.h) and now i would like to do the following (managed to make the application show both the form and the console at the same time)

    When i click a button from the form, it should activate a switch - case portion from the MainProgram.cpp , which acts like a menu.

    Since...
    See more | Go to post

  • How to display and hide console in any application

    I have been told that it's hard to impossible to display and/or hide a console window from a Forms Application.

    I say it is not, however. It's really simple

    First, some declares.
    Code:
        Declare Function AllocConsole Lib "kernel32" () As Int32
        Declare Function FreeConsole Lib "kernel32" () As Int32
    Then you just use these functions and the already existing console...
    See more | Go to post

  • Logic
    started a topic How to Read a Specific Line from A Text File?

    How to Read a Specific Line from A Text File?

    Hi, I'm writing a console program in order to make my own keyboard shortcuts.
    Code:
    ConsoleKeyInfo input;
    
    do
    {
           if (File.Exists("info.txt") == true) ; 
           else Console.WriteLine("File not found! \nPress any key to try again..."); Console.ReadKey(true);
    } while (File.Exists("info.txt") == false);
    
    StreamReader reader = new StreamReader("info.txt");
    ...
    See more | Go to post

  • Mornejooste1
    started a topic Console.write

    Console.write

    Hi how can I get the following code to go into a listbox instead of being written into the console.
    Thanks

    CODE:

    Console.WriteLi ne( _
    "{0} | {1} | {2} | {3}", _
    message.UniqueI d, _
    message.From, _
    message.To, _
    message.Subject )
    See more | Go to post

  • Is there any way to copy all text from console window?

    Hello all,
    I am writing a console program in vb.net 2010 .net 4.0. Through out the program there are many lines of info. presented to the user in the console window. I was wondering if there is a way to copy all those lines from the code, cause I want to save the text as a log to the operations carried out.

    Thanks in advance.
    See more | Go to post
    Last edited by oscar2; Jun 26 '10, 05:06 PM. Reason: misspelling!

  • shockna1
    started a topic How to create a new win32 console application with C++
    in C

    How to create a new win32 console application with C++

    Im using Microsoft visual c++ 2008 and 2010 and neither of them will let me create a new win32 console application they will let me edit them but not make a new one. It used to work but evry time I try naw this thing pops up and says navigation to the webpage was canceled....
    See more | Go to post

  • 360monkey
    started a topic Console in Tkinter GUI

    Console in Tkinter GUI

    Hi Bytes Community!

    I am using tkinter to create a GUI and was wondering how to make a "console" widget embedded in the GUI. Sort of like the python command line but inside the GUI

    Thanks in advance!
    See more | Go to post

  • odwrotnie
    started a topic SVN crazy console

    SVN crazy console

    Hi!

    Why my svn client makes that strange encoding:

    etam:djangofram e etam$ svn update
    Pomini?\196?\15 3to '.'

    ?!

    It should be 'Pominięto'. The ?\196?\153 = ę :/.

    Thanks in advance,
    Etam.
    See more | Go to post
Working...