Re: [DOTNET] Tricks (Managed) C++ issue about COM interop - help appreciated....

2002-04-11 Thread Thomas Tomiczek
Well, (the problem is solved in the meantime, btw). I HAVE the TLBIMP - but I have the COM object "native" as a C++ objhect that I generated. I dont want to go through a CreateObject or a managed new - I awant to create the COM object "directly". Regards Thomas Tomiczek THONA Consulting Ltd. (

[DOTNET] Reflecting delegates

2002-04-11 Thread Łukasz Wielek
Reflecting delegates How to get information about delegates from module using reflection? Delegates are stored in assembly as Types and can be retrieved by calling Module.GetTypes(). It can be distinguished from other types because it is subclass of System.Delegate. But how to obtain informat

[DOTNET] Sharing ASP intrinsic objects across ASP and ASP.Net

2002-04-11 Thread PrashanthG
If the ASP pages share application state and session state using the ASP Application and/or the ASP Session objects, I read in Documentation that ASP and ASP.NET cannot share state across the two environments using these intrinsic objects. Is it true for only Application and Session Onjects or all

Re: [DOTNET] explicit interface methods

2002-04-11 Thread Nick Wienholt
There will actually be a slight performance hit - 3 extra MOV instructions compared to a single CMP instruction in the current Win32 CLR implementation. This is for the case where the non-explicit method interface method is called through the class, not through the interface, and the non-explicit

Re: [DOTNET] explicit interface methods

2002-04-11 Thread Peter Stephens
There is no performance difference. The main advantage is that you do not dirty the public interfaces of your class. Also, if you have two interfaces that have the same method signature and you want two different implementations then you will have to use explicit implementation. Also note that yo

Re: [DOTNET] Calling method across threads

2002-04-11 Thread Juval Lowy
Ian and I have had a correspondence on implementing ISynchronizeInvoke. I finally got around to it. You can download from www.idesign.net a generic implementation of ISynchronizeInvoke, and use it as a starting point for your need. Thanks, Juval. [EMAIL PROTECTED] IDesign Inc. .NET Design and

[DOTNET] explicit interface methods

2002-04-11 Thread Ethan Smith
Hi all, When calling a method through an interface reference, is there any functional or performance difference between having that implementation being a public method, or an explicit interface method that calls the public method? E.g.: Interface Foo{ void Bar(); } public class Baz :

Re: [DOTNET] Hailstorm is dead

2002-04-11 Thread Manolito B San Jose
how about PhP50/1$ -Original Message- From: Brady Kelly [mailto:[EMAIL PROTECTED]] Sent: Friday, April 12, 2002 3:43 AM To: [EMAIL PROTECTED] Subject: Re: [DOTNET] Hailstorm is dead Oh yes indeed, try R11.20/$ -Original Message- From: Dean Cleaver [mailto:[EMAIL PROTECTED]] Sen

[DOTNET] Hailstorm is not dead

2002-04-11 Thread Keith Franklin
Article posted today on eweek MS Software Lets Users Host .Net My Services http://www.eweek.com/article/0,3658,s=1884&a=25386,00.asp You can read messages from the DOTNET archive, unsubscribe from DOTNET, or subscribe to other DevelopMentor lists at http://discuss.develop.com.

[DOTNET] Partition II Metadata Spec question

2002-04-11 Thread Brent E. Rector
Using VS.NET, I created a MFC Application project. The *only* change I made was to switch on the /CLR command line option (which then forces you to turn a few others off). This produces a single module .EXE managed assembly containing with managed code and unmanaged data. PEVerify /MD states that

Re: [DOTNET] and databinding funkiness

2002-04-11 Thread Chris Anderson
Thanks, Walt Not an ideal solution in a non-"Strict" environment..but I'm using "Option Strict On" here..so that helps a lot :-) Merak > -Original Message- > From: dotnet discussion [mailto:[EMAIL PROTECTED]] > On Behalf Of Walt Ritscher > Sent: 12 April 2002 01:31 > To: [EMAIL PROTECTE

[DOTNET] Changing keystoke with ProcessKeyPreview

2002-04-11 Thread Erick Thompson
I'm try to get the keypad subtract key to work the same way as the main minus key on columns in a winform datagrid. To do this, I've overridden the DataGrid's ProcessKeyPreview method. In the method, I change the params to ones that come in when the minus key (above the main keyboard) is in the me

Re: [DOTNET] Pre-compilation of .aspx pages to increase performan ce

2002-04-11 Thread Brian Bilbro
- Original Message - From: "Mark" <[EMAIL PROTECTED]> Sent: Thursday, April 11, 2002 10:03 AM >Also, using the debug=false and viewing the first page only creates about >30dlls. There should be a dll's created for each aspx and ascx file in the >app ( I think) which contains the code to

[DOTNET] Partition II Metadata II spec Errata

2002-04-11 Thread Brent E. Rector
22.1.15 Element Types used in Signatures ELEMENT_TYPE_PTR0x0fFollowed by token ELEMENT_TYPE_BYREF 0x10Followed by token ELEMENT_TYPE_VALUETYPE 0x11Followed by token ELEMENT_TYPE_CLASS 0x12Followed by token ELEMENT_TYPE_CM

Re: [DOTNET] and databinding funkiness

2002-04-11 Thread Deepak Rao
Yup...all of you were on the money :) I also had to take out the semi-colon Thanks everyone! > -Original Message- > From: dotnet discussion [mailto:[EMAIL PROTECTED]] On Behalf Of > Stacey Piscatella > Sent: Thursday, April 11, 2002 8:57 PM > To: [EMAIL PROTECTED] > Subject: Re: [DOTNE

Re: [DOTNET] and databinding funkiness

2002-04-11 Thread Stacey Piscatella
the problem is "\" in your concatination try @"\" -Original Message- From: Deepak Rao [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 11, 2002 6:09 PM To: [EMAIL PROTECTED] Subject: Re: [DOTNET] and databinding funkiness It doesn't work either. The tag looks like this now and I ge

Re: [DOTNET] and databinding funkiness

2002-04-11 Thread Dean Cleaver
Hmmm - perhaps change the "\" for "\\"? Dino -Original Message- From: dotnet discussion [mailto:[EMAIL PROTECTED]] On Behalf Of Deepak Rao Sent: Friday, 12 April 2002 13:09 To: [EMAIL PROTECTED] Subject: Re: [DOTNET] and databinding funkiness It doesn't work either. The tag looks like

[DOTNET] Using XML/XSLT to generate WinForm reports

2002-04-11 Thread Erick Thompson
I would really like to use XML and XSLT to generate reports for viewing in a WinForm application. However, I can't find a good solution to show the resulting report. It seems like XML-FO with a PDF or RTF output format would be best, but all the projects out there are Java, which I don't want to t

Re: [DOTNET] and databinding funkiness

2002-04-11 Thread Peter Stephens
There might be an issue with "\". You must escape a backslash. Try "\\" or @"\" -- Peter > You can read messages from the DOTNET archive, unsubscribe from DOTNET, or subscribe to other DevelopMentor lists at http://discuss.develop.com.

Re: [DOTNET] and databinding funkiness

2002-04-11 Thread Walt Ritscher
I've found that you can use the + instead of the & for concatenation in your HTML. Then the VS IDE doesn't change it to &. Walt Ritscher -Original Message- From: dotnet discussion [mailto:[EMAIL PROTECTED]] On Behalf Of Chris Anderson Sent: Thursday, April 11, 2002 4:42 PM To: [EMAIL P

Re: [DOTNET] and databinding funkiness

2002-04-11 Thread Deepak Rao
It doesn't work either. The tag looks like this now and I get the compiler error CS1010: Newline in constant > -Original Message- > From: dotnet discussion [mailto:[EMAIL PROTECTED]] On Behalf Of > Dean Cleaver > Sent: Thursday, April 11, 2002 8:43 PM > To: [EMAIL PROTECTED] > Subjec

Re: [DOTNET] and databinding funkiness

2002-04-11 Thread Dean Cleaver
Then try add a ; just before the last %>' Dino -Original Message- From: dotnet discussion [mailto:[EMAIL PROTECTED]] On Behalf Of Deepak Rao Sent: Friday, 12 April 2002 12:53 To: [EMAIL PROTECTED] Subject: Re: [DOTNET] and databinding funkiness Heh...same error > -Original Messag

Re: [DOTNET] and databinding funkiness

2002-04-11 Thread Deepak Rao
Heh...same error > -Original Message- > From: dotnet discussion [mailto:[EMAIL PROTECTED]] On Behalf Of > Chris Anderson > Sent: Thursday, April 11, 2002 8:27 PM > To: [EMAIL PROTECTED] > Subject: Re: [DOTNET] and databinding funkiness > > Ahh..you're using C# then :-) > > Try using + in

Re: [DOTNET] MapPoint.NET Costs was RE: [DOTNET] Hailstorm is dea d

2002-04-11 Thread Chris Anderson
I think a pricing model that suits each end of the scale is more than adequate I know that many of my clients simply would not entertain the higher cost due to lower volume of traffic, etc The lower costs would be fine for them, and if they find themselves nearing the higher usage levels, then at

Re: [DOTNET] and databinding funkiness

2002-04-11 Thread Chris Anderson
Ahh..you're using C# then :-) Try using + instead of & Merak > Hmmm...I tried your suggestion and I got a compile error > > CS1002: ; expected > > > -Original Message- > > From: dotnet discussion [mailto:[EMAIL PROTECTED]] > On Behalf > Of > > Chris Anderson > > Sent: Thursday, April 11

Re: [DOTNET] MapPoint.NET Costs was RE: [DOTNET] Hailstorm is dea d

2002-04-11 Thread Justin Rudd
> I figured there had to be more than one pricing plan, that's why I was > staying out of the conversation. =) So what does everything think now that > the full details are available? I'm just curious because this seems to me to > be a fairly standard way we'll see web services priced out in the f

Re: [DOTNET] and databinding funkiness

2002-04-11 Thread Deepak Rao
Hmmm...I tried your suggestion and I got a compile error CS1002: ; expected > -Original Message- > From: dotnet discussion [mailto:[EMAIL PROTECTED]] On Behalf Of > Chris Anderson > Sent: Thursday, April 11, 2002 7:42 PM > To: [EMAIL PROTECTED] > Subject: Re: [DOTNET] and databinding fu

Re: [DOTNET] Frameset in ASP.Net

2002-04-11 Thread Guha, Rahul
Finally this worked ... pg1.aspx?ID=<%=Request.QueryString["ID"]%> -Original Message- From: Jason Lavigne [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 11, 2002 11:37 AM To: [EMAIL PROTECTED] Subject: Re: [DOTNET] Frameset in ASP.Net Something like the following in JavaScript (or V

Re: [DOTNET] Cut, Copy Paste, etc. in the Edit menu?

2002-04-11 Thread Bill Schmidt
Peter -- Sorry, I don't know the answers to either of those questions, but I'd like to. We'll have to wait for someone else to respond. Bill On Thu, 11 Apr 2002 16:38:24 -0700, Peter Stephens wrote: >Thank you for your response Bill. The sample you linked to follows (and >confirms) the same

Re: [DOTNET] and databinding funkiness

2002-04-11 Thread Chris Anderson
You can try NavigateUrl='<%# DataBinder.Eval(Container.DataItem, "Uri") & "\" & DataBinder.Eval(Container.DataItem, FileName") %>' But then you sometimes get problems with the ampersands being converted to & !! Merak > -Original Message- > From: dotnet discussion [mailto:[EMAIL PROTEC

Re: [DOTNET] Cut, Copy Paste, etc. in the Edit menu?

2002-04-11 Thread Peter Stephens
Thank you for your response Bill. The sample you linked to follows (and confirms) the same design pattern as my snippet. One other question: Is there a good way to enable/disable menu items in a defered, but dynamic way? I would like to set the enabled status for the menus when the Edit menu is a

Re: [DOTNET] .NET Compression Code

2002-04-11 Thread Nick Wienholt
Hi Graeme, Many thanks for the info. LZW uses a similar dictionary structure, and it works by whacking some arbitrary limit on the dictionary size. There are some problems with this if the data patterns in the stream change, but there are various work around's for this as well. You are right i

[DOTNET] and databinding funkiness

2002-04-11 Thread Deepak Rao
I am not able to do this I get a compile error about preprocessor directives. Does anybody know how I can concatenate two databound values in the NavigateUrl property of a HyperLink control? Any help is appreciated. Thanks Deepak You can read messages from the DOTNET archive, unsubscribe fr

Re: [DOTNET] MapPoint.NET Costs was RE: [DOTNET] Hailstorm is dea d

2002-04-11 Thread Marsh, Drew
Keith Franklin [mailto:[EMAIL PROTECTED]] wrote: > Just stopped by the MapPoint.NET booth at TechEd and showed > them some of this discussion and the page on the MapPoint.NET > site showing the costs. They said that the site is confusing. > > Site should show that there is more then one type of l

Re: [DOTNET] Com to DotNet

2002-04-11 Thread franklin gray
Thanks Dean. -Original Message- From: Dean Cleaver [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 11, 2002 5:02 PM To: [EMAIL PROTECTED] Subject: Re: [DOTNET] Com to DotNet No - as far as the client is concerned, VB is making a call to SOAP (the SOAP client is required on the client m

Re: [DOTNET] Com to DotNet

2002-04-11 Thread Dean Cleaver
No - as far as the client is concerned, VB is making a call to SOAP (the SOAP client is required on the client machine). There should be no requirement for the framework, unless you install other .Net components etc. As long as your parameters are "standard" like longs and strings etc, you should

Re: [DOTNET] MapPoint.NET Costs was RE: [DOTNET] Hailstorm is dead

2002-04-11 Thread Chris Anderson
That is much more reasonable :-) Thanks for the information Merak > Just stopped by the MapPoint.NET booth at TechEd and showed > them some of this discussion and the page on the MapPoint.NET > site showing the costs. They said that the site is confusing. > > Site should show that there is more

Re: [DOTNET] Cut, Copy Paste, etc. in the Edit menu?

2002-04-11 Thread Bill Schmidt
Peter -- See http://discuss.develop.com/archives/wa.exe? A2=ind0110c&L=dotnet&F=&S=&P=8043 This will work in an MDI WinForm. Bill On Thu, 11 Apr 2002 13:21:05 -0700, Peter Stephens wrote: >Unlike FoxPro or MFC there doesn't seem to be any automagic support for the >standard edit commands in

Re: [DOTNET] Com to DotNet

2002-04-11 Thread Sills, Adam
It works wonderfully, provided your .NET classes follow a couple rules: * Public Default constructors * Static methods can't be called from VB * Overloaded methods can't be called from VB (well one can, but VB won't recognize the overload) * Be careful of variable types (Long in VB is an Int32 in

Re: [DOTNET] .Config vs .INI vs Registry Question

2002-04-11 Thread franklin gray
Yes. I put URLs in my config. I don't put user information because that can be changed and will quite often be changed by the user, such as IM Status. I havent' tried it yet but from what I remember, it is very hard to change values of the config file from the application. -Original Mes

Re: [DOTNET] Com to DotNet

2002-04-11 Thread franklin gray
But the Framework is required on the client, right? -Original Message- From: Dean Cleaver [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 11, 2002 4:37 PM To: [EMAIL PROTECTED] Subject: Re: [DOTNET] Com to DotNet Franklin, It's actually really easy to get VB6 to call a web service - I

Re: [DOTNET] Ask a Language Designer

2002-04-11 Thread Steve Loughran
ooh, do we get one for the package heirarchy designers too? - Original Message - From: "Eric Gunnerson" <[EMAIL PROTECTED]> Sent: Wednesday, April 10, 2002 2:14 PM Subject: Ask a Language Designer Have you ever wondered why the C# language doesn't have a specific feature, or why it work

Re: [DOTNET] OT: IIS Security or Smoking crack?

2002-04-11 Thread Steve Loughran
- Original Message - From: "Erick Thompson" <[EMAIL PROTECTED]> Sent: Wednesday, April 10, 2002 3:29 PM Subject: Re: OT: IIS Security or Smoking crack? > If your server is on a non public network, then IIS or not, it's as secure > as anything on your LAN. I suppose you could get an emplo

Re: [DOTNET] .Config vs .INI vs Registry Question

2002-04-11 Thread Brian Chol Soo Standen
Couldn't one use the machine.config for some of these settings. Albeit the settings are limited to the one machine, but it seems like a good a place to put stuff like db connection strings and assorted similar settings. It is also easier than the registry to manipulate. -Original Message-

Re: [DOTNET] ObjectSpaces

2002-04-11 Thread Axel Heitland
I hesitated to downloaded the ObjectSpaces software, because I feared that they're still not supporting the release version. Looks like I'm right. Axel -Original Message- From: Steve Holak [mailto:[EMAIL PROTECTED]] Sent: Donnerstag, 11. April 2002 21:22 To: [EMAIL PROTECTED] Subject: R

Re: [DOTNET] Com to DotNet

2002-04-11 Thread Dean Cleaver
Franklin, It's actually really easy to get VB6 to call a web service - I have done this in my current project. This way, you don't need interop etc. Mail me OTL if you want some sample code... Cheers, Dino -Original Message- From: dotnet discussion [mailto:[EMAIL PROTECTED]] On Behalf

[DOTNET] Com to DotNet

2002-04-11 Thread franklin gray
I think this topic has already been discussed but the archives seem really slow today. I have an app written in vb 6.0 that our customers use. Can we make a change to a vb 6 com dll to call a VB.net dll? If so, how hard is it? Do I use interop? What we are trying to do is have our existing a

Re: [DOTNET] ObjectSpaces

2002-04-11 Thread Steve Holak
The msi generates a message "The PDC version of the .NET Framework is required to install ObjectSpaces" and it aborts. Steve Holak Senior Software Architect Brokerage Concepts IS Dept. 610-491-4879 email: [EMAIL PROTECTED]

[DOTNET] Enumeration of SQL Servers using safe code

2002-04-11 Thread Martin Wawrusch
Hi, I need to enumerate all the SQL Servers in the lan. How can this be achieved using .net Framework classes (no unsafe code with netapi calls)? Thanks, Martin -- Neovalis IT Development GmbH T: +43 1 522 68 68 Neustiftgasse 17/6F: +43 1 522 68 68 - 33 1070 Wien

[DOTNET] Cut, Copy Paste, etc. in the Edit menu?

2002-04-11 Thread Peter Stephens
Unlike FoxPro or MFC there doesn't seem to be any automagic support for the standard edit commands in a main menu. The textbox does have a context menu, but there doesn't seem to be a way to associate that with a main menu or a merge menu (in MDI). I have an idea for a method that might work: --

Re: [DOTNET] Hailstorm is dead

2002-04-11 Thread Phill Tornroth
Yeah, you'd think borrowing just about everything from the JAVA platform would have appeased them :) ~Phill -Original Message- From: Bryan Batchelder [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 11, 2002 11:57 AM To: [EMAIL PROTECTED] Subject: Re: [DOTNET] Hailstorm is dead Somehow

Re: [DOTNET] MapPoint.NET Costs was RE: [DOTNET] Hailstorm is dead

2002-04-11 Thread Jason Lavigne
That works quite well for all, don't you think? Impressive pricing. Jay -Original Message- From: dotnet discussion [mailto:[EMAIL PROTECTED]] On Behalf Of Keith Franklin Sent: Thursday, April 11, 2002 4:37 PM To: [EMAIL PROTECTED] Subject: [DOTNET] MapPoint.NET Costs was RE: [DOTNET] Hai

Re: [DOTNET] Hailstorm is dead

2002-04-11 Thread franklin gray
BURRR -Original Message- From: Jason Lavigne [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 11, 2002 3:11 PM To: [EMAIL PROTECTED] Subject: Re: [DOTNET] Hailstorm is dead Canada!! Jay -Original Message- From: dotnet discussion [mailto:[EMAIL PROTECTED]] On Behalf Of fran

[DOTNET] What's Saturn

2002-04-11 Thread Phill Tornroth
Does anyone have a link to some information on what this Saturn thing is ? All the links on ASP.NET were pulled, and I don't much care about having a copy.. I'm just interested in what the project's all about. ~Phill You can read messages from the DOTNET archive, unsubscribe from DOTNET, or subs

Re: [DOTNET] TOOL: .NET CollectionGen: A new design-time code generator for VS.NET

2002-04-11 Thread Shawn Van Ness
I wrote it as a vector, because I wanted a vector. :) There were already a few hand-rolled codegen templates out there which emitted classes derived from CollectionBase (basically ArrayList). But I reckon that if one wants to be type-safe, then one would probably also want to avoid the needless

[DOTNET] MapPoint.NET Costs was RE: [DOTNET] Hailstorm is dead

2002-04-11 Thread Keith Franklin
Just stopped by the MapPoint.NET booth at TechEd and showed them some of this discussion and the page on the MapPoint.NET site showing the costs. They said that the site is confusing. Site should show that there is more then one type of license. $15,000 for 2 Million Transactions (Flat rate) OR $

Re: [DOTNET] Hailstorm is dead

2002-04-11 Thread Keith Franklin
They better rebrand it because if you go to the site it is branded as .NET Alerts all over the place. http://alerts.microsoft.com/Alerts/userhome.asp?srcMsgr=1&plcid=0409&cou ntry=US Not to mention I don't believe that Hailstorm has per se been cancelled. Just that the rollout has slowed until t

Re: [DOTNET] Showing a tooltip manually?

2002-04-11 Thread Marsh, Drew
Duncan Smart [mailto:[EMAIL PROTECTED]] wrote: > Interestingly (or infuriatingly) when you set the tooltip > when there's no document loaded the tooltip appears when you > mouse moves over the control. As soon as you load a document > into the web browser control then it stops working. I guess >

Re: [DOTNET] Question about Jeff Prosise's Article on ASP.NET Sec urity

2002-04-11 Thread Matt Milner
Check this thread from a week or two ago about this very thing. http://discuss.develop.com/archives/wa.exe?A2=ind0204a&L=dotnet&F=&S=&P=54 -Original Message- From: Howard Pinsley To: [EMAIL PROTECTED] Sent: 4/11/02 3:07 PM Subject: [DOTNET] Question about Jeff Prosise's Article on ASP.N

[DOTNET] Question about Jeff Prosise's Article on ASP.NET Security

2002-04-11 Thread Howard Pinsley
I just read Jeff Prosise's excellent article on ASP.NET security. I had one question about doing forms authentication using a database of users and roles. His code sample uses a technique that appears to require looking up a user's role in the database for each page request -- as opposed to some

Re: [DOTNET] Hailstorm is dead

2002-04-11 Thread franklin gray
if that's gross and not net, then I would say it sucks buying US products. IEsalaries are about 5 times lower there with a simple conversion. 12,000 x 12 = 144,000 (top of pay scale there) 65,000 average here. so divide 11.2 by (144,000/65,000) and you get about 5 to 1. -Original Me

Re: [DOTNET] Can Saturn Do Code-Behind?

2002-04-11 Thread Steve Miller
It can create code behind but you have to create the code behind page as a seperate class file and then link it up manually using the page directives. Steve Miller - Original Message - From: "Stefan Finch" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, April 11, 2002 8:46 AM

Re: [DOTNET] Hailstorm is dead

2002-04-11 Thread Jason Lavigne
Canada!! Jay -Original Message- From: dotnet discussion [mailto:[EMAIL PROTECTED]] On Behalf Of franklin gray Sent: Thursday, April 11, 2002 4:06 PM To: [EMAIL PROTECTED] Subject: Re: [DOTNET] Hailstorm is dead sounds like it's time to move toah...where is that again? -Original

Re: [DOTNET] Impersonation error

2002-04-11 Thread Srihari Angaluri
I wouldn't suggest you to grant a user with such a privilege (infact, even the admins don't have this privilege). You need to configure your service to run in the context of the "Local System" account. Is your web service hosted in IIS? -Srihari On Thu, 11 Apr 2002, Srinivasa Sivakumar w

Re: [DOTNET] .Config vs .INI vs Registry Question

2002-04-11 Thread franklin gray
On loggin, I create a singleton object for the current logged in user. I create a shared function to return a reference to that object. So, all dlls reference the dll which I call utilities (has a lot of stuff I want all my dll's to be able to use). Look in the archives searching for singlet

Re: [DOTNET] Hailstorm is dead

2002-04-11 Thread Brady Kelly
The Rand isn't a very small currency, so the sudden drop to 11.2/$ has hurt a bit. I think a pretty average salary accros the board here is about R8,000 - R12,000 per month. -Original Message- From: Dean Cleaver [mailto:[EMAIL PROTECTED]] Sent: 11 April 2002 21:46 To: [EMAIL PROTECTED] S

Re: [DOTNET] Impersonation error

2002-04-11 Thread Srinivasa Sivakumar
thanks for the mail Srihari. How do I assign the "Act as part of the operating system" privileage to the Windows 2000 user account? - Original Message - From: "Srihari Angaluri" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, April 11, 2002 2:51 PM Subject: Re: [DOTNET] Imperso

Re: [DOTNET] Hailstorm is dead

2002-04-11 Thread franklin gray
sounds like it's time to move toah...where is that again? -Original Message- From: Dean Cleaver [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 11, 2002 2:35 PM To: [EMAIL PROTECTED] Subject: Re: [DOTNET] Hailstorm is dead It becomes too expensive for anyone other than Americans be

Re: [DOTNET] Hailstorm is dead

2002-04-11 Thread Dean Cleaver
And how do incomes compare? I think this is half the piracy problem - the average wage here is about $20,000 I think, which is about $320 a week in the hand, but the cost of Windows XP is about $700. Most average people can't afford the price of it... Dino -Original Message- From: dotne

Re: [DOTNET] FW: [DOTNET] ICorDebug and ICorProfiler questions

2002-04-11 Thread Richard Schooler
Thanks, this is helpful! On Wed, 10 Apr 2002 20:57:58 -0700, Mahesh Prakriya <[EMAIL PROTECTED]> wrote: >- Is it possible to do in-process debugging not in the context > of a profiler? This would seem to require somehow getting > an ICorDebug interface from the CLR. > >No. Bummer, but at leas

[DOTNET] Tying in XSL generated controls tie to .NET framework

2002-04-11 Thread Nouman Khan
Hello All We currently have a system that produces dynamically generated webpages via XSL. Each generated webpage contains any number of controls such as radio buttons, input buttons, checkboxes etc. controls on the form that I would like to tie back into the .NET framework so that I can leverage

Re: [DOTNET] Impersonation error

2002-04-11 Thread Srihari Angaluri
I don't know much about how webservices are configured, but in general, whatever service is trying to impersonate a user, it needs to run with the local system account. It is called the TCB_NAME privilege, which is "Act as part of the operating system". Only services running with this privilege ar

Re: [DOTNET] Showing a tooltip manually?

2002-04-11 Thread Duncan Smart
Interestingly (or infuriatingly) when you set the tooltip when there's no document loaded the tooltip appears when you mouse moves over the control. As soon as you load a document into the web browser control then it stops working. I guess IE stops (forgets) forwarding the relevant windows message

[DOTNET] Impersonation error

2002-04-11 Thread Srinivasa Sivakumar
Hi Guys, I'm trying to impersonate the ASP.NET pagers with the tag. In both machine.config and web.config I'm getting the same error. "Could not create Windows user tocken from the credentials specified in the config file. Error from the operating system 'A required privilege is not held by the

Re: [DOTNET] .Config vs .INI vs Registry Question

2002-04-11 Thread David Williams
Not to sound stupid, but how (in VB.NET) would I create a singleton class like that? As a separate assembly? (I would think so.) I get that it will require that the various properties and methods will need to be Shared, but I am not sure on the rest. On Thu, 11 Apr 2002 13:12:15 -0500, frankl

Re: [DOTNET] Hailstorm is dead

2002-04-11 Thread Brady Kelly
Oh yes indeed, try R11.20/$ -Original Message- From: Dean Cleaver [mailto:[EMAIL PROTECTED]] Sent: 11 April 2002 21:35 To: [EMAIL PROTECTED] Subject: Re: [DOTNET] Hailstorm is dead It becomes too expensive for anyone other than Americans because of exchange rates. $15,000USD = about $35

Re: [DOTNET] Hailstorm is dead

2002-04-11 Thread Srinivasa Sivakumar
Keith, The .NET Alert is an integral part of .NET My Services and whatever is available today is called MSN Alerts. They're not based on .NET My Services. If the .NET MY Services are dropped, so do the .NET Alerts! - Original Message - From: "Keith Franklin" <[EMAIL PROTECTED]> To: <[EMAI

[DOTNET] Design approach

2002-04-11 Thread Andreas Håkansson
I'm working on an application that will work towards a database located on the same network. The database will be accessed by multiple instances, running on diffrent machines in a network, of the application. I'm planning to build my application around (or on-top of) a hierarchical object model,

Re: [DOTNET] Hailstorm is dead

2002-04-11 Thread Dean Cleaver
It becomes too expensive for anyone other than Americans because of exchange rates. $15,000USD = about $35,000NZD. That's about half my companies yearly income. WAY too much for me to ever think about. Even just look at MSDN for example. In the US, you get it for about $2700, less the $300 rebat

Re: [DOTNET] TOOL: .NET CollectionGen: A new design-time code generator for VS.NET

2002-04-11 Thread Ian MacLean
Tony Bermudez wrote: >Chris, > >When I try to build the project I get the following error messages: > I had the same problem you need to fix the reference to Microsoft.VsDesigner as well as the one to Microsoft.VisualStudio.Designer.Interfaces. Both can be found in C:\Program Files\Microsoft Visu

Re: [DOTNET] Measuring performance

2002-04-11 Thread Donal Devine
Measuring performance in any multitasking system is difficult, it is especially difficult in .NET because your thread can be paused for garbage collection at any time. Dan Appleman suggests using UserProcessorTime to measure performance, this timer keeps track of how much time the thread spend

[DOTNET] getting ESPN Insider pages using Net

2002-04-11 Thread Matt Tagliaferri
Trying to extract the contents of an ESPN web page that requires an ESPN Insider username/password (yes, I am a valid member of that service, and yes, this is actually for work). Can I use a NetworkCredential object to pass the username/password? When I run the code below, it downloads the redirec

Re: [DOTNET] [OT] TOOL: .NET CollectionGen: A new design-time code generator for VS.NET

2002-04-11 Thread Ian MacLean
Chris Sells wrote: >CollectionGen [1] is a Custom Tool Add-In to VS.NET to generate >type-safe collections. CollectionGen is an add-on to generate code for >type-safe collections until we have templates in C# (likely) and VB >(unlikely). Once you've set it up and defined your collections in a >co

Re: [DOTNET] Measuring performance

2002-04-11 Thread Mads Houmann
If you don't mind calling out to Win32 you can use the PerformanceCounter APIs like this: using System; using System.Threading; using System.Runtime.InteropServices; using System.Security; [SuppressUnmanagedCodeSecurity] public sealed class StopWatch { private long startTime = 0; private long

Re: [DOTNET] Hailstorm is dead

2002-04-11 Thread Bryan Batchelder
Somehow the good folks at slashdot manage to make every other post about how .NET sucks. Its pathetic how narrow sighted they are. Oh well. Bryan Batchelder eBusiness Consultant ConnectWise, Inc. 813-935-7100 x 425 > -Original Message- > From: Sam Gentile [mailto:[EMAIL PROTECTED

Re: [DOTNET] Hailstorm is dead

2002-04-11 Thread Sam Gentile
Good luck telling (and convincing) the Slashdot folks. They are all posting the death of .NET (and Microsoft) -) You can read messages from the DOTNET archive, unsubscribe from DOTNET, or subscribe to other DevelopMentor lists at http://discuss.develop.com.

Re: [DOTNET] Fw: Fw: Security - Connecting to SQL Server

2002-04-11 Thread Shawn Wildermuth
I agree, this doesn't make any sense. Using WebServices locally (meaning within an Enterprise) seems under-performing. I like WebServices for site to site communications and interoperabily with divergent systems (Linux->Windows->Unix->Mac->Amiga) Thanks, Shawn Wildermuth [EMAIL PROTECTED] > -

Re: [DOTNET] TOOL: .NET CollectionGen: A new design-time code generator for VS.NET

2002-04-11 Thread Sam Gentile
Great job Chris! You can read messages from the DOTNET archive, unsubscribe from DOTNET, or subscribe to other DevelopMentor lists at http://discuss.develop.com.

Re: [DOTNET] Tricks (Managed) C++ issue about COM interop - help appreciated....

2002-04-11 Thread Sam Gentile
I'm confused. If its COM, just do a tlmimp and generate an RCW. That's your wrapper. You can read messages from the DOTNET archive, unsubscribe from DOTNET, or subscribe to other DevelopMentor lists at http://discuss.develop.com.

Re: [DOTNET] Frameset in ASP.Net

2002-04-11 Thread Jason Lavigne
Something like the following in JavaScript (or VB Script) in required. This is a client side behavior not server. // for the first frame window.frames[0].location = 'pg1.aspx?ID=<%=Request.QueryString("ID")%>'; // for the second frame window.frames[1].location = 'pg2.aspx?ID=<%=Request.QueryStrin

[DOTNET] Fw: Fw: Security - Connecting to SQL Server

2002-04-11 Thread Michael Bealer
I doubt that, because that would kind of defeat the whole reasoning behind having "SQL Client" and "OLE DB" permission sets. Why have them if they don't do any good. Also, if I give full trust to the code it runs fine. Do you have a link to an article or something that says I shouldn't be doing

[DOTNET] Frameset in ASP.Net

2002-04-11 Thread Guha, Rahul
Hello list, Assuming I have to use a frameset, how do I pass the querystring values to the specific src frames. Example: I have a frameset like below: Now this page has a querystring value ( say ID ) which I want to pass to the pages pg1 and pg2.

Re: [DOTNET] C# Lock question

2002-04-11 Thread Mike Woodring
The lock construct does what you want it to do. The object who's lock is being acquired is the key; not the code that's acquiring the lock. So any piece of code anywhere that agrees to wait for exclusive ownership of a given lock will be blocked if another piece of code currently holds that same

Re: [DOTNET] .Config vs .INI vs Registry Question

2002-04-11 Thread franklin gray
I was going to create a XML Document and put it in a singleton class that is available to the entire app. This way it would be in memory at all times for quick access like the config file. -Original Message- From: Andrew Cherry [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 11, 2002

Re: [DOTNET] TOOL: .NET CollectionGen: A new design-time code generator for VS.NET

2002-04-11 Thread Tony Bermudez
Chris, When I try to build the project I get the following error messages: -- Rebuild All started: Project: CollectionGen, Configuration: Release .NET -- Preparing resources... Updating references... Performing main compilation... c:\dev\e3vss\collectiongen\collectiongen.cs(32,17): erro

Re: [DOTNET] CryptographicException

2002-04-11 Thread Victor Scott
Thanks Srihari, this fixed the problem. Victor Scott You can read messages from the DOTNET archive, unsubscribe from DOTNET, or subscribe to other DevelopMentor lists at http://discuss.develop.com.

Re: [DOTNET] .Config vs .INI vs Registry Question

2002-04-11 Thread Andrew Cherry
Looking at your recommended XML solution... I'm just curious. Do you hack together your own XML reader and writer based on the XMLReader/Writer classes, or is there a class that can be used to retrieve data via something akin to query strings (a la the serialization mechanism) already present in .

[DOTNET] Web Service Session State

2002-04-11 Thread Marina
Hi, I am having trouble getting a Web Service to maintain session state information. It works if I just browse the asmx file via a browser, but not otherwise. I found a post in the archives saying to set the ConnectionGroupName property to a name, and I have done so. However, the session state do

Re: [DOTNET] Ask a Language Designer

2002-04-11 Thread Steve Holak
Eric, Actually, I was wondering about the "with" feature; it seems similar *in spirit * to the "foreach" (although the interface implemented would not be anywhere similar). Can you answer that? It seems like it would be a very common question. Steve Holak Senior Software Architect Broker

Re: [DOTNET] ObjectSpaces

2002-04-11 Thread Steve Holak
Newsgroup: microsoft.public.objectspaces Steve Holak Senior Software Architect Brokerage Concepts IS Dept. 610-491-4879 email: [EMAIL PROTECTED] Peter Foreman cc: Sent by: dotnet Subject: [DOTNET]

  1   2   >