[DOTNET] SSL and WebServices

2002-04-16 Thread Mladen Andzic
Is it possible to use 128-bit SSL encription with XML WebServices? You can read messages from the DOTNET archive, unsubscribe from DOTNET, or subscribe to other DevelopMentor lists at http://discuss.develop.com.

Re: [DOTNET] .NET testing tools

2002-04-16 Thread Dean Cleaver
Alex, I quite agree - however in this case the function I am thinking of is a static method of a class so there's no constructors etc but it's private to the class, and hence can't be tested externally. Likewise, I don't think I want to make it protected, because it's not something I want over-ri

Re: [DOTNET] .NET testing tools

2002-04-16 Thread Alex Henderson
Unit tests are generally used for testing exposed and isolated pieces of functionality in a repeatable fashion - with that in mind if your unit tests are well written any adverse changes to private functions will have repercussions for the exposed public methods, which you'll pick up the next time

Re: [DOTNET] .NET testing tools

2002-04-16 Thread Dean Cleaver
Can I ask how you use this to test "private" functions? Like if I have a function to validate passwords, and that function is private to the User class, then I guess the only way to use Nunit on it is to make it public for the testing phase??? Can't say I like that idea very much... Dino -O

[DOTNET] Moving an ADO.Net Dataset (Datatable) into an ADODB.Recordset...

2002-04-16 Thread Alex Henderson
Is there an easy way to copy the conents of a DataTable in an ADO.Net DataSet ie. (myDs.Tables[0]) into an ADODB.Recordset object? The ADODB.Recordset is offline (not connected to a datasource...) The reason I ask is that I would like to make use of the MSChart active-x object within a .Net Webfo

[DOTNET] Edit/Copy contents of DataGrid to clipboard -- how?

2002-04-16 Thread kojiishi
How do I copy contents of DataGrid to clipboard? I can press Ctrl-A to select all while focus is on the DataGrid, and press Ctrl-C to copy contents. Then Ctrl-V in Excel will paste table as they appear in the DataGrid. This is nice. Now, I'd like to expose this "feature" in my Edit menu. Anyone

[DOTNET] Calendar control & posting appointment/events

2002-04-16 Thread Henry Potter
Hi, I've just started out on ASP.NET and am trying to use the calendar control to develop an event calendar. ie. users can post events to the calendar and these could be seen by everyone. would like to see how these events could be stored in a SQL database. perhaps i would need to use DayRender to

[DOTNET] Question: Sample Code

2002-04-16 Thread Cameron Cameron
Sorry if this has been asked before. Where can I find a good C# example for a 3-tier application with both WinGUI and WeGUI as the starting point for my development? Thank you in advance. Cameron _ Send and receive Hotmail on your

Re: [DOTNET] Prevent UserControl from inserting in ToolBox

2002-04-16 Thread Elton Wells
Try using ToolBoxItemAttribute and specifying false. - Elton -Original Message- From: dotnet discussion [mailto:[EMAIL PROTECTED]]On Behalf Of Ralf Heitmann Sent: Tuesday, April 16, 2002 2:37 AM To: [EMAIL PROTECTED] Subject: [DOTNET] Prevent UserControl from inserting in ToolBox When

[DOTNET] embedding powerpoint

2002-04-16 Thread Patrick Tang
Hi, How can I embed a powerpoint object in a window forms of C# window applications, for showing powerpoint slides. I can launch powerpoint program outside the applicatoin but cannot directly embedded it in the window forms. Thanks Patrick -- \305w\25

Re: [DOTNET] OT: STL experts please I need some help!

2002-04-16 Thread Stephane Murphy
here the fix: template class InSequence : public std::binary_function<_Ty, const char*, bool> { public: bool operator()(const _Ty& _X, const char* _Y) const { return true; /* removed for brevity */ } }; >From: "Rolls, Robert" <[EMAIL PROTECTED]> >

[DOTNET] OT: STL experts please I need some help!

