Re: [DOTNET] Fax over TCP/IP in .NET

2002-06-03 Thread Ed Stegman
Nope. The Win2K COM implementation doesn't support broadcast[1]. You'll have to PInvoke Win32 API for that. I haven't dug into the XP/.Net Server COM implementation to see if it does or not, although I have read that it now supports delivery notifications through email. Keep Smilin' Ed Stegma

[DOTNET] windows authentication in .Net

2002-06-03 Thread george antony
Hi all In my ASP.Net application i am using windows authenticated security . when i run my application my NtLoginId appears..When I run the same url from other people computer instead of their NtLoginId only My NtloginId appears.. when others access my url they should see their NtloginId instead

Re: [DOTNET] Administrative Announcement - Please Read

2002-06-03 Thread Cavanaugh, Bill
How about auto-subscribing the readership of this list to all three of the new ones and letting us pick where we DON'T want to be? I'm betting the vast majority will want all of them > -Original Message- > From: Ahern, Shannon [mailto:[EMAIL PROTECTED]] > Sent: Friday, May 31, 2002 5:

Re: [DOTNET] Class Member Initialization.

2002-06-03 Thread Ed Stegman
As Drew has already covered the bases from a technical standpoint, I'll just chip in with my non-technical reason for also choosing to do initialization in the ctor (#2 choice if you read Drew's post): I like to have one place to start from to see what's going on when I look through a class. It

Re: [DOTNET] Class Member Initialization.

2002-06-03 Thread Rolls, Robert
Drew, As usual impeccable. Thanks Robert. -Original Message- From: Marsh, Drew [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 4 June 2002 14:41 To: [EMAIL PROTECTED] Subject: Re: [DOTNET] Class Member Initialization. Rolls, Robert [mailto:[EMAIL PROTECTED]] wrote: > Do people still use

Re: [DOTNET] OO Architecture question...

2002-06-03 Thread Thomas Tomiczek
(a) for web farms you need to make SURE that a user stays with his original server. This CAN be done - most load balancing systems support this, often on the basis of either: (1) redirecting the incoming user to a specific server, you find this on certain communities, where you are immedia

Re: [DOTNET] Class Member Initialization.

2002-06-03 Thread Marsh, Drew
Rolls, Robert [mailto:[EMAIL PROTECTED]] wrote: > Do people still use the constructor to define default values > to members or has the default constructor been depreciated? > Are there any reasons not to use to the following? > > public byte[] arr = new byte[1024]; > > rather than > > public byte

Re: [DOTNET] add Array items

2002-06-03 Thread Manolito B San Jose
David, I believe, yes, you have to use an ArrayList. This has the functionality that you want if you want to dynamically add to your array without worrying about resizing your array. Noli -Original Message- From: David B. Bitton [mailto:[EMAIL PROTECTED]] Sent: Monday, June 03, 2002 10:

Re: [DOTNET] OleDbParam and Oracle Composite types

2002-06-03 Thread Beauchemin, Bob
None of the current or in beta Oracle data providers or OLE DB providers actually support Oracle composite types (ARRAY or TABLE). Or OBJECT types, for that matter. The only ways I've heard of to use Oracle composite types is either Java/JDBC or OO4O (which is mostly usable in .NET through COM

[DOTNET] Class Member Initialization.

2002-06-03 Thread Rolls, Robert
Do people still use the constructor to define default values to members or has the default constructor been depreciated? Are there any reasons not to use to the following? public byte[] arr = new byte[1024]; rather than public byte[] arr = null; then within the constructor arr = new byte[1024]

Re: [DOTNET] Cross-posting (was RE: [DOTNET-WEB] [DOTNET] .NET Printing HELP!!!)

2002-06-03 Thread James Johnson
The funny part is, (s)he did :p James > When people start cross posting to DOTNET-WEB and > DOTNET-WINFORMS, then you should start complaining :) > > -Fritz > > Fritz Onion > DevelopMentor > http://staff.develop.com/onion/ You can read messages from the DOTNET archive, unsubscribe from

[DOTNET] Cross-posting (was RE: [DOTNET-WEB] [DOTNET] .NET Printing HELP!!!)

2002-06-03 Thread Fritz Onion
> The cross-posting begins I think cross-posting to DOTNET along with one of the new groups is perfectly fine for the next month until the DOTNET list goes away. This will give people time to subscribe to the new lists, while not disrupting the old during the transition. When people start cro

Re: [DOTNET] Administrative Announcement - Reasoning

2002-06-03 Thread Aaron Skonnard
> You mention 3 lists a number of times, but I thought there were 5: > > CX: Managed C++ and C# issues > VB: VB.NET Issues > CLR: CLR Specific issues > WINFORMS: Windows Forms > WEB: Web Forms, Web Services, etc. The language lists, designed for language discussions only, were in the works lon

