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...
Search Result
Collapse
10 results in 0.0040 seconds.
Keywords
Members
Tags
-
Scheduled Task odd behavior
-
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)); }
-
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... -
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
-
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");
-
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 ) -
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. -
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.... -
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! -
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.