Click here to Skip to main content
15,887,135 members
Home / Discussions / C#
   

C#

 
AnswerRe: What is the best way to create background application? Pin
Saksida Bojan22-Aug-09 0:47
Saksida Bojan22-Aug-09 0:47 
GeneralRe: What is the best way to create background application? Pin
bonzaiholding22-Aug-09 0:55
bonzaiholding22-Aug-09 0:55 
GeneralRe: What is the best way to create background application? Pin
Saksida Bojan22-Aug-09 0:58
Saksida Bojan22-Aug-09 0:58 
AnswerRe: What is the best way to create background application? Pin
Baeltazor22-Aug-09 6:30
Baeltazor22-Aug-09 6:30 
AnswerRe: What is the best way to create background application? Pin
Natural_Demon22-Aug-09 9:17
Natural_Demon22-Aug-09 9:17 
GeneralRe: What is the best way to create background application? Pin
Saksida Bojan22-Aug-09 12:07
Saksida Bojan22-Aug-09 12:07 
GeneralRe: What is the best way to create background application? Pin
Mycroft Holmes22-Aug-09 14:28
professionalMycroft Holmes22-Aug-09 14:28 
GeneralRe: What is the best way to create background application? Pin
Natural_Demon23-Aug-09 2:16
Natural_Demon23-Aug-09 2:16 
eh, i remember i asked the same question when i played with MFC c++ 5,6 years ago.

it's impossible for an normal application to operate without a form/cmd.

than as solution, i said, you can write a DLL and hooked it the windows explorer, be it as service or something else, like a virus.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
using System.Threading;

namespace nowindow_application
{
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            //MessageBox.Show(bobo(1, 2).ToString(), "", MessageBoxButtons.OK, MessageBoxIcon.Information);
            Thread.Sleep(1000);
            Main();
            //Application.Run(new Form1(bobo(1, 2)));
        }

        private static int bobo(int a, int b)
        {
            return (a + b);
        }
    }
}

this application wil not not produce an executable file using visual studio 2008

//MessageBox.Show(bobo(1, 2).ToString(), "", MessageBoxButtons.OK, MessageBoxIcon.Information);
uncomment this file and you have a executable file in your bin folder.
so you can't build a application without a CMD or form layout.

i dind't spread any false hope or something, i asked this question before.

Bad = knowing 2 much

GeneralRe: What is the best way to create background application? Pin
Natural_Demon23-Aug-09 2:21
Natural_Demon23-Aug-09 2:21 
GeneralRe: What is the best way to create background application? Pin
Alan N23-Aug-09 4:18
Alan N23-Aug-09 4:18 
GeneralRe: What is the best way to create background application? Pin
Natural_Demon24-Aug-09 11:17
Natural_Demon24-Aug-09 11:17 
QuestionTimer doesn´t work by Server and Client! Pin
nhqlbaislwfiikqraqnm21-Aug-09 22:58
nhqlbaislwfiikqraqnm21-Aug-09 22:58 
AnswerRe: Timer doesn´t work by Server and Client! Pin
Xmen Real 21-Aug-09 23:24
professional Xmen Real 21-Aug-09 23:24 
GeneralRe: Timer doesn´t work by Server and Client! Pin
nhqlbaislwfiikqraqnm21-Aug-09 23:32
nhqlbaislwfiikqraqnm21-Aug-09 23:32 
GeneralRe: Timer doesn´t work by Server and Client! Pin
Xmen Real 21-Aug-09 23:45
professional Xmen Real 21-Aug-09 23:45 
GeneralRe: Timer doesn´t work by Server and Client! Pin
nhqlbaislwfiikqraqnm21-Aug-09 23:49
nhqlbaislwfiikqraqnm21-Aug-09 23:49 
AnswerRe: Timer doesn´t work by Server and Client! [modified] Pin
Saksida Bojan22-Aug-09 0:30
Saksida Bojan22-Aug-09 0:30 
GeneralRe: Timer doesn´t work by Server and Client! Pin
nhqlbaislwfiikqraqnm22-Aug-09 0:50
nhqlbaislwfiikqraqnm22-Aug-09 0:50 
GeneralRe: Timer doesn´t work by Server and Client! Pin
Saksida Bojan22-Aug-09 1:40
Saksida Bojan22-Aug-09 1:40 
GeneralRe: Timer doesn´t work by Server and Client! Pin
nhqlbaislwfiikqraqnm22-Aug-09 5:18
nhqlbaislwfiikqraqnm22-Aug-09 5:18 
GeneralRe: Timer doesn´t work by Server and Client! Pin
Saksida Bojan22-Aug-09 6:57
Saksida Bojan22-Aug-09 6:57 
AnswerRe: Timer doesn´t work by Server and Client! Pin
Alan N22-Aug-09 7:23
Alan N22-Aug-09 7:23 
GeneralRe: Timer doesn´t work by Server and Client! Pin
Saksida Bojan22-Aug-09 11:53
Saksida Bojan22-Aug-09 11:53 
GeneralRe: Timer doesn´t work by Server and Client! Pin
Alan N22-Aug-09 13:25
Alan N22-Aug-09 13:25 
GeneralRe: Timer doesn´t work by Server and Client! Pin
Saksida Bojan22-Aug-09 18:58
Saksida Bojan22-Aug-09 18:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.