Re: [DOTNET] .NET Printing HELP!!!

2002-06-03 Thread kojiishi
Maybe RichEditControl help. The managed RichEditControl doesn't have any support for printing, but native control does, so you could load your RTF into it and P/Invoke/SendMessage to send. I haven't tried though. -Original Message- From: The DOTNET list will be retired 7/1/02 [mailto:[EMA

Re: [DOTNET] OO Architecture question...

2002-06-03 Thread Oren Novotny
If you're going to develop a community/portal-like application, I'd suggest taking a look at the IBuySpy Portal code[1]. The code is very modular and implements user objects for storing user meta-data as well as server-side .ascx controls for modularity and flexibility of display. Best of all, yo

Re: [DOTNET] .NET WEB - RTF Printing HELP!!!

2002-06-03 Thread Bill Schmidt
Patience, Tara, Patience! By my count, you posted this same question 5 times in 8 hours. This is considered extremely bad listserver etiquette. IMO, the minimum acceptable time between re-posts of the same question is 3 business days. If you repeat your posts too quickly, people will stop respo

Re: [DOTNET] retrieve a folder with files in it by making a WebService Call??

2002-06-03 Thread franklin gray
I think it will. Compress the files into a byte array and return the byte array to a Thick (not that thick) client on the PDA. The client will decompress it. -Original Message- From: PrashanthG [mailto:[EMAIL PROTECTED]] Sent: Monday, June 03, 2002 2:48 AM To: [EMAIL PROTECTED] Subject

Re: [DOTNET] Best Practice for Passing Arguments

2002-06-03 Thread franklin gray
or we can combine the two (XML and Objects - create an object and xml serialize it) in cases where you can't just pass an object. -Original Message- From: Dustin Wish with NCA Communications [mailto:[EMAIL PROTECTED]] Sent: Saturday, June 01, 2002 5:44 PM To: [EMAIL PROTECTED] Subject:

Re: [DOTNET] FW: XML or Universal Type System? (Was RE: Advice)

2002-06-03 Thread franklin gray
IHO, the best use for XML is to pass data from one system to another. Say I am working for IBM and I want to share data with a Sun programmer. I will create an XML document and pass it to him. If it's complex, then we will somehow define a mapping of the tags and so on. This way he can take

Re: [DOTNET] a c#/client/server/remoting design problem

2002-06-03 Thread Peter Laan
Lets see if I understand your problem. You are conserned that the person who writes the client might accidentaly code it wrong and create a writable document when it shouldn't. Correct? I was about to suggest that the server created a derived class, but I just saw that you had already tried that.

Re: [DOTNET] CDO for Windows 2000 a la C#

2002-06-03 Thread Shawn Wildermuth
System.Web.Mail.MailMessage Thanks, Shawn Wildermuth [EMAIL PROTECTED] > -Original Message- > From: The DOTNET list will be retired 7/1/02 > [mailto:[EMAIL PROTECTED]] On Behalf Of David B. Bitton > Sent: Monday, June 03, 2002 3:59 PM > To: [EMAIL PROTECTED] > Subject: [DOTNET] CDO for

Re: [DOTNET] Administrative Announcement - Reasoning

2002-06-03 Thread Shawn Wildermuth
You mention 3 lists a number of times, but I thought there were 5: CX: Managed C++ and C# issues VB: VB.NET Issues CLR: CLR Specific issues WINFORMS: Windows Forms WEB: Web Forms, Web Services, etc. Also, any chance we'll get to see the DATA mailing list? I think that there is enough traffic

Re: [DOTNET] .NET Printing HELP!!!

2002-06-03 Thread Walker, Tara E.
Has anyone done Formatted printing from .NET with assemblies or web or using the System.Drawing.Printing.PrintController object using C#. Any and all feedback is desired. Please help. See original email posted below. Thanks for all your help. TEW -Original Message- From: Walker, Tara

Re: [DOTNET] a c#/client/server/remoting design problem

2002-06-03 Thread Yuval Gross
thanx for the reply after modifying the doc, the client sends it to the server for processing (updating it in the DB etc.) the problem isn't that the client will try to hack my code (the client for that matter are 3 (nice) guys sitting in a cubicle next to mine, and they have access to the vss..

Re: [DOTNET] Administrative Announcement - Reasoning

2002-06-03 Thread Reggie Burnett
Very well addressed. I look forward to the focus the new lists should bring! Reggie > -Original Message- > From: The DOTNET list will be retired 7/1/02 > [mailto:[EMAIL PROTECTED]] On Behalf Of Mike Woodring > Sent: Monday, June 03, 2002 2:48 PM > To: [EMAIL PROTECTED] > Subject: [DOTNE

Re: [DOTNET] ANN: QuickAdmin V1.1 - Maintenance interface builder

2002-06-03 Thread Tom Archer
True enough Brad. But then this rules needs to be applied to *everyone*. -Original Message- From: The DOTNET list will be retired 7/1/02 [mailto:[EMAIL PROTECTED]]On Behalf Of Brad Wilson Sent: Monday, June 03, 2002 12:31 PM To: [EMAIL PROTECTED] Subject: Re: [DOTNET] ANN: QuickAdmin V1.1

Re: [DOTNET] Fax over TCP/IP in .NET

2002-06-03 Thread Erick Thompson
Ed, > If you have a fax server on your network... > > If you are running Win2K... > (1) You can use the Fax Service Client API for Windows 2000. (There's a set of COM objects you can tlbimp.) > ms-help://MS.VSCC/MS.MSDNVS/fax/faxlegacy_9lf4.htm Is there a set of RCWs for some of the stuff that C

[DOTNET] CDO for Windows 2000 a la C#

2002-06-03 Thread David B. Bitton
I have an app that was using CDO for Windows 2000 in VB6. Is there an equivelant managed class in c#/.NET? -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Code Made Fresh DailyT You can read messages from the DOTNET archive, unsubscribe from DOTNET, or subscribe to other DevelopMento

[DOTNET] Administrative Announcement - Reasoning

2002-06-03 Thread Mike Woodring
Hi Everyone, Based on the replies we've received in regards to our decision to partition the DOTNET list (some of which have been sent privately), I thought I'd post a little information on the history & motiviations of the decision, as well as a few replies to specific comments people have made

Re: [ADVANCED-DOTNET] Detect Exception Handler

2002-06-03 Thread JustinPitts
Check out log4net: http://sourceforge.net/projects/log4net --- Justin E. Pitts, Sr Programmer Analyst PC Applications Development BIG LOTS -- World's Best Bargain Place 614 278-3255 You can read messages from the Advanced DOTNET archive, unsubscribe from Advanced DOTNET,

Re: [ADVANCED-DOTNET] Singleton pattern

2002-06-03 Thread Shawn Wildermuth
I've been using static classes for singleton's. Is this a bad approach? Are static constructor's unreliable? Don't you automatically get one instance of a static class in each app-domain? Maybe that's the issue... Thanks, Shawn Wildermuth [EMAIL PROTECTED] > -Original Message- > From

Re: [DOTNET] Administrative Announcement - Please Read

2002-06-03 Thread Steve Boyce
I agree, except about the degree of fragmentation. I prefer to subscribe to as few lists as possible, to minimise admin overhead. Specifics from the point of view of my personal usage: Taking out winforms is for me a huge +. Splitting C# and the CLR is less helpful, but OK. And least helpful of a

Re: [DOTNET] Administrative Announcement - Please Read

2002-06-03 Thread Brad Wilson
Marsh, Drew wrote: > Personally, while I'm wasn't exactly pro-fragmentation initially, as long as > cross-posting doesn't get out of hand then there shouldn't be any real > difference. Technologically, it should be feasible to prevent cross-posting of messages, although I'm not aware that any ma

Re: [DOTNET] Administrative Announcement - Please Read

2002-06-03 Thread Marsh, Drew
Reggie Burnett [mailto:[EMAIL PROTECTED]] wrote: > I completely agree. That is why I was suggesting that a new > list be created for the dot net beginner. I see a lot of > traffic from folks coming over from VB that are just learning > the ropes. At least 50% of the traffic on this list sho

Re: [DOTNET] Administrative Announcement - Please Read

2002-06-03 Thread Brad Wilson
Reggie Burnett wrote: > At least 50% of the traffic on this list should be posted to the Advanced > list and this list should be focused on the folks asking how to databind > controls and how to set focus to a control. Try not to overwhelm the small team of volunteer moderators on the advanced l

Re: [DOTNET] Administrative Announcement - Please Read

2002-06-03 Thread Reggie Burnett
I completely agree. That is why I was suggesting that a new list be created for the dot net beginner. I see a lot of traffic from folks coming over from VB that are just learning the ropes. At least 50% of the traffic on this list should be posted to the Advanced list and this list should be fo

Re: [ADVANCED-DOTNET] embedding resources

2002-06-03 Thread Peter Zaborski
Hi Paul, Your code looks pretty similar to what I have in a test app I wrote to verify the problem (although my code is C#, FWIW). I load the assembly (I use LoadFrom instead of Load), I get the type and then Activator.CreateInstance. Mine fails on the creation _unless_ in the EXE project I add a

Re: [ADVANCED-DOTNET] singleton server problem

2002-06-03 Thread Manuel Costa
Hi, I have the example. It is not perfect as an example, but i didn't have much time to do it. Succinctly, if you have an array with a MarshalByRefObject descendant, each one with a client manage by a different thread, remoting will be blocked if the servers call other servers all managed by diff

Re: [DOTNET] Administrative Announcement - Please Read

2002-06-03 Thread Peter Foreman
--- Reggie Burnett <[EMAIL PROTECTED]> wrote: > It would seem the problem is not just volume but that the volume covers > the entire spectrum of skill level. .Net is such a new technology that I agree somewhat, but this list IMHO is currently technically above most newgroups and other lists. T

Re: [DOTNET] ANN: QuickAdmin V1.1 - Maintenance interface builder

2002-06-03 Thread Zane Thomas
Bryan, > If all SPAM I got was as directed and as in-tune with my > interests as this announcement, then I wouldn't mind it. Appropriateness really is the only issue, imo. Zane You can read messages from the DOTNET archive, unsubscribe from DOTNET, or subscribe to other DevelopMentor lists at

Re: [DOTNET] Anybody else not getting mail from this listserv? (S OLVED)

2002-06-03 Thread Marsh, Drew
Bill, Thanks for the verification! I actually just found the problem, someone was messing with permissions opn the mail server and accidentally revoked author permissons for the receiving account. =S Thanx again, Drew > -Original Message- > From: Bill Conroy [mailto:[EMAIL PROTECTED]] >

[DOTNET] OO Architecture question...

2002-06-03 Thread Francesco Sanfilippo
I am designing a .NET web community app (ala MSN, Yahoo) in C#. I want it to be as OO as possible, but maintain scalability and performance. Here's what I have so far... Create a Member object when a user signs in. Run a single sproc that returns multiple result sets to populate various string

[DOTNET] Anybody else not getting mail from this listserv?

2002-06-03 Thread Drew Marsh
I haven't received any mail from this listserv (on any list) since saturday. Is anyone else experiencing the same problem? I also went to subscribe to the new, segmented lists and haven't received any confirmation commands. Thanx, Drew You can read messages from the DOTNET archive, unsubscribe f

Re: [DOTNET] .Net Compact Framework Query

2002-06-03 Thread Steve Holak
Post the code fragment from the switch statement and we'll have a look, but I suspect also that you simply missed a break; Steve Holak Senior Software Architect Brokerage Concepts IS Dept. 610-491-4879 email: [EMAIL PROTECTED] Renu Sharma

Re: [DOTNET] Administrative Announcement - Please Read

2002-06-03 Thread Mike C
Definitely a big supporter of filtering the posts, similar to the method used for the advanced list. Personally, I would much rather quickly peruse a useless post and delete it rather than the separation and cross posting created by multiple lists. Truthfully though, many of the posts we see r

Re: [DOTNET] .Net Compact Framework Query

2002-06-03 Thread Renu Sharma
Probably u r missing break statement in switch-case. If you are using C# break is must in switch -case statement. Regards, Renu -Original Message- From: PrashanthG Sent: Monday, June 03, 2002 6:53 PM To: [EMAIL PROTECTED] Subject: [DOTNET] .Net Compact Framework Query Hi, I am tryin

[DOTNET] Old Unanswer Question: How do you trap hosted IE events?

2002-06-03 Thread Jade Martin
I know this has been asked multiple times on this site but I still cannot find a solution. This is what I would like to know how to do: 1) Place IE control on C# form. 2) Navigate to local HTML file (that contains buttons and links, etc.) 3) Have my WinForm respond (trap the event) when a user cl

[DOTNET] TcpClient Question

2002-06-03 Thread Jeff Roberts
When I call the TcpClient.Connect method, the Window network settings window pops up and asks me what network to use. How can I turn this off ? thanks You can read messages from the DOTNET archive, unsubscribe from DOTNET, or subscribe to other DevelopMentor lists at http://discuss.develop.

Re: [DOTNET] Administrative Announcement - Please Read

2002-06-03 Thread Reggie Burnett
It would seem the problem is not just volume but that the volume covers the entire spectrum of skill level. .Net is such a new technology that most people who use this list are interested in all aspects (ADO.Net, ASP.Net, Winforms). This would indicate that partitioning along technologies would

Re: [DOTNET] Administrative Announcement - Please Read

2002-06-03 Thread Brian Graf
I usually refrain from "me too" posts, but in this case I'll make an exception. If it aint broke... -Original Message- From: The DOTNET list will be retired 7/1/02 [mailto:[EMAIL PROTECTED]] On Behalf Of h k ball Sent: Monday, June 03, 2002 12:45 PM To: [EMAIL PROTECTED] Subject: Re: [DO

Re: [DOTNET] OleDbParam and Oracle Composite types

2002-06-03 Thread Dean Bostic
I'd love to use it, even have it on my machine, but the timing is not likely to work for us. Any other ideas? You can read messages from the DOTNET archive, unsubscribe from DOTNET, or subscribe to other DevelopMentor lists at http://discuss.develop.com.

Re: [DOTNET] ANN: QuickAdmin V1.1 - Maintenance interface builder

2002-06-03 Thread Thomas Tomiczek
You are right about the personal insults - I have to excuse myself to the list for actually exposing this. It is based on a long discussion where Thomas Zane basically came to the point that "as long as he does it it is ok" - and I sincerely have a pretty strict position against this kind of peopl

Re: [DOTNET] ANN: QuickAdmin V1.1 - Maintenance interface builder

2002-06-03 Thread Bryan Batchelder
OK guys, lets please stop the ad homs. The QuickAdmin announcement may have been misplaced (it should indeed have been put on the announcement list) - but I don't think this is SPAM. If all SPAM I got was as directed and as in-tune with my interests as this announcement, then I wouldn't mind it.

Re: [DOTNET] ANN: QuickAdmin V1.1 - Maintenance interface builder

2002-06-03 Thread Brent E. Rector
I think personal insults are way over the line I can see why DM wants to retire this list for more focused lists.. Demeanor for .NET - the premier .NET obfuscation utility http://www.wiseowl.com/Products/Products.aspx -Original Message- From: Thomas Tomiczek [mailto:[EMAIL PROTECTED

Re: [DOTNET] ANN: QuickAdmin V1.1 - Maintenance interface builder

2002-06-03 Thread Thomas Tomiczek
One moment - it is NOT spam when it is NOT in a newsgroup? So all the wonderful emails you get regularly about nice girls and stuff like this are also not SPAM? Great - so you probably will not have anything against me forwarding all this useful information from my mailbox to yours in the future,

Re: [DOTNET] ANN: QuickAdmin V1.1 - Maintenance interface builder

2002-06-03 Thread Zane Thomas
> this, but I am not allowed by company policy to buy products FOROM > COMPANIES SO STUPID TO SPAM TECHNICAL NEWSGROUPS WITH ADVERTISEMENTS. This isn't a newsgroup, it wasn't spam, rent a clue. Zane You can read messages from the DOTNET archive, unsubscribe from DOTNET, or subscribe to other De

Re: [DOTNET] Administrative Announcement - Please Read

2002-06-03 Thread Zane Thomas
Shannon, > To deal with this, DevelopMentor has decided to repartition this list into a small >number of more focused lists Please don't! Zane You can read messages from the DOTNET archive, unsubscribe from DOTNET, or subscribe to other DevelopMentor lists at http://discuss.develop.com.

Re: [DOTNET] OleDbParam and Oracle Composite types

2002-06-03 Thread Shawn Wildermuth
Have you considered using the Oracle Managed Provider? It is still in beta, but pretty solid. Thanks, Shawn Wildermuth [EMAIL PROTECTED] > -Original Message- > From: The DOTNET list will be retired 7/1/02 > [mailto:[EMAIL PROTECTED]] On Behalf Of Dean Bostic > Sent: Monday, June 03, 20

Re: [DOTNET] Loading various xml into the same db

2002-06-03 Thread Mario Calò Carducci
ok but .NET should add support for loading XML data into a relational db? my problem is to understand if there is also support for mapping different xml documents (with different schemas) into a given relationale db. i'm not understanding how DataSet, XmlDataDocuments and SqlDataAdapter should be

Re: [DOTNET] Administrative Announcement - Please Read

2002-06-03 Thread h k ball
I subscribe to a dozen or so of the various asplists (aspngcommunity, aspngfreeforall, aspngvs, etc), get 100-200 messages per day from those lists, maybe about the same number from DOTNET. DOTNET much less repetitive and much easier to read. A vote for no change. HK Ball -Original Message

Re: [DOTNET] ASP.Net - building a javascript array?

2002-06-03 Thread Matt Milner
another option is to use the Page class' RegisterArrayDeclaration method to build your elements. Just enumerate over the rows for your datatable and for each row, make the call to the method. If you use the same array name, it adds new elements for each successive call. As Drew mentioned, you s

Re: [DOTNET] ANN: QuickAdmin V1.1 - Maintenance interface builder

2002-06-03 Thread Cavanaugh, Bill
> From: Tom Archer [mailto:[EMAIL PROTECTED]] > Sent: Monday, June 03, 2002 12:32 PM > To: [EMAIL PROTECTED] > Subject: Re: [DOTNET] ANN: QuickAdmin V1.1 - Maintenance interface > builder > > I won't mention names, but almost every one of his posts > mentions his book (or some perceived slight aga

Re: [DOTNET] ANN: QuickAdmin V1.1 - Maintenance interface builder

2002-06-03 Thread Tom Archer
Not only that, but I haven't seen anyone complain about the "big names" advertising their products. As you correctly stated, the simple solution is to either use filters or don't bother reading posts where the subject is prefixed with ANN. I won't mention names, but almost every one of his posts

Re: [DOTNET] ANN: QuickAdmin V1.1 - Maintenance interface builder

2002-06-03 Thread Brad Wilson
Jim Stanton wrote: > Come on. Why the hostility? He prefixed it with a ANN. Learn how to use > outlook rules to filter. In his defense, there IS an appropriate list for this kind of stuff. It's called "dotnet-products". Brad -- Read my web log at http://www.quality.nu/dotnetguy/ You can read

Re: [DOTNET] ANN: QuickAdmin V1.1 - Maintenance interface builder

2002-06-03 Thread Jim Stanton
Come on. Why the hostility? He prefixed it with a ANN. Learn how to use outlook rules to filter. Why don't you remove the name of your company from your .sig? I'm feeling marketed to. ;-) - Jim -Original Message- From: The DOTNET list will be retired 7/1/02 [mailto:[EMAIL PROTECTED]]On

Re: [DOTNET] ANN: QuickAdmin V1.1 - Maintenance interface builder

2002-06-03 Thread Thomas Tomiczek
NICE tool. Just a question - is there a competition out there? See, I could use this, but I am not allowed by company policy to buy products FOROM COMPANIES SO STUPID TO SPAM TECHNICAL NEWSGROUPS WITH ADVERTISEMENTS. As such, anyone who can point me to another product from a company WITH busines

[DOTNET] ANN: QuickAdmin V1.1 - Maintenance interface builder

2002-06-03 Thread David Campbell
Hi Everybody, We've just released a new version of QuickAdmin, an ASP.NET native component for building site back-end interfaces. Many programmers build data maintenance interfaces from scratch using datagrids and lots of hand-coded logic. QuickAdmin lets you build all of this in just a few line

Re: [DOTNET] XPath Query Help

2002-06-03 Thread Farhan Shah
Thanks!!! this is all i needed You can read messages from the DOTNET archive, unsubscribe from DOTNET, or subscribe to other DevelopMentor lists at http://discuss.develop.com.

[DOTNET] Dataset not very useful in this scenario

2002-06-03 Thread Greg Gates
Hi: I have asked a similar kind of question to various newsgroups without any luck as far as a reply. I have considered the possibility that it is either a dumb question or an incoherent question. If that is the case, my apologies. I have come to the conclusion that the dataset is not very usef

Re: [DOTNET] Administrative Announcement - Please Read

2002-06-03 Thread Steve Holak
I totally agree. I think the spirit of this list is closest to the CLR sub-list proposed by DM--how do you categorize XML questions, for instance, as falling into the WEB list as DM listed in its example; you could get a question along DataSet / strongly typed DataSets / serialization /Remoting

Re: [DOTNET] XPath Query Help

2002-06-03 Thread Darwin Leung
Try this xnodes = xnav.Select("/Phonelist/address[firstname =""Farhan""]/cellphone") to get the cellphone tag from the user that matches your criterium in every part within the path /.../.../ you can go more specific and deeper in the xml structure so /Phonelist/address[firstname =""Farhan""]"

Re: [DOTNET] XPath Query Help

2002-06-03 Thread Majercak Ivan
Hi, you mean something like this: "/Phonelist/address[firstname ="Farhan"]/cellphone" or am I completely off-the-wall? If no help, see the Xpath spec. at w3c.org. Bye, Ivan -Original Message- From: Farhan Shah [mailto:[EMAIL PROTECTED]] Sent: Monday, June 03, 2002 5:11 PM To: [EMAIL PRO

Re: [DOTNET] Databinding related tables

2002-06-03 Thread Michel Broggi
Thanks, that got me on right path. My binding looks like this now: txtStrasse.DataBindings.Add("Text",dvm, "Kunden.KundenAdressen.Adresse"); where dvm is a DataViewManager, Kunden is my Parent Table, KundenAdressen is the DataRelation name and Adresse is the Column name. This works great and al

[DOTNET] OleDbParam and Oracle Composite types

2002-06-03 Thread Dean Bostic
Has anyone had any success passing the Oracle composite types (VARRAY or TABLE) as command parameters? For example, if I want to pass an array of employee id's to Oracle and have it select all the employees in that list, using Oracle 8.1.7 & System.Data.OleDb namespace: Dim oParam as OledbParam(

[DOTNET] XPath Query Help

2002-06-03 Thread Farhan Shah
I can sucessfully returning the correct string using XPath, but not sure how to select inner node in XML. Following is how my XML looks like: Farhan Shah 237 5132263305 309 fshah 12345 1234 and following is how my code looks like: Dim xdoc As New XPathDocument(S

[DOTNET] Is there a limit to the length of a .NET project's name?

2002-06-03 Thread Rod Falanga
I'm getting ready to write my first .NET web service. I want to know if there's some limitation to the length of a .NET project's name? And if so, what is that limitation? Rod Falanga http://amci.unm.edu/ You can read messages from the DOTNET archive, unsubscribe from

Re: [DOTNET] ASP.Net - building a javascript array?

2002-06-03 Thread Drew Marsh
Philo <[EMAIL PROTECTED]> wrote: >Here's what I'm trying to do: >A web form has a drop down list and a bunch of text boxes. Selecting a >value from the dropdown list populates the text boxes. (Without a round >trip to the webserver) > >In ASP I'd build a javascript array with the potential values

Re: [DOTNET] Checked casting between DataSet and its children

2002-06-03 Thread Jason Kaczor
One last thing. Depending on how integrated you want your tools to be, you can "inject" your modifications to the dataset code via: - regular expressions. Typically I'm searching for individual datarow classes, and injecting my interfaces at that point. The nice thing about interfaces is you c

Re: [DOTNET] Administrative Announcement - Please Read

2002-06-03 Thread Bryan Batchelder
I like the community as it is. If I had a vote - it would be to make no changes. Bryan Batchelder eBusiness Consultant ConnectWise, Inc. 813-935-7100 x 425 > -Original Message- > From: Murphy, James [mailto:[EMAIL PROTECTED]] > Sent: Monday, June 03, 2002 10:04 AM > To: [EMAIL PR

[DOTNET] .NET WEB - RTF Printing HELP!!!

2002-06-03 Thread Walker, Tara E.
Okay guys I am really stuck. I have searched my C# books, I have searched MSDN and I can not find the answer to this question. Please help. I am dynamically creating an RTF document from the web using the RTF Specification v.1.6. Because I am doing this from the web and Microsoft documentati

Re: [DOTNET] DataSets naive question

2002-06-03 Thread Noam Arbel
On Sun, 2 Jun 2002 07:20:53 -0700, Avi Nahir <[EMAIL PROTECTED]> wrote: Avi, I think the main point in the in-memory dataset, is the ability to send it across the wire. I can have a remote server, WebSerrvice or other type of server create a recordset and transfer it to a client over http (throu

[DOTNET] add Array items

2002-06-03 Thread David B. Bitton
I'd moving VB6 to C#. Back in the day, I used Redim Preserve to add items to an array. Obviously this is no longer valid. I took a look at the Array class an I noticed that it implements the IList interface. Unfortunately, I can't seem to get the Add() method to work. This fails compilation:

Re: [DOTNET] Checked casting between DataSet and its children

2002-06-03 Thread Jason Kaczor
On Thu, 30 May 2002 12:44:28 -0700, Loc Nguyen <[EMAIL PROTECTED]> wrote: >board about this subject, I think it may be more trouble. It sounds like >the code generation is very troublesome. Someone was asking how to insert >logic into the generated code without it being overwritten, and he neve

Re: [DOTNET] Administrative Announcement - Please Read

2002-06-03 Thread Brad Wilson
Murphy, James wrote: > 2. Degradation in the value of the list due to "dilution" I get to be the voice of dissent today, I guess. This is the largest problem here, and I disagree that "go somewhere else" is the right answer. These lists provide value because of the people on them, not because o

Re: [DOTNET] Reference to assembly in the GAC

2002-06-03 Thread Kevin Kenny
Henrik, >From the 'Add Reference' dialogue, browse to the physical location where your assembly was registered into the GAC. If you forgot where this was you can find out by looking at the properties of your assembly in the GAC (assuming you have the fusion shell extension installed) and examini

Re: [DOTNET] Best Practice for Passing Arguments

2002-06-03 Thread Murphy, James
Whoa - I can't wait till you guys have performance bottlenecks and need to call in a consultant to help you out. :) XML is great but *beware* the cost handling it. (parsing, traversing, serializing). This is powerful stuff but remember - "With great power comes great responsibility". :) I'd r

Re: [DOTNET] .Net Compact Framework Query

2002-06-03 Thread Murphy, James
Hmmm...sounds like a syntax error in you code but why it compiles in one environment and not the other is confusing. Are you sure you have break; statements for each case in your switch statements. switch(value) { case 1: { doit(); // bad - needs a break;

Re: [DOTNET] Administrative Announcement - Please Read

2002-06-03 Thread Murphy, James
I totally agree - and this is why this wasn't done early on right? Maybe DM can describe what the problem is as they see it? Is it: 1. Too much volume to support - as mentioned cross posts and redundant discussions will increase with multiple lists so this will get worse. Perhaps rec

Re: [DOTNET] Administrative Announcement - Please Read

2002-06-03 Thread Jim Stanton
I, for one, remember the 'bad-old-days' of the ATL and DCOM lists where nearly half of the traffic was cross-posted. I think this is going to grossly increase the amount of traffic, followed by diluting the quality of answers as the experts get fed up with traffic load and begin unsubscribing fro

[DOTNET] Reference to assembly in the GAC

2002-06-03 Thread Henrik Enemark Rasmussen
I have an assembly installed in the GAC. Using Visual Studio .NET, how do I create a reference to this assembly in another project in another solution? Using Windows Explorer, I can see the assembly in the GAC and I can verify it's there with GacUtil. The assembly is not in the "Add Reference" di

[DOTNET] .Net Compact Framework Query

2002-06-03 Thread PrashanthG
Hi, I am trying to parse an XML file.I have a switch case which takes XmlNodetype. The code works perfectly fine in .Net Framework. But with Compact framework it is getting recognized in the IDE, but on compiling it gives an error "Control cannot fall through from one case label to another". C

Re: [DOTNET] Databinding related tables

2002-06-03 Thread Shawn Wildermuth
The trick is to bind the child element to the relation. E.g. // Bind the Master masterGrid.SetDataBinding(customerTable, ""); // Bind the Detail detailGrid.SetDataBinding(customerTable, "Customers_Invoices"); Thanks, Shawn Wildermuth [EMAIL PROTECTED] > -Original Message- > From: The

Re: [DOTNET] Best Practice for Passing Arguments

2002-06-03 Thread Bryan Batchelder
In this case, I think I might have a User object, that instead of calling UsersDB.AddUser, you just say User myUser = new User(); then set the attributes of user and call myUser.Save(); To grab an instance of a User you can just give an ID in the constructor: //this would grab the User instance

Re: [DOTNET] Loading various xml into the same db

2002-06-03 Thread Kirk Allen Evans
I would look at using mapping schemas in conjuntion with updategrams using SQL Server 2000 and SQLXML 3.0. http://msdn.microsoft.com/library/en-us/sqlxml2/updategram_5kkh.asp?frame=tr ue Kirk Allen Evans http://www.xmlandasp.net "XML and ASP.NET", New Riders Publishing http://www.amazon.com/exec

Re: [DOTNET] Databinding related tables

2002-06-03 Thread Jason Kaczor
Hmmm, have you tried using an Expression as the "bound sub/child property"?, look at the following for general syntax: http://msdn.microsoft.com/library/default.asp?url=/library/en- us/cpref/html/frlrfSystemDataDataColumnClassExpressionTopic.asp (Relevant section cut'n'pasted here): PARENT/CHILD

Re: [DOTNET] What is best way to search XML document?

2002-06-03 Thread Majercak Ivan
I would say Xpath, here the code snippet I use quite often (partially from MSDN :-): Public Function GetValueFromXML(ByVal strXMLSrc As String, ByVal strXPath As String) Dim strReturnValue As String Dim xpcContext As XmlParserContext Dim xtrReader As XmlTextReader

[DOTNET] What is best way to search XML document?

2002-06-03 Thread Farhan
I want to query XML document, what is a best way to do that? 1. Data Island? 2. XPath? 3. XQuery? I am new to all those terms so am not sure where to begin. Thanks, Farhan You can read messages from the DOTNET archive, unsubscribe from DOTNET, or subscribe to other DevelopMentor lists at http:

[DOTNET] AW: [DOTNET] Loading various xml into the same db

2002-06-03 Thread Schilgen, Tobias / AUT
look at www.rpbourret.com/xmldbms for general information about mapping xml schemas to database tables. You'll find concepts, detailed java implementations and lots of information there. good luck, Tobias Schilgen. --- Lenze Dr

Re: [DOTNET] Administrative Announcement - Please Read

2002-06-03 Thread Steve Holak
I agree. I'd prefer NOT to partition, just for that very noise factor. On addition, often an inquiry spans several topic areas; posting and working through the parallel replies would just be too much--I only have so much time during the day. Steve Holak Senior Software Architect Brokerage Con

[DOTNET] Databinding related tables

2002-06-03 Thread Michel Broggi
Hi, I'm trying to find out what the correct way is to bind two related tables to winform textboxes. The scenario is the following: I have a form showing customer information as well as 1-n adresses. The customer information comes from one table, the adresses from another. In the form, the user s

  1   2   >