|
dev
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
.NET Frameworkmicrosoft.public.dotnet.framework
Can't find reflected field for inherited event.
OmegaSquared -
10 Nov 2007 12:46 AM - 3 messages
In a VB application I have been using reflection to temporarily detach events during serialization (a technique suggested by Andrea Zanetti & Riccardo Munisso [link]). The technique involves using Reflection.EventInfo to get the list of events, then ...
IPC Remoting disconnected
RML -
9 Nov 2007 10:59 PM - 1 message
I am using IPC remoting to communicate an object between a client and server app. If I start the server app, then the client, all works fine. If I exit the client, and restart it about 2 minutes later, I get the error: ...
Allow Click-Once app run by Non-Admin user to log in event log
SHEBERT -
9 Nov 2007 10:16 PM - 7 messages
We create a new eventlog for our inhouse apps, and we all our clickonce (C#) apps are writting in the event log, if the user is a local ADMIN. but for non-admin users, our apps are unable to write to any event log. ...
Q: Looking for a good web services/.net tutorial book
G. Ralph Kuntz, MD, MS -
9 Nov 2007 1:18 PM - 2 messages
I am interested in write a client-server application in C# using web services and ASP.NET. I am looking for a good book containing a tutorial on how to do this. I want a C# front-end, not a browser ...
Is there any predefined delegate with no argument?
Dancefire -
9 Nov 2007 7:08 AM - 2 messages
Hi, I am looking for a predefined delegate which in form: delegate void NoArgument(); It's quite useful than other delegate with argument, I found MethodInvoker in WinForms, which defined in such form, but I don't want to add WinForm reference all the time, since my code nothing ...
.NET Seriously Broken
eBob.com -
9 Nov 2007 2:27 AM - 3 messages
I have a disastrous .NET problem after trying to install some fixes yesterday. Now everything I try to do in VS.Net results in a problem. Previous built ..exe's fail. Programs which used to build without errors now get errors. ...
Remoting - how to access server data?
r norman -
8 Nov 2007 9:53 PM - 11 messages
I am converting a C++ MFC client-server application to C# dotNet and I would like to switch my TCP/IP messages to use dotNet remoting concepts. I can successfully implement many remoting samples, for example from Wrox Press Professional C#. However all of these find ...
Tool for clickonce maifest and application signature validation
Jediah L -
8 Nov 2007 8:43 PM - 2 messages
Is there a tool (command line or otherwise) that can be used to validate the signature of a ClickOnce manifest or application file? Thanks in advance! Jediah L. ...
Problems with GDI objects
Jonathan Boivin -
8 Nov 2007 7:24 PM - 1 message
Hi, I've got some problems with loading bills using a bill usercontrol I built. If I load all current bills in my test environment (156) everything is fine once, but repeating the operation (which clear all the bills and reshow all ...
Reusing Threads
Richard MSL -
8 Nov 2007 5:16 PM - 3 messages
I have an application with a C# menu, that calls individual C programs, by starting a thread for each call. This way the program is in one thread, and the menu is in another thread, until they exit the program and that thread ...
is System.IO.Ports.SerialPort supported in 64bit?
Bandu -
8 Nov 2007 2:15 PM - 5 messages
Hi, is System.IO.Ports.SerialPort supported in 64bit? I'm writing C# application and its worked fine with 32 bit. But in 64-bit, System.IO.Ports.SerialPort never fire up the Event Handler (e.g. PinChangedEvent ). Please, Help? ...
How to identify a .NET project
kilo -
8 Nov 2007 3:21 AM - 2 messages
I routinely import legacy C++ projects then convert them to DLLs. My working IDE is Visual Studio 2005. How do I recognize which projects are considered as .NET which projects are considered managed/unmanaged? My goal is to convert these projects to ...
SerializationException: Unable to find assembly
Gordon -
8 Nov 2007 1:29 AM - 1 message
Hi All, I've encountered a tough situation. I have a client .exe that serializes an object to a file using the BinaryFormatter and the AssemblyFormat set to simple. It is deserialized by a different server process running on a remote ...
Fatal Execution Engine Error using unmanaged obj from 2 appdomains
redec -
7 Nov 2007 5:52 PM - 7 messages
I originally posted this in dotnet.languages.vc, and it was suggested that I post it in here as well...so here goes I believe I've found a bug in either the compiler or in the runtime....for some reason when accessing a specific unmanaged object from 2 appdomains it ...
How can I amend permission set "Report_Expressions_Default_Permissions" in "rssrvpolicy.config" file
GMG -
7 Nov 2007 12:43 PM - 1 message
I would like to deploy the reports (reporting services sql server 2005) without manual intervention therefore I would like to programmatically amend rssrvpolicy.config. How can this be done ? Help would be greatly appreciated. ...
.net framework 3.5 beta 2 interfere w/other versions?
David -
7 Nov 2007 2:03 AM - 4 messages
Hi, If I install .net framework 3.5 beta 2 will that interfere with the running of the version 2 or version 3? TIA, David ...
is it possible to mark my CLR function as UNSAFE in code or visual studio anywhere so that wehn vs d
DR -
7 Nov 2007 12:47 AM - 1 message
is it possible to mark my CLR function as UNSAFE in code or visual studio anywhere so that wehn vs deploys, it creates unsafe assembly? (instead of me having to manualy deploy in tsql!) ...
Problem uploading a file with HttpWebRequest
LEM -
6 Nov 2007 5:53 PM - 1 message
Hi all, I'm trying to upload a file from my application to a web server programmatically. I'm not using WebClient() because I need to make it compatible with the Compact Framework. The problem that I have is the following. ...
Get UserPrincipalName
Dan -
6 Nov 2007 3:04 PM - 3 messages
Hi, Is it possible to get the UserPrincipalName of a user from the WindowsIdentity object ? I'm only able to get the sAMAccount from WidowsIdentity.GetCurrent().Name. Thank you ! ...
In-Memory Assemblies
ThunderMusic -
6 Nov 2007 2:25 PM - 13 messages
Hi, I'm trying to make something work and I'm pretty sure it can be done, but I can't get it working. I have a encrypted file that contains everything my software needs: exe, dlls, et al. I want to make a "loader" that will decrypt the file and get ...
absolute assembly search path
T.G. -
6 Nov 2007 2:18 PM - 2 messages
Let's say I have a (dotnet) application based on a main .exe file referencing and using a number of other dotnet dlls. Normally these dlls would live in the application directory or in some other subdirectory relative to it. Is it possibile to specify in the application configuration ...
How to convert ArrayList to generic counterpart?
hvj -
6 Nov 2007 2:06 PM - 2 messages
Hi, I want to be able to convert an ArrayList containing objects of one type to a generic of a specified type, like List<T> ConvertArrayListToGeneric(ArrayList list, System.Type targetType) How do I do that? What I am doing now is to write a separate conversion method for every ...
wpf-dataBinding - set DataContext in xaml to an object in code
Rolf Welskes -
6 Nov 2007 1:27 PM - 4 messages
Hello, because there are no managed news group for window presentation foundation and one has told me I can use this, here my problem: I have the following simple test: <Window x:Class="Test02.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
Build Date from ClickOnce Assembly?
Pieter -
6 Nov 2007 10:13 AM - 3 messages
Hi, How can I knwo the BuildDate from an application distributed by ClickOnce? When I use "System.IO.File.GetLastWriteTime(objAssembly.Location)" or "System.IO.File.GetCreationTime(objAssembly.Location)" it returns me the date and time that the user downloaded and isntaled the application, butn ot ...
Help reuired in building TCP/IP Server
Malik -
6 Nov 2007 10:08 AM - 3 messages
i am developing an application, in which i reuired a TCP server which allow multiple users to connect at a time and then recieve the data,process it and then send back to all the clients which are connected to the server. ...
verify if a given email address is exist
RGF -
6 Nov 2007 2:34 AM - 5 messages
Hi, I wrote an application with VS2005 to send mail, while the application works fine. I am trying to find a way to reduce email address bounce backs, is there a .Net (or command line) method via which I could ...
Performance issue with filestream.write on huge file
Guy -
5 Nov 2007 11:52 PM - 3 messages
I have 6,235,099 records in my db table. Each record needs to be converted to an XML element and outputed to a file. Since each XML element have about 329 bytes, the resulting files will be about 2.05Gb. ...
Upgrade from 2.0 to 3.0
Alan T -
5 Nov 2007 11:46 PM - 4 messages
I have installed VS 2005. Now would like to install .NET 3.0. What files do I need? I note some SDK, extensions or plugin files from MS site, not sure I need all of them. ...
Invalid UNC path in my .NET applicaton
Luke -
5 Nov 2007 11:41 PM - 3 messages
Microsoft Development Environment 2003 Version 7.1.3088 Microsoft .NET Framework 1.1 Version 1.1.4322 Windows 2000, version 5.0 (build 2195: Service Pack 4) I am having problems loading xml stored as a blob in an Oracle ...
Re: Is C# written in C++ underneath?
Alan T -
5 Nov 2007 11:37 PM - 3 messages
Why the MS C# compiler was NOT written in C#? ...
.NET 3.0 when did it release?
Alan T -
5 Nov 2007 11:16 PM - 4 messages
How long had .NET 3.0 been released? ...
How to use functions of Windows Services from a C#.net app?
Andrew -
5 Nov 2007 6:07 PM - 3 messages
Hello, friends, We have a window application (in C++) installed as a service in a server machine. We also have a c#.net 2005 application running on client machines. This c#.net applicaiton needs to use the functions provided in that service. ...
RE: Using a POP3 Server
tayabah -
5 Nov 2007 1:57 PM - 1 message
???? ???? From [link] Posted via DevelopmentNow.com Groups [link] ...
Client Socket Shutdown is not visible on the Server Socket
Miroslav Endys -
5 Nov 2007 8:22 AM - 2 messages
I have two apps. Client and Server (both are windows console apps). Im using Client Socket of this definition AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp and Im using async communication with the Server Socket. I have no opened NetworkStream. In case, I kill my client application (via red cross) the server application ...
File Download warning
Xena -
5 Nov 2007 7:07 AM - 2 messages
I got a window alerting me to a program download if I opened or saved it. The program ends in .exe, and I'm almost sure it's a trojan horse virus. How can I delete it before it gets installed? Thanks in advance. ...
Vista X64 GDI+ and System.Drawing errors
Dale -
5 Nov 2007 1:06 AM - 11 messages
I have an application that I have used for years on 32-bit XP. It also appears to run properly on 32-bit Vista - at least I haven't had any users complain. When I try to run the app on Vista X64, I get errors randomly in ...
process exit event and thread synchronization
tb2000 -
4 Nov 2007 10:41 PM - 21 messages
I hope someone could help me with a hint, maybe I am having a problem to conceptually understand whats going on: I am starting a new process (.NET20, c#, command line app) which launches an external cmd shell and some external code (.NET remoted into from my manager ...
Ling to SQL and error recovery
Tapio Kulmala -
4 Nov 2007 5:23 PM - 8 messages
Hi! Here is a simple console-program that illustrates the problem. It uses Northwind database and requires only Customer and Order entities. The problem is that if the first datacontext.SubmitChanges fails because of validation errors also the second one will fail. It seems that the ...
Debugging the System...
Sriman -
4 Nov 2007 2:52 PM - 3 messages
We are faceing Problems in debugging the System. The system hangs up often as well as for Stepping into each line of code we need to use Ctrl+Alt+Del and refresh to . Any idea? Any help would be greatly appreciated. ...
How to debug Powershell commandlets?
Alexander Vasilevsky -
4 Nov 2007 9:57 AM - 2 messages
Hi! How to debug Powershell commandlets? ...
What a difference PowerShell Cmdlet and PSCmelet?
Alexander Vasilevsky -
4 Nov 2007 9:56 AM - 2 messages
Hi! What a difference PowerShell Cmdlet and PSCmelet? ...
|
|||||||||||||||||||||||