| Thread | Last Post | Replies |
|
| Detecting if SMTP server is running | 05 Sep 2005 12:15 GMT | 2 |
I'm working on a project where some business process rely on several external servers to perform processing. These are Sql Server x 2, Credit Card processing and Mail Server. Before entering the business process, I'd like to verify that each of these
|
| Q re class layout with embedded structs | 05 Sep 2005 11:02 GMT | 1 |
A friend and fellow programmer asked, and I didn't know the answer: When a CLR class contains fields of non-scalar types (structs, say), are these structs then laid out in memory immediately within the class instance image, or are they converted implicitly into reference types and ...
|
| asynchronous logging with enterprise library logging application block. | 05 Sep 2005 10:00 GMT | 1 |
I am trying to use asynchronous logging using MSMQ and I have configured the properties as defined in the help (see below) I don't understand where the property 'MsmqPath' is in the app.config for MSMQDistrbutor.exe is it meant to be an aplication settings or an enterprise ...
|
| Installer classes and extending them | 05 Sep 2005 09:22 GMT | 6 |
The documentation on ServiceInstaller.CopyFromComponent says Note If you are using the Visual Studio designer, this method is called at design time when the user clicks Add Installer on a component that specified this class as its installer. The installer takes all information it ...
|
| Process.Start and dual monitor | 05 Sep 2005 04:08 GMT | 1 |
Anyway to start a process to run in the same monitor as the caller by using the Process.Start()? Best regards, Paul.
|
| Thread.Start() | 04 Sep 2005 22:39 GMT | 7 |
In the following example, could HasStarted() ever return false (meaning that ThreadJob() would get called *after* Foo() returns)? Basically I don't ever want Foo() to return until after the thread has executed.
|
| problem with VB code on some machines (.net bug may be) | 04 Sep 2005 22:04 GMT | 1 |
I have made my first visual basic .net 2003 application and I get the following message on 1 of my computers (it works on 3 others). Mailer4u.exe - Common Language Runtime Debuggin Session Application has generated an exception that could not be handled.
|
| regex result | 04 Sep 2005 18:01 GMT | 1 |
is it OK to get regex result of pattern which has duplicate reference names like StrDatePattern As String ="\b(((?<year>\d{4})-(?<month>\d{1,2})-(?<day>\d{2}))|{(?<month>\d{1,2})
|
| System.Net.HttpWebRequest - help | 04 Sep 2005 11:37 GMT | 2 |
Thanks folks! I'm new to this. I'm trying to send a username , password to a website from my vb program using httpWebRequest
|
| Posting values between pages | 03 Sep 2005 22:49 GMT | 1 |
That ASP.NET pages post to themselves, how do pages share information amoung themselves? As in, if my index.aspx has to post data to nextpage.aspx, how does it happen? Is it left to the developer to persist relevant control values in a state dictionary such as Session
|
| Creating the Double2 type | 03 Sep 2005 17:47 GMT | 10 |
I have some problems with the default rounding method of C# check an earlier post of my : http://groups.google.be/group/microsoft.public.dotnet.framework/browse_frm/threa d/12ed0c44b2ffbddf/a410c5e788c35f06?l=nl#a410c5e788c35f06 To create a workaround for this problem, I wan't to ...
|
| Banker's Rounding by default, a big mistake !! | 03 Sep 2005 17:17 GMT | 8 |
Check the following example: it's a simple presentation of a ticket. double[] lines = new double[5]; //Set some VAT's lines[0] = 1.245;
|
| server side http for a non-web server | 03 Sep 2005 11:10 GMT | 1 |
I'm evaluating using http to carry data between a client and a non-web (C#) server application. This sounds great as the browser already has an http implementation and http is an open protocol. I was expecting to find a server piece that implemented the server side
|
| Store date permanently | 03 Sep 2005 11:05 GMT | 12 |
Hi, I'm writing an activation system for a software, which allows a 15 days grace period. Now the question is... how can I store the date? It has to be kept even if the software is reinstalled, and it must not be too easy to find/delete. I could write a hidden file somewhere in ...
|
| How to control order of properties in a class | 03 Sep 2005 07:04 GMT | 2 |
I have created a class with some properties Class Manager Private msName a s string Private msSurnaname as string
|