| Error Running NMAKE (2 replies, VIP) |
| microsoft.public.dotnet.framework.sdk |
| I downloaded the SDK and am trying to run the MS Excel Technology Example. The instructions direct me to set the environment variable ExcelTlb and then to run NMAKE. When I try to do this I get the following error: C:\ set ExcelTlb C:\Program Files\Microsoft Office\Office11\excel.exe C:\ nmake Microsoft (R) Program Maintenance Utility Version 7.10.3077 Copyright (C) Microsoft Corporation. All righ... |
|
| TCP/IP client server application (6 replies, VIP) |
| microsoft.public.dotnet.framework.sdk |
| Hi, I have a .net client/server app. My server is able to accept multiple clients and I did some tests; my computer is an Amd 1700 with 512 Mb Ram, OS Windows XP, if I have 120 or more clients app conected to server my computer is not responding very well. Q1. there is a limitation of how many sockets I can open ? Q2. if I have 20 clients for e.g. and I close the server my client app has an event ... |
|
| Compiling from the command line (2 replies) |
| microsoft.public.dotnet.framework.sdk |
| I downloaded the .NET SDK two months ago in the two setups: (1) dotnetfx.exe The 23 MB framework (2) setup.exe the 106 MB SDK I also registered the path C:\WINNT\Microsoft.NET\Framework under the environment variables section. Yet I am not able to run the c sharp compiler from the command line. Although I am using Sharp Develop as well and that works just fine, but I wish to be able to compile raw... |
|
| newby question (3 replies) |
| microsoft.public.dotnet.framework.sdk |
| Hey guys, Can the .NET sdk be installed on XP home edition? |
|
| Do I have to install SDK onevery client? (5 replies, VIP) |
| microsoft.public.dotnet.framework.sdk |
| Hi! Im quite new to the .NET stuff and I'm just trying to get a client server program to work. I have a server with a Web Service program then Im using wsdl to make the proxy file to include in my clientapp. Everything works fine when client and server are running on the same machine but when I try to move the client to another computer (200MHz,win98), how do I do ? Do I have to use wsdl on the cl... |
|
| Problem about FindNextPrinterChangeNotification (3 replies) |
| microsoft.public.dotnet.framework.sdk |
| Dear ALL: I'm writing a program about printer by C# now.I have read Duncan's article about monitor printer by VB before and followed his method. I use FindFirstPrinterChangeNotification and FindNextPrinterChangeNotification API to monitor printer. Now I'm puzzled by the FindNextPrinterChangeNotification function ..Whenever I call this method to get a pointer of PRINTER NOTIFY INFO , it always retu... |
|
| design time component guideline for tricky problem (2 replies) |
| microsoft.public.dotnet.framework.sdk |
| Hi All ! I know nothing of design time component but I need to write one with a tricky problem. I have an app to edit / view a data structure, let say 'house' object with many 'room' and 'furniture' objects I want to write a plugin (as a DLL) which would work only for a give datastructure (a given 'house' object) and I want to be able to use this room object in the designer (use the 'room' data in... |
|
| Visual Studio 2002 and Framework 1.1 (4 replies) |
| microsoft.public.dotnet.framework.sdk |
| Sorry if this is a repeat question, I've just joined the groups. Replies will be forwarded to microsoft.public.dotnet.framework. I am using VS.Net 2002 and have just installed Framework 1.1 on my machine. I am developing an ASP.Net application. It is my understanding that VS.Net 2002 will only let me develop in Framework 1.0, is that true? When I deploy my ASP.Net application, what version of the ... |
|
| How to change mouse cursor on application startup? (2 replies) |
| microsoft.public.dotnet.framework.sdk |
| Hi, folks! ..NET apps are loaded very slowly because complex runtime environment. How to change mouse cursor on beginning startup (i.e., immediately after double click or pressing enter) and restore it after main form is displayed? I know how to manipulate mouse cursor after application is activated, but here cursor should be changed before it. WBR, Ilya |
|
| Focus on UI Design (2 replies) |
| microsoft.public.dotnet.framework.sdk |
| UI is important because it affects the feelings, the emotions, and the mood of your users. If the UI is wrong and the user feels like they can't control your software, they literally won't be happy and they'll blame it on your software. If the UI is smart and things work the way the user expected them to work, they will be cheerful as they manage to accomplish small goals. Hey! I ripped a CD! It j... |
|
| MockObject, SelectSingleNode and NUnit (2 replies) |
| microsoft.public.dotnet.framework.sdk |
| Hello I have a small and strange problem: I am trying to write some testcases for NUnit 2.1, and I have an Abstract class XYZ that defines a XmlDocument and functions that manipulates it, for example getAnElement(Name) which uses SelectSingleNode to find and return the element. I obvoiusly then uses this set of funtions in subclasses. Everything is fine this long, but when I am trying to write a t... |
|
| Read POP 3 Mail. (4 replies) |
| microsoft.public.dotnet.framework.sdk |
| Hi all I wan't to know if i'm able to read mail from a mail server. My mail server is a pop3 server (UNIX) and i want to be able to get the mails from an aspx or an asmx. with out using external objs. Only classes from the .NET Is there a way?? Thanks in advance |
|
| Irda communication (2 replies, VIP) |
| microsoft.public.dotnet.framework.sdk |
| Hi, I want to create an irDA server application on the pc (using the standard ...net framework) to communicate with a nokia mobile phone. Whilst the compact framework has a multitude of IrDA related classes, I can't find anything or any documentation on how to create an irda server on the standard framework. I started to sub class the EndPoint class to make my own IrDA endpoint, but I think I'm a ... |
|
| Transforming Xslt File prior to transformation. (5 replies, VIP) |
| microsoft.public.dotnet.framework.sdk |
| In ASP 3.0 and MSXMLHTTP2 we would load Our Xslt file as an XmlDocument. We then merely had to set the language and we could then execute Expath queries against the document. This is especially useful for performing actions upon Xslt Nodes that cannot be done through variables. After modifying the Document via DOM one could then Transform it agianst the Xml and get the expected results. I am looki... |
|
| Timer Callback and Overlap (3 replies) |
| microsoft.public.dotnet.framework.sdk |
| Hi, I use the Timer from System.Threading to call the function 'myFunc' every 1000 msecs. myFunc is executed from the .NET thread pool // 'myFunc' is the call back function myCallback new TimerCallback(myFunc); // Set up timer to call 'myFunc' every 1000 msec myTimer new Timer(myCallback, null, 1000, 1000); What happens when there is an overlap? i.e., A call to 'myFunc' takes more than 1000 msecs ... |
|
| Two questions about System.Diagnostics.Process.Start function (2 replies, VIP) |
| microsoft.public.dotnet.framework.sdk |
| hi all, It seems that the arguments of System.Diagnostics.Process.Start() can only be the absolute path. The args can not be like ".\abc\efg.exe" or "..\abc\efg.exe". While i use relative path, the function doesn't work. Any solution?? The other question is... i take a example fisrt! System.Diagnostics.Process.Start("c:\\abc.exe", "hello.txt"); it works fine. BUT if the second arg replace with "he... |
|
| Error when Instanciating the Clerk object in a CRM Worker Derived class (4 replies, VIP) |
| microsoft.public.dotnet.framework.sdk |
| HI all, When i try to instanciate a Cerk object in the Activate Method of the Worker Derived Class, It gives the following exception System.Runtime.InteropServices.COMException (0x8000FFFF): Catastrophic failure at System.EnterpriseServices.CompensatingResourceManager.CrmLogControl.Register Compensator(String progid, String desc, Int32 flags) at System.EnterpriseServices.CompensatingResourceManage... |
|
| Listen Objects in Jscript with SASDK (2 replies, VIP) |
| microsoft.public.dotnet.framework.sdk |
| I am working on an academic research project and I want to use jscript to have a window pop up which displays what the user is speaking. I also want to query the object for alternate recognitions and display those on the screen as well. To do this I need to use the SASDK framework because SDK does not support alternates when using a user defined grammar, which I need to specify. My only problem is... |
|
| Compiling an ASP.net application from the command line (3 replies, VIP) |
| microsoft.public.dotnet.framework.sdk |
| I'm trying to compile an ASP.net application that uses aspx, aspx.cs (codebehind) and class files (its the ibuyspy sample ecomm application). What's the proper command to use so that the ASP files will recognize the compiled DLL file? |
|
| Writing to Eventlog Problem (2 replies) |
| microsoft.public.dotnet.framework.sdk |
| Hi, I am getting following error while executing .aspx page. Exception Raised: System.Web.Services.Protocols.SoapException: Server was unable to process request. System.InvalidOperationException: Cannot open log for source {0}. You may not have write access. System.ComponentModel.Win32Exception: Access is denied Any ideas??? Thanks & Regards, Atul Shukla |
|