|
I'm porting old VB6 code that uses the Winsock control to C#. I haven't done any socket programming and I wonder if anyone has a good reference/tutorial/howto that I can use to start getting up to speed.
I'm appealing to the hive mind while I proceed ...
Started by rathkopf on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
MSDN is a good place to start
Are you working on: a client ( TCPClient ) or a server ( TCPListener )
Code Project has a great tutorial
The August 2005 MSDN Magazine had an article about System.Net.Sockets and WinSock:
http://msdn.microsoft.com/en-us... .
|
|
How does one go about installing a recent version of mono on a linux distro other than Novell's Suse?
http://www.mono-project.com/Main_Page promises a "Linux" download, but they 'only' offer downloads for Suse and links to outdated versions of mono ( ...
Started by lexu on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at serverfault):
So ....
To develop software with Mono, install the mono-devel package on Etch (4.0) using aptitude or similar package manager .
From http://www.mono-project.com/Other_Downloads :
Mono is available in the current stable Debian release and in later versions .
|
|
The 'click sound' in question is actually a system wide preference, so I only want it to be disabled when my application has focus and then re-enable when the application closes/loses focus.
Originally, I wanted to ask this question here on stackoverflow...
Started by sieben on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
So instead of this:
webBrowser1.DocumentText = "<h1>Hello, world!</h1>";
try this:
webBrowser1.Document.OpenNew....
I've noticed that if you use WebBrowser.Document.Write rather than WebBrowser.DocumentText then the click sound doesn't happen .
|
Ask your Facebook Friends
|
Good day all!
How do you guys feel about "HowTo" keyword domains? ie. HowToFlyAKite.com
For use with: Informative content, videos, etc...
Worth it or no?
Have a great day!
Started by MikeRibby on
, 11 posts
by 8 people.
Answer Snippets (Read the full thread at namepros):
But the availability of the "HowTo + single verb" domains very first HowTo domain a few weeks ago (feels like yesterday) Creation Date: 2012-04-12.
Be used for "self help" books/sites...
|
|
I've found HowtoForge very helpful. Is there any other similar sites that doesn't have too old tutorials which won't work nowadays?
Started by raspi on
, 12 posts
by 11 people.
Answer Snippets (Read the full thread at serverfault):
By far the most useful....
The BEST howto I've seen so far is a one-off site for setting up a mail filtering gateway server
You can find the howto here
I've often thought that site would be a good model for what a howto site stuff...
|
|
I currently develop import utilities for a network company using various versions of visual studio, java, crystal reports and apache (5.5 and 6) so its obvious each install requires its own virtual desktop. I will also require the desktops to access the...
Started by phill on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at serverfault):
To Answer your question about ESXi Howto:
how-do.
Machine to install the Hyper V Management Console.
|
|
I've created a svn repositoy on a linux server (Debian) and used a client on a windows machine to check my java sources in.
Now I've set up a Hudson server on a different linux server (Ubuntu) to periodically run tests on my code. But the tests fail with...
Started by tangens on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If Hudson requires 7-bit....
SVN itself is encoding agnostic: it'll just store byte-for-byte what's passed in .
It may be that the broken char can be replaced by some pure-ASCII entity .
The first thing to identify is which character is causing the problem .
|
|
I'm bad dumb and having no google fu. How do you get diff (on os x if it matters...) to look like svn diffs? Couldn't figure it out from the man page either. :(
What I want
Index: test.txt --- test.txt (revision 365) +++ test.txt (working copy) @@ -1,...
Started by diffnewb on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
It's not exactly the same (no big row of equals signs, for example), but it should do what... .
Diff -u file1 file2
From the diff man page:
-u -U NUM --unified[=NUM] Output NUM (default 3) lines of unified context .
Diff -u file1 file2
You want the -u flag.
|
|
Hi,
Our product has several products that customer can install created as separate installation packages (MSI).
We have a requirement to have single package for the installation that will:
Show one UI with progress Allow user to choose which features/...
Answer Snippets (Read the full thread at stackoverflow):
If you are using InstallShield as your msi designer, one thing you could try is making an InstallScript project that contains all the different msi packages... .
Until Wix's Burn is ready we really don't have much of a choice when it comes to bootstrappers .
|
|
How do I find out which version of .NET is installed?
I'm looking for something as simple as "java -version" that I can type at the command prompt and that tells me the current version(s) installed.
EDIT: I better add that Visual Studio may not be installed...
Started by sepang on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Dir /b /ad /o-n %systemroot%\Microsoft.NET\Framework\v?.*
You can only run the first two from Visual Studio Command prompt if you have Visual... .
GACUTIL /l ? 3.
CSC 2.
Just type any one of the below commands to give you the latest version in the first line
1 .
|