microsoft.public.dotnet.academic Archive - October 2001
Post a message to this list
Messages
Page: 12
About the academic newsgroup (6 replies, VIP)
microsoft.public.dotnet.academic
Welcome to the .NET Academic newsgroup (microsoft.public.dotnet.academic). The purpose of this newsgroup is to discuss use of the .NET platform and Visual Studio .NET in academia. Some example topics might include: a.. Using the Common Language Runtime in compiler or programming language courses b.. Teaching Web services c.. Using C# in the classroom As the academic program manager for Visual Stud...
.NET application vertification (2 replies, VIP)
microsoft.public.dotnet.academic
Does anyone know if there is such a thing as .NET certification for applications. In other words can a company create an application that operates using one/several .NET servers and have this application ".NET Certified" Thanks, John
ASP.NET Error (3 replies)
microsoft.public.dotnet.academic
Hi all whne I create new project using ASP.NET I face this Error : Error while trying to run porject : unabel to start debuging on the web server. The server does not support debugging of ASP.NET or ATL Server application.Run setup to install the Visual Studio .NET server components. If setup has been run verify that a vaild URL has been specified. You may also want to reger to the ASP.NET and ATL...
Visual Interdev .net? (3 replies, VIP)
microsoft.public.dotnet.academic
Is there going to be a Visual Interdev .net? or is it going to be intergrated into Visual Studio .net? Thanks James
About dotnet (3 replies, VIP)
microsoft.public.dotnet.academic
Please send me a brief description on dotnet Sadhan
Deploy ASP.NET app (3 replies, VIP)
microsoft.public.dotnet.academic
I have developed a simple ASP.NET VB (beta 2) application and now want to deploy it to a existing Win2000 IIS 5.0 web server. Are there any articles out there that describe this process? Are there special requirements for the web server or client browser? Thanks Steve
How to rotate X & Y coordinates around a point - Matrix ? Other ? (2 replies)
microsoft.public.dotnet.academic
Hi, I need to rotate a point (x,y) around another point (cx,cy) by and angle (a) & thought perhaps a matrix could be used but I can't figure out how ! Any help much appreciated. Alister Alisterb@Respond uk.co.uk
Runtime Object Table equivalent in .NET (2 replies, VIP)
microsoft.public.dotnet.academic
Is there any?
Passing command line arguments (2 replies, VIP)
microsoft.public.dotnet.academic
Hi, Does anyone know how to pass command line arguments from within Visual Studio.NET? You could do it in VS6, through Project Project Settings. Is there a similiar operation in .NET??? Thanks, Mel
When .NET (4 replies, VIP)
microsoft.public.dotnet.academic
Hello every one, At last is .Net's version came out or still there are Beta realeases. thanks Arash
An invitation to IT Career Night (3 replies, VIP)
microsoft.public.dotnet.academic
UC Irvine Extension invites you to attend a FREE Event! Information Technology Career Night Thursday, September 6 6:30 8:00 pm, Crystal Cove Auditorium, UCI Student Center, UCI Campus Want to learn what new technologies are available and how you can master them? Looking for information about new trends in the industry? Want to know what competencies are required for today's IT jobs? Come to our Ca...
Semaphore object in .NET? (2 replies, VIP)
microsoft.public.dotnet.academic
I can't find semaphore equivalent object in .NET framework library. How can semaphore be implemented? Thanks
Hi, I want to know, what should I learn in VB6 or direct 7 (4 replies, VIP)
microsoft.public.dotnet.academic
Hi People, I am DHTML, JavaScript Programmer, I want to start Learning DotNet. some of my friend told me that If you want to learn vb.net then you haveto know or first learn VB6. and should I learn csharp instead of vb.net? And Is it necessary to learn Visual Basic 6 first to learn vb.net? Please help me in this as soon as possible. Thankx in Advance. Sachin
Global Object Registry service (2 replies, VIP)
microsoft.public.dotnet.academic
Is there any mechanism, or service in .NET to which one can register a running .NET object instance (with a name associated), so that other processes who know the name can find and access that object? Thanks.
***RULERS - HOW TO IMPLEMENT*** (2 replies, VIP)
microsoft.public.dotnet.academic
How are RULERS added to a form in .NET? I've seen an example where splitters were added to a form and OnPaint() for the non client area was used to draw them. Is this the best approach? Any tips or sample source code would be greatly appreciated! Steve
Reflection.Emit (3 replies)
microsoft.public.dotnet.academic
Hello, We have two questions related to "Reflection.Emit": 1. We have a subroutine which generate an assembly with a class. We define a property "ageProperty" for this class and a "GET" and a "SET" methods for this property in this subroutine. In the main subroutine, We generate a "anyClass" from the first subroutine and then instantiate an object "anything" of this type. But when we use the metho...
System.EnterpriseServices (4 replies)
microsoft.public.dotnet.academic
I want to use COM Services with .Net, however, I cannot find System.EnterpriseServices class under System object. Has the class been renamed after beta 2 release or do I have to custom configure the setup for ..Net? Thanks, Zaia
New .NET Reflector 2.2 is available (4 replies)
microsoft.public.dotnet.academic
.... at http://www.aisto.com/roeder/dotnet. The new version includes member reference search in IL code, Namespace centric view, Call Trees.
How do I maintain Visual Interdev projects (2 replies, VIP)
microsoft.public.dotnet.academic
How do I maintain my old Visual Interdev Projects from the new Visual Studio.NET ? Most of them are running in NT4 and IIS 4 enviroment. Lars Lundkvist IT enheten Södersjukhuset S 11883 Stockholm Sweden
Dynamically Including User Controls (2 replies, VIP)
microsoft.public.dotnet.academic
Considering the following line: %@ Register TagPrefix "uc1" TagName "WebUserControl1" Src "WebUserControl1.ascx" % Is there a way to dynamically choose one user control over another at runtime? Thanks, Daniel
Why have System.Text.CodePageEncoding been removed??? (2 replies)
microsoft.public.dotnet.academic
In beta2 System.Text.CodePageEncoding class is removed, how does MS suppose we do to write/read MBCS texts?? I really need to write/read JIS encoding texts and in Beta1 by passing System.Text.CodePageEncoding to StreamReader/Writer I could do this. The class automatically did the code conversion between Unicode and JIS. How do I do this now???? Thanks.
??? CURSOR - FROM BITMAP IMAGES ??? (3 replies)
microsoft.public.dotnet.academic
I would like to: draw 3 cursors on 1 bitmap, load the bitmap, create 3 cursors from the bitmap How do I create the 3 cursors from the bitmap image? Any help would be greatly appreciated! Steve
Image mixing (4 replies)
microsoft.public.dotnet.academic
I want to mix two images. Suppose I have two images Image1 and Image2 of dimension 400x300 pixels. I want to create Image3 that will have each pixel as: R3(i,j) n*R1(i,j) (1 n)*R2(i,j) G3(i,j) n*G1(i,j) (1 n)*G2(i,j) B3(i,j) n*B1(i,j) (1 n)*B2(i,j) where 0 n 1 and R1(i,j) is the red value at i,j pixel position etc. One very basic way to do is apply two for loops and go through each and every pixel...
prevent proxy chain - how smart .NET remoting is (2 replies)
microsoft.public.dotnet.academic
If I pass object A to object B, B stores it, and later somebody C retrieves object A from object B, and calls a method on that object A, which of the following will the remoting service do: 1. Use proxy to pass call to object A's proxy stored in object B, then that proxy passes call to object A. 2. detect proxy chaining and directly pass call to object A. I think COM would do No.2. How about .NET ...
The source code of the framework is essential! (5 replies)
microsoft.public.dotnet.academic
Hi ALL! Statement: The source code of a framework containing more than 4000 classes is essential to understand and learn app development for that framework. If MS does not provide this code, that is a stupid behavior. Note: This does not mean that this code would be "open source". Delphi VCL and MS ATL STL, MFC all available with source and none of them are "open source". Sorry for this message, b...
Ad
Need Dot Net Interview Questions?
Ask ExamGuru, Inc. for advice and help on Passing .Net Interviews
.Net Projects
Best-of-breed application framework for .NET projects, developed by ExamGuru, Inc. and ExamGuru IT
Free .net Help
Commission ExamGuru, Inc. and his team for your next bespoke software project
FogBUGZ
The only bug tracking system carefully crafted with one goal in mind: helping teams create great software.
Awesome Tools
If you don't know about these, you're missing out... IT Certification Questions
IT Interview Questions
Free Oracle 10g Training
MCSE Boortcamp
Cisco Study Guides
Cheap Study Guides
Exact Questions
Dot Net Interview Questions
Oracle OCP
Cheap Travel
Designer Perfumes - Wholesale Prices
Free Programming Tutorials
 
ExamGuru IT Solutions - .Net Guru is owned and operated by ExamGuru, Inc., the man behind .Net Guru. If you're in the market for bespoke software or software consultancy, why not get him and his highly trained team to help? - www.examguru.net/ITCertification
 Copyright © ExamGuru, Inc. 2001-2006
Contact Us - Terms of Use - Privacy Policy - www.dot-net-guru.com - www.examguru.net - www.oraclesource.net - www.itinterviews.net - www.examguru.net/ITCertification