microsoft.public.dotnet.framework Archive - April 2004
Post a message to this list
Messages
Page: 1234567891011121314151617181920
21222324252627
Windows Generated Code (2 replies)
microsoft.public.dotnet.framework
Does anyone on the group know how to generate Windows Code for User Control. What I am suppose to do is to generate VB.NET Code for custom user control. Does anyone know how does the VB.NET is generated when a Controls are placed on the Form? Awaiting replies
Need on-line testers to finish a software... (7 replies)
microsoft.public.dotnet.framework
Hi, Let me invite you to test my latest www.eztree msdn.com version. It runs on my new server. I hope you'll appreciate performances... You can search for MSDN Library using 2 ways... Original (same tree as the Microsoft version, but Mozila and Netscape compatible) or EZTree In EZ Tree mode you can search easily like in a OLAP Cube. The only manipulation you have to do It to order Tree levels by d...
Check of the signature failed for assembly (3 replies, VIP)
microsoft.public.dotnet.framework
I just started getting the error below in an asp.net application I'm working on. The assembly mentioned in the error is used in **every** .net app I work on, is not directly referenced, it is referenced by another assembly also used in **every** .net app and though all apps are pointing to the same version this is the only app producing this error. Obvious quesiton is why and how would I proceed t...
Getting a list of static objects. (2 replies)
microsoft.public.dotnet.framework
Hi. I have a test application that loads some data from a database. This process is then iterated a number of times, and the memory consumption of the application is rapidly rising. Since the garbage collection is running, it must be because some static or stack variable is holding a reference ( I use static variables heavily for caching data ). Is there a way to get a list of static and stack obj...
How do I Autostart my application after Installtion (2 replies)
microsoft.public.dotnet.framework
Hi, I developed an windows application in Vb.net and compiled that application. I would like to know that how can i execute my application automatically after installation. Any Suggestions would be greately appreciated. Regards CV
File.Copy question (2 replies)
microsoft.public.dotnet.framework
Hallo C# Community I have a small Problem with my service. I tried to write service which copies actual files to all computer in my network. So it will work fine if the Application isn't a windows service. In windows service a user isn't signed on, so i don't have access to any network resorce, and i'm unable to copy those files. How to log in on the network computer to be able to copy files using...
email from within .Net (3 replies)
microsoft.public.dotnet.framework
Hi Does anyone know of any way to send an email from an application without using the SMTP class (which relies on a mail server)? In VB6 we could use the MAPI component which would use the default MAPI client (Outlook, Outlook Express, or whatever). Must also be able to add attachments. Cheers Sparky
socket disconnecting and reconnecting (intentionally) (2 replies)
microsoft.public.dotnet.framework
Here's the C# code: socket new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp); socket.Blocking true; EndPoint sender new IPEndPoint(IPAddress.Any, 2222); socket.Bind(sender); I need to stop reading in packets and stop the packets from being read into the queue, but then be able to reconnect the socket. Currently, I use: public void UnBind() socket null; public void ReBind()...
Framework and Windows NT (2 replies)
microsoft.public.dotnet.framework
Does the framework function well running in a old Windows NT environment? I have a client that I need to make a windows application for and they still run Windows NT. The application will be a basic form that sends a email.
Performance and Regional Settings (4 replies, VIP)
microsoft.public.dotnet.framework
Hi! I have a wierd thing going on to an application that we have deployed in Norway, Denmark and Sweden. We're doing a lot of looping where we're checking dates, converting dates and numbers. The following code takes with English U.S. Settings ( Norwegian and danish) 2.6 seconds on my computer. When I change to Swedish it takes more than 6 seconds. For i 0 To 3000000 blnResult IsNumeric(strTest) N...
Export data to excel. (3 replies)
microsoft.public.dotnet.framework
Hi , I am exporting my data from the web datagrid to excel sheet using the rendercontrol method. but the problem is that here I do not have a control over the excel sheet, so cannot do any settings. All the leading zeros are being truncated. I want that all digits like 0099888 should remain as they are, and not become 99888, etc etc. If I am exporting data using COM interoperability and OWC , then...
Assembly versioning: build and revision order. (4 replies)
microsoft.public.dotnet.framework
This question has been bothering me for a while. Why is (according to MSDN doc) version string is defined as major.minor[.build[.revision]]? These scheme suggests that there may be an assembly with the same build number but different revisions, e.g. 1.5.1044.2 and 1.5.1044.3. This does not make much sense (how can you get a new revision without building the assembly?). Shouldn't the version be def...
Accessing Low Level/Hardware Features.... (2 replies)
microsoft.public.dotnet.framework
Hello, I would like to know if its possible to develop applications which would have access to hardware on certain levels may be to know the information.Also is it possible to know how & what the file system and may be change it.
ExecutionEngineException when running regsvcs (2 replies)
microsoft.public.dotnet.framework
Hello. When I build a C# project, regsvcs raises ExecutionEngineException. I have been working on the project for some time and it's only just started doing this. Microsoft (R) .NET Framework Services Installation Utility Version 1.1.4322.573 Copyright (C) Microsoft Corporation 1998 2002. All rights reserved. Fatal execution engine error. I know there's not much to go on but can anyone advise me h...
Socket Initialization Fix (3 replies, VIP)
microsoft.public.dotnet.framework
Could some please email me the Socket Initialization Fix that fixes the problem "This problem occurs because the System.Net.Socket constructor does not succeed if your computer has more than 50 network bound protocols"? (KB artible 826757) Please email to e27288aol@yahoo.com Thanks for your help! g
IL editor (12 replies)
microsoft.public.dotnet.framework
Hi, does anybody know where I can find an IL editor ? thnx Chris
Including or importing Source files? (5 replies)
microsoft.public.dotnet.framework
Do I have to compile a class to be able to import it into another source? Can I do something like include System; include System.IO; include Language; language is a Language.cs file. Does this file need to be a dll or can i just include the source? I get compile errors doing this but maybe there was a way around it. thanks ryan K
Adding <div> tag programatically (3 replies)
microsoft.public.dotnet.framework
Hi All, I would like to add the div tag programatically from the code behind of my aspx file. Basically, I would like to a table to this div . There are a number of tables which are created dynamically in the code behind. Each table should go to its own div tag. The reason that I can't have the div tags in aspx is that the number of the tables is unknown until runtime and each table should go into...
Page Caching - Is this the solution. (4 replies)
microsoft.public.dotnet.framework
Basically, I have a web app which has a step by step flow. So the user fills a form, hits next and is taken to the next page, where the user enters more information in form. There are around 5 steps for the user to complete. Each step is on a different page. The problem is that at any point the user should be able to go back and see what he has filled in the previous screens. How should this be ac...
.NET -> Processor independent? (4 replies, VIP)
microsoft.public.dotnet.framework
Hi, I have worked in VB6 and now I have started working in VB.Net.It is said that .NET code is platform independent atleast within Windows operating systems. which I understand is made possible through IL which is processor and OS independent. My question is if we have a VB 6 exe that too runs on all windows operating systems and on Intel , AMD and Cyrix processors ( not very sure about this as I ...
Is processor indepdnence of .NET anything new? (3 replies)
microsoft.public.dotnet.framework
Hi, I have worked in VB6 and now I have started working in VB.Net.It is said that .NET code is platform independent atleast within Windows operating systems. which I understand is made possible through IL which is processor and OS independent. My question is if we have a VB 6 exe that too runs on all windows operating systems and on Intel , AMD and Cyrix processors ( not very sure about this as I ...
I am looking for SOS bin files for .NET 1.0.3705.433 (3 replies, VIP)
microsoft.public.dotnet.framework
Hi! I am looking for SOS bin files for .NET 1.0.3705.433. What is the procedure for getting the bin files for subsequent updates for .NET framework 1.0 Thank you. T.
Link Error: LNK1181 (2 replies)
microsoft.public.dotnet.framework
Hi I have the following link error in my .Net C application compiler and cannot figure out what the problem is as I am not using the platform SDK wmutils.lib file and also when I open it in explorer it seems fine. LINK : fatal error LNK1181: cannot open input file '\documents and settings\nxr\program files\microsoft visual studio .net 2003\vc7\platformsdk\lib\wmiutils.lib' Does anyone have any ide...
uses of Reflection (2 replies)
microsoft.public.dotnet.framework
Hi, I'm aware of Reflection, as run time engine, that allows you to read an assembly types and members of types. And VS.NET and ILDASM makes use of Reflection etc etc ..., My question is, Can Reflection helps me in any other way for application development, apart from it's use by tools and CLR. TIA MeDhanush
Updater Application Block for .NET config problem (6 replies)
microsoft.public.dotnet.framework
I just downloaded the sample application for &quot;Updater Application Block for .NET&quot; at http://msdn.microsoft.com/library/default.asp?url /library/en us/dnbda/html/updater.asp,I started to run the application,but a exception ocurred, it is looks like this: Unable to load configuration from the XML configuration file: 'E:\Code\Csharp\selfupdater\SayHello\bin\Debug\SayHello.exe.config'. This can be cau...
Ad
MBR BootFX
Best-of-breed application framework for .NET projects, developed by Matthew Baxter-Reynolds and MBR IT
 
 Copyright © Matthew Baxter-Reynolds 2001-2008. '.NET 247 Software Development Services' is a trading style of MBR IT Solutions Ltd.
Contact Us - Terms of Use - Privacy Policy - www.dotnet247.com