John Sewell's Q&A profile
Windows Forms resize win form
hi! i want to forbid resize win form. i tried the 'locked' properties, but it works only in environment desktop. when i run the application, the win form isn't, actually, locked. how can i do this i'm using visual c++ .net 2003. thanks hi, set the formborder properrty of you form to this ->FormBorderStyle = System::Windows::Forms::FormBorderStyle::FixedDialog; ...Show All
.NET Development creating Sockets
Hi buddies, I wonder how easy to create a socket with out connecting to RemoteEndPoint in sockets My idea is to create a “dummy” socket of an existing socket. I wrote code like, System.Net.IPAddress ConnServerIP = IPAddress.Parse(s_myLinOldIP.Substring(0,s_myLinOldIP.IndexOf(":"))); int listenPort = int.Parse(s_myLinOldIP.Substring(s_myLinOldIP.I ...Show All
Visual C# Call Tree?
Is there any way to display a solution's call tree in the IDE Thanks, Ray What are the latest plans for making this available with C# and VB I greatly appreciate this feature under C/C++ and I miss it while working in C#. ...Show All
.NET Development High performance sockets and SslStream
Hi guys, I'm involved in a project where we need a high performance comms engine, capable of communicating with several thousands of clients simultaneously. My question is, would using SSLstream for normal channel encryption be fast enough i.e. is it recommended for high performance comms I was thinking of alternatives, one of which being: Use a TCPClient and SSLStream to authenticate the server, perform symmetric key exchange, either with the ...Show All
Windows Search Technologies Search for replied/forwarded email
Hello, I would like to search for email (Outlook 2003) that I have or haven't replied to or have forwarded. I cannot find the proper property that contains this info but I know that Outlook keeps this for all messages. Thanks. Hello cyr2224, Unfortunately, we don't support this capability in WDS at the moment. The reason is that we don't index whether or not someone has forwarded or replied to an e ...Show All
Windows Forms How can set font of a Control, programmatically ?
i would like to know why i cannot specify Text Properties when coding by hand, compared to doing it via IDE When coding, properties are always Read-Only, any ideas Thank you Anything that can be edited through IDE , it can also be editied through Coding. Can you let me know about any specific case ...Show All
Visual C++ windows.h not found...
WOW, I can't believe this information isn't easier to find. I downloaded and installed Visual C++ 2005 Express, and then downloaded and installed the Platform SDK SP2. NOTHING WORKS! The Directories are not found and there is no apparent way to set them. Apparently users have found a hack to make it work, but this is crazy. It seems like the first Microsoft person to install this would notice that it doesn't work an ...Show All
Visual Studio Team System Installing an updated Process Template
I have downloaded the newest build of the MSF Agile process template. I would like to install it into my Beta 2 VSTS install put don't see how to do that other than just overwrite the existing files. The web site says to read the ReadMe file after extraction but that file does not exist. Any help would be appreciated. You have run into a version issue. The CMMI process template was made to be us ...Show All
Visual C# Decode URL string in C# (not ASP.Net)
Hi, I'm writing a program in C# 2.0 and I enable people to drag and drop a file link from the browser to my program and my program downloads the file. The problem is that the file URL string is encoded (ie some characters are encoded to %num). I want to decode this chars to normal chars. In ASP I saw there is an option to do it, but on regular program I couldn't find how to do it. string s = "%49%20%64% ...Show All
Visual Studio 2008 (Pre-release) Duplex when the client is a Windows Forms or Presentation Foundation applications
Hello! (I'm using the February CTP). My console client application works well with duplex, but when I run a Windows Forms or Presentation Foundation client application my server's CallbackProxy.SomeMethod() hangs. Do some of you have some hint what I must do in order to make a Windows Forms or Presentation Foundation client application work with duplex, please Best regards, Henrik Dahl The th ...Show All
Microsoft ISV Community Center Forums VBA XmlMap.loadXML problem - repeating call
Hi all, I have the following XSD load to XML Source of excel: < xml version="1.0" > <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs=" http://www.w3.org/2001/XMLSchema "> <xs:element name="stock"> <xs:complexType> <xs:sequence> <xs:element maxOccurs="unbounded" name="quote"> <xs:co ...Show All
Visual C++ the application failed to initialize propertly(0x80000003). click on OK to terminate the application
hello to all i succeeded compile all project with vs2005 pro. but when i try to run the app from "app folder" it gave me error mesagge: the application failed to initialize propertly(0x80000003). click on OK to terminate the application this error cam after i chang back the manifest to YES on all project. (the reason it was on NO, is that the app will run with non vs2005 environment. but i show her beter solution) it look like dll problam ...Show All
Visual C++ How to execute DCM converter in VC++
Hi, I am new to VC++ and i am working on DCM Converter. I found this project (i.e. DCM Converter) on net. but i failed to execute it in VC++ environment. I downloaded that source code from net. That uses CxImage and DCMTK. I downloaded the source code of both these(DCMTK and CxImage) and put that in a folder along with dcm converter. I changed the project settings as directed on Cximage web page. then i compiled all the three (dcm converter, DCM ...Show All
Visual Studio nested project failing
I am trying to implement a nested project based on the example in the SDK's. The project is being created underneath my project in the solution but the project file is being placed in the wrong directory and the name is being concatenated. The error I receive is "The project file can only be saved into the project location". Here is the snippet from my project file: < ItemGroup > < SubProject Include = " NestedMic ...Show All
Visual C# "True" OO design - sorting objects
I have 2 classes OrderInfo and OrderManager. The OrderInfo class is the model of an Order and the OrderManager does all the work on the OrderInfo such as Insert, Update, Delete, Sort etc. I’m trying to implement sorting and have the following code in the OrderManager class: public static Collection < OrderInfo > Sort( string sortExpression, string sortDirection) { GenericComparer comparer = new GenericC ...Show All
