Hi,
I am working on VS 2008 and 3.5 framework.
I had three windows services.
I placed all three in a single solution, created installer individually for each of them.
Then created a setup project.
When I build it says build failed .
But I checked on the errorlist, (i enabled the diagnostics in options menu), but there was no error at all...
I am currently using Process.Start to send simple emails from my WinForms app. Can you think of any way to add a file attachment to the email? (Edit: using Process.Start?)
Here's what I use now:
Process.Start("mailto:[email protected]?subject=" + HttpUtility.HtmlAttributeEncode("Application error report") + "&body=" + body);
...
I was wondering if anyone had any links to some decent blogs helping developers to make a transition from C#/Asp.Net to iPhone development.
I'm really looking for something that will explain the mindset I need to be succesful using Cocoa Touch, Objective-c and Xcode, coming from a VS/C#/ASP.Net development platform. Sort of an hollisti...
Actually I want to clear that shall i do ASP.Net 2.0 first and than move to 3.5 and 4.0 ?
OR
I start with ASP.Net 3.5/4.0 and most of ASP.Net 2.0 will also be covered in it, and the rest should i cover afterwords?
I'm concerned about the fact that, if i start covering ASP.Net 2.0, will i be studying outdated stuff ?
Which approach wi...
I am not getting this Linq thing. I can write complex SQL queries and have written a few xpaths. I am trying to learn Linq to XML and cannot get past my first try despite poring over every terse example I can Google.
Given XML:
<Manufacturer ManufacturerName="Acme">
<Model ModelName="RobotOne">
<CommandText CommandName="MoveForward"...
Good Evening,
To all who know Microsoft's upgrade policy. I own VS6 Enterprise. Is VS6 Enterprise eligible for upgrade? I also own pro vs 2005/2008 but would like the enterprise edition upgraded. I have found posts that say yes and no. What is the real policy?
Thanks again for your comments. I love stack over flow!
Brennan
...
What is the most reliable way to determine which version of SharePoint is installed. Whether it is WSS or MOSS. If MOSS, whether it is standard or enterprise.
I want to programmatically detect the exact SharePoint version installed..
PS: I already have posted this question http://www.sharepointoverflow.com/questions/1395/determine-whic...
In .NET, method signatures don't tell me if I have missed handling some exceptions that could be thrown by my code.
Is there some tool that can warn me, if say I am using a HashTable remove but haven't handled the ArgumentNullException? I don't want to be surprised at run time.
And does this mean that you need to know your code very wel...
Ok... I want to make win32api WriteProcessMemory works.
(*Just for learning winAPI on .Net platforms ! ^_^*)
I'm using Nemerle but the syntax is similar C# and I can read C# code sure.
So here is my steps :
1) get win api function
[DllImport("kernel32.dll",SetLastError = true)]
public static extern WriteProcessMemory
(hProcess : Int...
I am having a problem using HttpWebRequest against a HTTP daemon on an embedded device. The problem appears to be that there is enough of a delay between the http headers being written to the socket stream, and the http payload (a POST), that the socket releases what's in the socket buffer to the server. This results in the HTTP request ...
My project requires some image transcoding functionality, i.e converting images into various formats. My requirements are:
Preferably scalable, for performance reasons.
Compatible with Microsoft .NET
Can be either paid software, or FOSS.
Can anyone suggest some good libraries they have come across. Thanks!
...
i'm doing simulation which generates thousands of result objects.
Each object size is around 1mb, and all the result objects should be on memory to be queried for various ad hoc reports. And it takes 1~2 secs to make one result object.
So it takes more than 5 minutes to get one simulation done even though i fully use my quad-core cpu wi...
We have a problem with Flash in the .NET WebBrowser component. At a customer of ours, on half of the computers (150) the candidates can click on a Flex ComboBox but they cannot select anything in the ComboBox. If they click on an item in the ComboBox, the ComboBox closes itself but the item is not selected.
A possible idea we have is t...
Is RSS usually generated when you add new article/blog/information? I mean do you usually generate it when adding operation is successful?
I have built property website for client and they are using remote web app with property management from different company which feeds our website with clients properties using XML feeds.
How do I ...
Is there a way to display the connection properties dialog for connection string browsing(for database) in run time?
As I want the user to be able to connect to various database using the GUI.
The same one as we get in visual studio connection properties dialog.
Thanks in Advance
...
I have some c++ code that is a snap-in for a MMC based application. This snap in uses a .net 2.0 dll via a COM wrapper (AssemblyA). AssemblyA lives in the same directory as the app that launches the MMC session. AssemblyA uses some other .net dlls (OtherAssemblies) which, for reasons beyond my control cannot live in the same directory ...
I have a website calling a WCF service and I want the service to run with the browser culture. I am using the service in ASP.NET compatibility mode. This is working so far - It is possible to set the culture of the WCF service using the culture and uiCulture of the globalization section.
My problem is that enableClientBasedCulture shows...
I'm trying to find a component or a method which will detect credit card number of varying types in text.
I've found a lot of information on validating a credit card number but I need to be able to take a body of text e.g. a web page and check to see if credit card numbers, bank account numbers and or sort codes are present.
Does anyon...
I am writing a comserver that have a pointer as parameter:
STDMETHODIMP TServerDidleComTestImpl::GetMyObject(IDummyComObj** outObj)
{
//Do stuff
}
When I am writing a client in c++ I have no problem with this method, but when trying to write a .Net client the tlbimp.exe says:
Type library importer has encountered
a method with...
Does CLR try to resolve [not necessarily load] all the dependent assemblies when the program starts up?
That is, is the dependent assembly resolution done on demand?
Please note that I am not talking about Assembly.Load* [reflective] kind of load.
...