|
Well, there are other methods, but they are all just as likely to come up. Write a service, as someone said.
Christian Graus - Microsoft MVP - C++
Metal Musings - Rex and my new metal blog
"I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
|
|
|
|
|
Write a Windows Service then. There is no guarantee that it will run at startup because the user may disable the service, but this is good practice because it leaves the user in control.
Deja View - the feeling that you've seen this post before.
|
|
|
|
|
What??? Please write full sentences to explain what you are after.
I have outlined an alternative approach to you for starting an application up automatically. This is the other way to do this.
Deja View - the feeling that you've seen this post before.
|
|
|
|
|
sorry about that..
do u have other way . I dont use GUI in my programmme but if I have I cant use windows service.??
tkml123
|
|
|
|
|
Hi '
I am in the process of learning C # Asp.Net I would appreciate the fact of someone could guide me how to learn this . I have tried to mailpulate some codes but ....
Thanks,
Ali
Life is too short to be counted, enjoy life.
|
|
|
|
|
If u r familiar with java then most of the syntax of C# is like java.
however u shud try to write simple programs but dont manipulate others code at this stage.
|
|
|
|
|
Buy a book and work through it, then come back here and ask questions to help you from there.
Christian Graus - Microsoft MVP - C++
Metal Musings - Rex and my new metal blog
"I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
|
|
|
|
|
Asalam o Alaikum:
I have two dates like (13:04:09 and 14:04:03) i want to calculate time diiference between them .
Is there any function in c++ to reslove this issue.
Thanx in advance
|
|
|
|
|
Farhan Ali wrote: Is there any function in c++ to reslove this issue.
I don't know. Ask in the C++ forum.
---
single minded; short sighted; long gone;
|
|
|
|
|
In C# you can use Datetime objects for this operation.....
Why you posted this in c# forum?
My small attempt...
|
|
|
|
|
Hi,
In my Client Server Programming, when i use the same machine as Client and
Server, Everthing is going Fine. But when i use different machine,
I am getting Error as A connection attempt failed because the connected
party did not properly respond after a period of time.
what is the reason.
Sakthi
|
|
|
|
|
Check the security settings like firewalls and all
Then make sure that the network connections are working
My small attempt...
|
|
|
|
|
Hi,
Its not because of FireWall. I am getting this error while connecting with
the client in LAN. Is there any way to set TimedOut for Connections in
Asynchronous Socket Programming.
Sakthi
|
|
|
|
|
Which tool are you using?
is that msgConnect?
My small attempt...
|
|
|
|
|
Hi ,
I am using Visual Studio.
With Thanks
Sakthi
|
|
|
|
|
can you just paste the exception you are getting
My small attempt...
|
|
|
|
|
Hi,
A connection attempt failed because the connected
party did not properly respond after a period of time.
Sakthi
|
|
|
|
|
I once ran into this error and couldn't figure it out for literally hours.
Then I realized I had typed in '45' for the timeout which, naturally, is specified in milliseconds. I was telling it to wait 45 milliseconds to timeout.
I sheepishly changed it to 45000 and went about my business.
Check for that 
|
|
|
|
|
Hi,
i didnt set any timedout parameter for Socket Connection.
As for as I know TimedOut can be set for sending and receiving messages.
If i want to set Timedout for Socket Connection how should i do.
Sakthi
|
|
|
|
|
Can anyone cite any examples of the C# language being implemented outside of Mono and .NET?
|
|
|
|
|
Just googled it. http://www.dotgnu.org/[^]
"Throughout human history, we have been dependent on machines to survive. Fate, it seems, is not without a sense of irony. " - Morpheus
"Real men use mspaint for writing code and notepad for designing graphics." - Anna-Jayne Metcalfe
|
|
|
|
|
Thanks. What did you Google? I've not had much success excluding things from a Google search.
|
|
|
|
|
Well niether did I, it was on the 5th page for "C# NOT .NET NOT mono" Obviously, "NOT" doesn't seem to be google search operator (should be "-"), but hey, it's morning :->
"Throughout human history, we have been dependent on machines to survive. Fate, it seems, is not without a sense of irony. " - Morpheus
"Real men use mspaint for writing code and notepad for designing graphics." - Anna-Jayne Metcalfe
|
|
|
|
|
1. what is dynamic polymorphism?
2. I have three classes c1,c2,c3. In c1 and c2 I have same method m. Now if I access the method in c3 by inheriting from c1 and c2 which class method executes c1 or c2. plz answer these...
yamini
|
|
|
|
|
The answer to two is that there is no answer, unless we first assume that c1 -> c2 -> c3. There is no way to inherit from more than one class in C#.
Christian Graus - Microsoft MVP - C++
Metal Musings - Rex and my new metal blog
"I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
|
|
|
|