2002-04-16 Thread Rolls, Robert
Hi all, I want to use replace_if to replace carrige return line feeds from a string and I'm trying to set up a predicate here's what I've got - template class InSequence : public std::binary_function<_Ty, const char*, bool> { bool operator()(const _Ty& _X, const char* _Y) { return true;

Re: [DOTNET] NIGHTMARE BUG!! Visual Studio fails to build debug, but release works fine..

2002-04-16 Thread Tomas Restrepo
James, > I am developing a .net project. The solution has 14 projects, of > rying size. The compiled IL is a total of 640k so far. So it's > tting big, but > you wouldn't expect there to be any problems. Been there, done that, ditched VS.NET as a build tool. IMNSHO, this is a SHOW STOPPER bu

Re: [DOTNET] Problem loading xslt

2002-04-16 Thread Erick Thompson
Well, I guess it was a mistake in my xslt. I think this reliance on VS.net intellisense is causing my memory to collect dust :) Thanks for the help, Erick - Original Message - From: "Weakliem, Gordon" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 16, 2002 4:53 PM Subje

Re: [DOTNET] Problem loading xslt

2002-04-16 Thread Weakliem, Gordon
Right, call-template is a valid xslt element and apply-template isn't - you're missing an "s" Compare: > -Original Message- > From: Erick Thompson [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, April 16, 2002 5:08 PM > To: [EMAIL PROTECTED] > Subject: Re: [DOTNET] Problem loading xslt >

Re: [DOTNET] Problem loading xslt

2002-04-16 Thread Erick Thompson
The error string was a copy and paste from the error page. I don't think it's an error in my xslt, as if I change the it to call-template, it works. Anyway, here is the xslt. http://www.w3.org/1999/XSL/Transform";> . Erick - Original Message -

Re: [DOTNET] How to place and play an AVI file on a form?

2002-04-16 Thread Andreas Häber
There isn't any classes in the CLR for audio/video support, so you have to interop with something.. like the suggested WMP ActiveX control. I don't think it should be any big problem using the WMP ActiveX from a Windows Form, and the COM interop will make it look like it's .NET :-) Andreas Häber

Re: [DOTNET] Problem loading xslt

2002-04-16 Thread Weakliem, Gordon
The XSLT element is , so if your xslt contains , the error message is correct, though not very helpful in pointing out the real error. If this was just a typo in your error message, then post the source of your xslt, the loading code isn't the source of the error. > -Original Message- >

[DOTNET] ANN: KlipFolio utility available

2002-04-16 Thread Brian G. Vallelunga
Hello group! If you're familiar with the KlipFolio program, then you may be interested in a free utility I have created. My KlipLibrary automates the creation of Klip files and Klip "food" files. This allows the user to easily create files that support the KlipFolio program, and allows for easy u

[DOTNET] Problem loading xslt

2002-04-16 Thread Erick Thompson
I'm writing an xslt template for html output. I'm using the XslTransform class, and loading the xslt from an embedded resource string. The error I'm getting is in the load function and is "'xsl:apply-template' cannot be a child of 'xsl:for-each' element". Now this doesn't make any sense to me, as

Re: [DOTNET] How to place and play an AVI file on a form?

2002-04-16 Thread Henrik Enemark Rasmussen
Media Player may be a solution, but I was hoping for a simpler approach that does not involve pre-.NET components. But if that's the only solution, I guess I have to figure out how to use Media Player. Do you know of any samples with .NET / C# code. Thanks Henrik > -Original Message- >

Re: [DOTNET] How to place and play an AVI file on a form?

2002-04-16 Thread Marsh, Drew
Henrik Enemark Rasmussen [mailto:[EMAIL PROTECTED]] wrote: > How can I place an AVI file on a form with other controls and > play the AVI file while the other controls are available to > the user? Is there a way the PictureBox or ImageAnimator can do this? How about the Windows Media Player Acti

[DOTNET] How to place and play an AVI file on a form?

2002-04-16 Thread Henrik Enemark Rasmussen
I think this should be easy, but I can't figure it out. How can I place an AVI file on a form with other controls and play the AVI file while the other controls are available to the user? Is there a way the PictureBox or ImageAnimator can do this? Any help is greatly appreciated, thanks. Regard

Re: [DOTNET] Browser Hosted Usercontrol Config FIle

2002-04-16 Thread Nantz, Brian
For the list I found the solution at: http://groups.google.com/groups?hl=en&threadm=Ob6jBraiBHA.2580%40tkmsftngp03 &rnum=4&prev=/groups%3Fq%3Dconfigurationfilename%26hl%3Den%26selm%3DOb6jBrai BHA.2580%2540tkmsftngp03%26rnum%3D4 -Original Message- From: Marsh, Drew [mailto:[EMAIL PROTECT

Re: [DOTNET] Slightly OT: XML Schema out of SQL?

2002-04-16 Thread Jeff Fedor
great thanks (and thanks to Bob as well) j -Original Message- From: Shawn Wildermuth [mailto:[EMAIL PROTECTED]] Sent: April 16, 2002 4:23 PM To: [EMAIL PROTECTED] Subject: Re: [DOTNET] Slightly OT: XML Schema out of SQL? Fill a DataSet and save the XSD? Thanks, Shawn Wildermuth [EMAI

Re: [DOTNET] NIGHTMARE BUG!! Visual Studio fails to build debug, but release works fine..

2002-04-16 Thread Sean Greer (SBI-Chico)
The other problem that I've had is with common output directories. My advice, don't use them. When I had the output of all of my projects going to a single directory and Copy Local set to false, I had a complete nightmare rebuilding the solution. I'd have to remove all references and then build

[DOTNET] How to pass customdata

2002-04-16 Thread Srihari Angaluri
Hello, I know there is a way to pass custom action data to an indivual installer component or any other exe file, e.g. from the installer. How do we do it the other way around? How can I pass a value back to the installer from an application? I have a license dialog box in my installer pro

Re: [DOTNET] Saving application settings...

2002-04-16 Thread Brian G. Vallelunga
If you are on a 2K Domain, you can setup your users to have "roaming profiles." That basically means that all of their preferencese are stored on some server somwhere and downloaded and cached on whichever client they log onto. So their desktop and my documents would follow them around an office.

Re: [DOTNET] Saving application settings...

2002-04-16 Thread franklin gray
web services -Original Message- From: Jeff Roberts [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 16, 2002 4:01 PM To: [EMAIL PROTECTED] Subject: Re: [DOTNET] Saving application settings... what would be the best way to store them in a database over http/https ? You can read messages

Re: [DOTNET] Saving application settings...

2002-04-16 Thread franklin gray
What is this roaming profile setup? -Original Message- From: Brian G. Vallelunga [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 16, 2002 3:56 PM To: [EMAIL PROTECTED] Subject: Re: [DOTNET] Saving application settings... Franklin, That is a very good point I did not mention. Isolated s

Re: [DOTNET] Saving application settings...

2002-04-16 Thread Jeff Roberts
what would be the best way to store them in a database over http/https ? You can read messages from the DOTNET archive, unsubscribe from DOTNET, or subscribe to other DevelopMentor lists at http://discuss.develop.com.

Re: [DOTNET] Saving application settings...

2002-04-16 Thread Brian G. Vallelunga
Franklin, That is a very good point I did not mention. Isolated storage will work for the current machine the user is on, as well as any other machine the user logs into if they have a roaming profile setup. But if this is a web application, or if the user needs to use it from any other location,

Re: [DOTNET] NIGHTMARE BUG!! Visual Studio fails to build debug, but release works fine..

2002-04-16 Thread James Berry
Hi Sean, I've had the odd funny in the past too, which is why I've tried everything I have to make it work (see below). In this case, I can move all the code to a new machine, without any dll's and it STILL doesn't work. I've tried just about every permutation of everything. Frustrated

Re: [DOTNET] NIGHTMARE BUG!! Visual Studio fails to build debug, but release works fine..

2002-04-16 Thread Shawn Wildermuth
Well, you know what Bill Gates said...we'd never need more than 640K. Maybe you're running out of Memory in the base 640K space? (sorry, I had to...) Thanks, Shawn Wildermuth [EMAIL PROTECTED] > -Original Message- > From: dotnet discussion [mailto:[EMAIL PROTECTED]] > On Behalf Of Jame

Re: [DOTNET] Slightly OT: XML Schema out of SQL?

2002-04-16 Thread Shawn Wildermuth
Fill a DataSet and save the XSD? Thanks, Shawn Wildermuth [EMAIL PROTECTED] > -Original Message- > From: dotnet discussion [mailto:[EMAIL PROTECTED]] > On Behalf Of Jeff Fedor > Sent: Tuesday, April 16, 2002 4:07 PM > To: [EMAIL PROTECTED] > Subject: [DOTNET] Slightly OT: XML Schema out

Re: [DOTNET] Saving application settings...

2002-04-16 Thread franklin gray
Also keep in mind. Do you want the user preferences to work on only one machine or do you want them to work on any machine the user logs in from? If it is the later, then I suggest you store these settings in the DB or whatever data storage you are using. -Original Message- From: Bria

Re: [DOTNET] Saving application settings...

2002-04-16 Thread franklin gray
Not that I know of. It has been suggested to me that we create our own XML file to store settings that change. -Original Message- From: Andrew Cherry [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 16, 2002 2:52 PM To: [EMAIL PROTECTED] Subject: [DOTNET] Saving application settings...

Re: [DOTNET] NIGHTMARE BUG!! Visual Studio fails to build debug, but release works fine..

2002-04-16 Thread Allen Aune
Have you tried 1) closing the IDE, 2) deleting the bin and obj directories under your project directories, then 3) building (not rebuilding) your solution, project by project in the Project Build Order (right-click on the solution to get this dialog box). We have about 20 projects in our solut

Re: [DOTNET] NIGHTMARE BUG!! Visual Studio fails to build debug, but release works fine..

2002-04-16 Thread Sean Greer (SBI-Chico)
I've had my share of build problems Visual Studio .NET 1-oh-my-God! as well. My last resort has always been to close Visual Studio and delete the bin and obj directories for all projects. Once this is done, I have been able to build regardless of the previous error (missing reference, locked file

Re: [DOTNET] Slightly OT: XML Schema out of SQL?

2002-04-16 Thread Beauchemin, Bob
You can get portions (most) of it by reading it into the DataSet, adding the appropriate relationships, and calling DataSet.WriteXmlSchema. Tools like XML SPY and others can export database schemas as XML schemas as well. Hope this helps, Bob Beauchemin [EMAIL PROTECTED] -Original Message-

[DOTNET] NIGHTMARE BUG!! Visual Studio fails to build debug, but release works fine..

2002-04-16 Thread James Berry
I am developing a .net project. The solution has 14 projects, of varying size. The compiled IL is a total of 640k so far. So it's getting big, but you wouldn't expect there to be any problems. Today VS.NET has started refusing to build my project in debug mode. A simple 'using Adastra.CMS.Bus

[DOTNET] Slightly OT: XML Schema out of SQL?

2002-04-16 Thread Jeff Fedor
anyone know a quick and snappy way to get a database schema out of SQL as XML? thanks j You can read messages from the DOTNET archive, unsubscribe from DOTNET, or subscribe to other DevelopMentor lists at http://discuss.develop.com.

Re: [DOTNET] Saving application settings...

2002-04-16 Thread Brian G. Vallelunga
Andrew, This has been talked about many times before on this list and on usenet, I'd go looking through the archives. That said, there is no easy way to use the AppSettings to save to the file. You have a few options: 1) If you're just saving program configuration settings, you can write somethi

[DOTNET] Saving application settings...

2002-04-16 Thread Andrew Cherry
I'm trying to use the System.Configuration.ConfigurationSettings.AppSettings to retrieve saved settings (duh :) ). That works fine. However, I've noticed that it's a read only container -- meaning I can't save any settings that change. Is there any way (short of writing my own settings system) th

[DOTNET] why no Session in Application_BeginRequest

2002-04-16 Thread Pete B
I want to validate that a user's session has not timed out OR that a user has logged in succesfully ( by checking Session info ) before the user's request is processed, and redirect the user to the login page if necessary. At the same time, if the user is logged in, I want to put some of the user'

Re: [DOTNET] Horizontal Scrolling a Listbox

2002-04-16 Thread Odis Wooten
Chris R Thank for the insight on scrolling a listbox. Here is a class derived from System.Windows.Forms.ListBox with one Method HScroll that maybe others will want to use. Odis Wooten class myListbox : System.Windows.Forms.ListBox { public void HScroll(int direction) { //Set direct

Re: [DOTNET] Threading and Enumeration

2002-04-16 Thread Duncan Godwin
Or you could use that, which I didn't even realise was there...sorry. Duncan - Original Message - From: "Jim Arnold" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 16, 2002 2:11 PM Subject: Re: [DOTNET] Threading and Enumeration > > Why would you actually want to make

Re: [DOTNET] VB.Net turned off automatic case changing....

2002-04-16 Thread Blain Timberlake
Copied everything into a new solution and it started working again. =Blain -Original Message- From: dotnet discussion [mailto:[EMAIL PROTECTED]] On Behalf Of Jacob Grass Sent: Tuesday, April 16, 2002 11:32 AM To: [EMAIL PROTECTED] Subject: Re: [DOTNET] VB.Net turned off automatic case c

Re: [DOTNET] How to determine if .NET framework is already installed?

2002-04-16 Thread David Brown
I too avoided the registry. My MSI Setup first checks the to see if the versioned directory exists, and if it does, then verifies that mscorcfg.dll exists in that directory (and extracts the build number from that file). Note that with my testing, I've found that the uninstall for the .net framew

Re: [DOTNET] Horizontal Scrolling a Listbox

2002-04-16 Thread Henrik Enemark Rasmussen
You need to set the ListBox.HorizontalExtent property to an adequate value. Often you will measure all items when inserted into the listbox using Graphics.MeasureString, then set the property to reflect the largest value. -Original Message- From: Odis Wooten [mailto:[EMAIL PROTECTED]] Sen

Re: [DOTNET] VS.NET locks dlls

2002-04-16 Thread Mattias Konradsson
> You can also NANT.. ( you can download it http://nant.sourceforge.net) we > find it and it's really simple as well as powerful. We experienced similar > problems (honestly I think all this dll-blocking thing it's a nightmare), > and we will use VS only for editing and debugging purpouses). > > H

[DOTNET] Horizontal Scrolling a Listbox

2002-04-16 Thread Odis Wooten
I have a listbox where the items are wider than the listbox. I want to programmatically horizontally scroll the part of an item that is not visible. I cannot find out how to get at the horizontal scrollbar to reposition the thumb. Or any other way to horizontally scroll the listbox. You can re

Re: [DOTNET] .NET testing tools

2002-04-16 Thread Stefan Finch
Perfect ... Thanks S -Original Message- From: Weakliem, Gordon [mailto:[EMAIL PROTECTED]] Sent: 16 April 2002 17:17 To: [EMAIL PROTECTED] Subject: Re: [DOTNET] .NET testing tools NUnit won't do what he wants, he wants interactive testing. There's .NET Webservice Studio on gotdotnet f

Re: [DOTNET] .NET testing tools

2002-04-16 Thread Weakliem, Gordon
NUnit won't do what he wants, he wants interactive testing. There's .NET Webservice Studio on gotdotnet for webservices[1], but I don't know of anything for a generic assembly. [1] http://gotdotnet.com/team/tools/web_svc/default.aspx > -Original Message- > From: Ethan Smith [mailto:[EMA

Re: [DOTNET] .NET testing tools

2002-04-16 Thread Ethan Smith
http://nunit.sourceforge.net -Original Message- From: dotnet discussion [mailto:[EMAIL PROTECTED]] On Behalf Of Stefan Finch Sent: Tuesday, April 16, 2002 12:00 PM To: [EMAIL PROTECTED] Subject: [DOTNET] .NET testing tools Does anyone know of any .NET testing tools. Ideally, the user sh

Re: [DOTNET] VB.Net turned off automatic case changing....

2002-04-16 Thread Blain Timberlake
You ever just get that gut feeling right after you fire off an email, that you know EXACTLY what someone is going to say in return? :) =Blain -Original Message- From: dotnet discussion [mailto:[EMAIL PROTECTED]] On Behalf Of Bernard Vander Beken Sent: Tuesday, April 16, 2002 11:31 AM To

[DOTNET] .NET testing tools

2002-04-16 Thread Stefan Finch
Does anyone know of any .NET testing tools. Ideally, the user should be able to browse to some assemblies, choose a method, enter its parameters and view the response. Sounds like a good use of reflection, but before I build one, is there anything out there that does this. Best wishes S

Re: [DOTNET] Anyone knows what causes NullReferenceException in __CxxCallUnwindDtor? (unmanaged C++, called from managed C++)

2002-04-16 Thread Thomas Tomiczek
Call it a compiler error - I moved one call from the constructor of the class over to an initialiation routine, and voild, it works. Regards Thomas Tomiczek THONA Consulting Ltd. (Microsoft MVP C#/.NET) -Original Message- From: Thomas Tomiczek Sent: Dienstag, 16. April 2002 17:35 To

Re: [DOTNET] VS.NET locks dlls

2002-04-16 Thread Chris Kinsman
In our case that just isn't doable. Currently the project contains around 85 assemblies being worked on by about 20 developers. A nightly build is the only productive way to get updated code to everyone and a common directory is really the only way to distribute it. I use bin\debug for personal

Re: [DOTNET] updating dataset and dataform

2002-04-16 Thread Beauchemin, Bob
Hi, I just came in on this discussion...but... Yes, you can bind a specific field on the DataSet to a TextBox. And it can be the same field that you bind to the grid, and you can use BindingContext to keep the two in sync (as was already stated). You might even be able to do the more complex bi

[DOTNET] Anyone knows what causes NullReferenceException in __CxxCallUnwindDtor? (unmanaged C++, called from managed C++)

2002-04-16 Thread Thomas Tomiczek
Hi, I am just trying to constrcut com objects (A com object, actually) manually without the registry keys being present :-) This is done thorugh a factory method, just "creating the object" with new in managed C++ (Actually with __nogc new) The object in question is a Csource inheriting class (D

Re: [DOTNET] VB.Net turned off automatic case changing....

2002-04-16 Thread Jacob Grass
> This is fixed in C# ;) ROTFL Blain: Chances are, this kind of behavior is caused from a code block not being closed. Something like a missing End If or End Sub. Jacob A. Grass You can read messages from the DOTNET archive, unsubscribe from DOTNET, or subscribe to other DevelopMentor lists

Re: [DOTNET] VB.Net turned off automatic case changing....

2002-04-16 Thread Bernard Vander Beken
This is fixed in C# ;) -Original Message- From: Blain Timberlake [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 16, 2002 4:43 PM To: [EMAIL PROTECTED] Subject: [DOTNET] VB.Net turned off automatic case changing Just today when I opened Visual Studio .Net, the IDE no longer changes

Re: [DOTNET] Communication between applications

2002-04-16 Thread Chris Kinsman
Remoting... You can read messages from the DOTNET archive, unsubscribe from DOTNET, or subscribe to other DevelopMentor lists at http://discuss.develop.com.

Re: [DOTNET] Build a Better Menu

2002-04-16 Thread Chris Kinsman
I went down this exact route. The nice thing is that once you have morphed the MenuItem objects to your objects the Menu Editor does not change their type while editing them. You just can't get it to create new items of that type. You can read messages from the DOTNET archive, unsubscribe from

Re: [DOTNET] updating dataset and dataform

2002-04-16 Thread Bob Edwards
I don't thnk this is possible. Let me tell you just a bit more about the design. I have two tables: call them customers and orders. Customers is the parent, orders the child. When you click on the plus in the grid, you see all the orders for the customer. When you click on the customer in the gr

Re: [DOTNET] Allaying my boss' fears

2002-04-16 Thread Chris Kinsman
> >Internet <-> Firewall (only port 80 & 443 open) <-> IIS Front-end box >running ASP.NET <-> Firewall (only 80 open for .NET remoting) <-> Data Tier >box (running .NET remoted components) <-> Firewall (only SQL Port (1433?) >open) <-> SQL Server Cluster. I would move the remoting to a different

Re: [DOTNET] Allaying my boss' fears

2002-04-16 Thread Chris Kinsman
On Wed, 10 Apr 2002 11:20:37 -0400, Howard Pinsley <[EMAIL PROTECTED]> wrote: >well known port safer than opening the more well known SQL server port? Is You can always change the SQL Server port. Easy to do... You can read messages from the DOTNET archive, unsubscribe from DOTNET, or subscri

[DOTNET] VB.Net turned off automatic case changing....

2002-04-16 Thread Blain Timberlake
Just today when I opened Visual Studio .Net, the IDE no longer changes case when I type in a defined variable's name. All the methods and everything are still brought up automatically, but the case stays as typed, and doesn't change to match the case of the Dim statement. I looked around for an

[DOTNET] InnerXml and namespaces

2002-04-16 Thread Bernt Brenna
I try to create the following Xml using .Net, but get into trouble with my namespaces: alarmspc.020402131042_0 Testing... 56 Testing... The problem is: The value of the node is set using the .InnerXml property, linenode.InnerXml = "Testing... 56 Testing..."; When I

[DOTNET] VB.NET - Automation Server error

2002-04-16 Thread Allen Foster
I just installed VS.NET Pro on a Windows 2K Pro PC. When I attempt to start a new VB.Net Windows Application, I get the error: Automation Server can't create object. No error number, etc. Anyone know what is causing this? Thanks. af <>< You can read messages from the DOTNET archive, unsubsc

Re: [DOTNET] XML Problem: The expression passed to this method should result in a NodeSet.

2002-04-16 Thread Bernt Brenna
The problem is your XPath query, it should be in this format: /keywords/keyword/danish[. ="jeg"] [ . = "text"] means "find node where the text of the node(.) equals text. Bernt Brenna > -Original Message- > From: John Mandia [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, April 16, 2002 11

Re: [DOTNET] Threading and Enumeration

2002-04-16 Thread Jim Arnold
> Why would you actually want to make the copy by some means other than > enumeration? Because ICollection.CopyTo() (where available) is usually 10x faster? He says, jumping in without reading the whole thread. Jim > > -- > Ian Griffiths > DevelopMentor > > - Original Message - > From:

Re: [DOTNET] Threading and Enumeration

2002-04-16 Thread Ian Griffiths
I thought the point was that you *do* make the copy by enumerating. The idea is that you acquire the lock, build a copy as quickly as you can using the enumerator, release the lock, and then work through the copy at your leisure. I thought that was what the original post was suggesting. (Althoug

Re: [DOTNET] Why upgrade to .NET

2002-04-16 Thread Steve Holak
The current issue of .NET Magazine is focused on migration issues and decisions, you could mine or forward a good deal of the information for your explanation. Steve Holak Senior Software Architect Brokerage Concepts IS Dept. 610-491-4879 email: [EMAIL PROTECTED] Phil

Re: [DOTNET] Threading and Enumeration

2002-04-16 Thread Duncan Godwin
Depending on what's in the collection you can either use a collections Clone() method if you need a shallow copy, or Serialize via a MemoryStream if you need a deep copy. Duncan - Original Message - From: "Graeme Foster" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 16

Re: [DOTNET] Why upgrade to .NET

2002-04-16 Thread IVAN TOWLSON
You might want to check out Joel Spolsky's article on his company's .NET migration strategy. Obviously what is right for his company and products may not be right for yours -- and to a great extent it's a "how" rather than a "why" -- but it's a good example of a realistic approach. http://www.jo

[DOTNET] Why upgrade to .NET

2002-04-16 Thread Philip Ruelle
Hi all, Currently we use VB6, SQL Server 7 and ASP and I need to convince 'the powers that be' that our future developments should be in .NET. Please note that there's no question of going to Java and it's a given that we will go to .NET, the issue is when we will make the change. I've been a

Re: [DOTNET] Threading and Enumeration

2002-04-16 Thread Graeme Foster
The fun bit is making the copy *without enumerating* ;) G. -- Graeme Foster ([EMAIL PROTECTED]) Principal Software Engineer Aston Broadcast Systems Ltd. (http://www.aston.tv) Disclaimer: I really don't have a clue what I'm on about. -Original Message- From: dotnet discussion [mailto:[EMA

[DOTNET] XML Problem: The expression passed to this method should result in a NodeSet.

2002-04-16 Thread John Mandia
Hi All, Trying to build a language user control where you can enter a danish entry, followed by an english translation, a story id (People enter 0 when there is no story) and comments (This is the plural version of this word etc). They then select whether this entry is a keyword, phrase, question

Re: [DOTNET] OT: .job files

2002-04-16 Thread Andreas Häber
Yeah.. you're right.. stupid me forgot to see what system he used :( Andreas Häber - Original Message - From: "Richard Birkby" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 16, 2002 10:06 AM Subject: Re: [DOTNET] OT: .job files > But only on XP > > > -Original Mes

[DOTNET] ASHX files and IHttpHandlers

2002-04-16 Thread Colin Wisdom
I'm trying to generate a text file and make it downloadable for users, I did look at a standard Response.Write file using headers etc but this made IE crash. Somebody has since pointed me in the direction of ASHX files, however I'm still having a few hitches. I had a look around and managed to fi

Re: [DOTNET] IDisposable and CodeDom.. oh my!

2002-04-16 Thread Toshiyuki Ichikawa
> I could not find any collections where I could add Interfaces. See the CodeTypeDeclaration.BaseTypes property. :-) Also check the CodeDOM Quick Reference in the SDK docs. It is quite helpful. http://msdn.microsoft.com/library/en-us/cpgenref/html/cpconcodedomquickreference.asp HTH, - Orig

Re: [DOTNET] OT: .job files

2002-04-16 Thread Brady Kelly
> ministry - jesus built my hotrod How long has it been since I heard that one! -Original Message- From: Patrick Burrows [mailto:[EMAIL PROTECTED]] Sent: 15 April 2002 19:18 To: [EMAIL PROTECTED] Subject: Re: [DOTNET] OT: .job files Unless I'm wrong, AT and the Win2k Task Scheduler are

Re: [DOTNET] OT: .job files

2002-04-16 Thread Richard Birkby
But only on XP > -Original Message- > From: dotnet discussion [mailto:[EMAIL PROTECTED]]On Behalf Of > Andreas Häber > Sent: 15 April 2002 22:33 > To: [EMAIL PROTECTED] > Subject: Re: [DOTNET] OT: .job files > > > I guess schtasks.exe should do the job... > > hth, > Andreas Häber > >

[DOTNET] Prevent UserControl from inserting in ToolBox

2002-04-16 Thread Ralf Heitmann
When I choose "Customize Toolbox" and insert an assembly via Browse, all included UserControls are added into the Toolbox. Can I prevent one specific UserControl from inserting via attributes? (haven't found anything in Documentation, maybe I'm missing something) that it cannot be used in the Roo