Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008
all groups > c# > march 2004 > threads for monday march 29

Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

SelectNodes with a namespace
Posted by tracey.roy NO[at]SPAM dewr.gov.au at 3/29/2004 11:55:14 PM
I have XML that has XML embedded in it, which has a namespace on the root element I am trying to get, so I end up with XML of: <ApplicationsList xmlns="urn:sp-schema"> <Application> <Name></Name> <ApplicationAddress></ApplicationAddress> <FormAddress></FormAddress> <...more >>


More Interop
Posted by Philip Carnstam at 3/29/2004 11:40:20 PM
Hi, I am trying desperately to get the RedrawWindow function in the User32 lib to work. But it just does'nt seem to do that. Why? [DllImport("User32", CharSet=CharSet.Unicode)] //Do'nt know why I would set CharSet to Unicode, just testing stuff! private static extern int RedrawWindow(IntPtr...more >>

XML file
Posted by Bryan at 3/29/2004 11:32:58 PM
I have an XML file that I want to add to the project so that I can save the state of some object. It is working to just save this file in the Debug folder, but that does not get CVS'd. I want it in the directory with the rest of the code. So I put it there and added that file to the proje...more >>

Receive UDP Data
Posted by Joris Dobbelsteen at 3/29/2004 11:09:19 PM
Currently I'm developing a simple application under the .NET platform, however I seem to be unable to perform even the simplest things. The application must be able to discover whether a server is running, so it sends a UDP packet to a the 255.255.255.255 broadcast address. (Currently this is ...more >>

Concurrent User and Session Question
Posted by Tom at 3/29/2004 11:06:06 PM
Hi I build an web application with asp.net and c#. Each user has to login before using it. Once the user uses the login id to login, he will be forced to logout the system if other person uses the SAME login id to login. I have a log table in database to record which user has login. But, I am ...more >>

How can I treat a form with textbox as input box
Posted by pei_world at 3/29/2004 10:43:57 PM
I created a form with textbox components. How can I control the main program thread wait for user input? once user click "OK" in my input form, then set all variables and return back to my main thread. thanks ...more >>

VS-Error
Posted by Dave at 3/29/2004 10:33:26 PM
Hi, i install visual studio-7 ver 0.9466 , i ran it number of times well but now i have a problen, when i try to create a new C# windowapplication project i get the error message "ClassFactory cannot supply requested class" why??? Thanks. ...more >>

Access modifier based on namespace
Posted by JollyK at 3/29/2004 10:30:19 PM
Hi all. I have a question. Is it possible to have a class to have members which are only accessible by other class members that belong to the same namespace? JollyK. ...more >>



Serializing? How to?
Posted by TomB at 3/29/2004 10:05:37 PM
I'm trying to persist configuration information to disk. I'm going crazy. This is what I've tried. ------- TextWriter writer=new StreamWriter(xmlLoc); XmlSerializer x = new XmlSerializer(typeof(IP)); for (int i=0;i<iplist.Count;i++) { ip=(IP) iplist[i]; x.Serialize(writer,ip); ...more >>

Resx file in solution explorer
Posted by Benny at 3/29/2004 9:11:07 PM
H VSNET IDE Solution explorer usually clubs the source files and the corresponding resx files together with a + sign. But in some rare cases, this doesn't happen. How could I make them clubbed again Thanks in advanc Benn ...more >>

syntax question
Posted by suzy at 3/29/2004 9:05:43 PM
what does the following toolboxdata syntax mean? and is there a name for it so i can read up on it? namespace Wilson.MasterPages { [ToolboxData("<{0}:ContentRegion runat=server></{0}:ContentRegion>")] public class ContentRegion : System.Web.UI.WebControls.Panel ...more >>

ArrayList to array of strings
Posted by A.M at 3/29/2004 8:29:42 PM
Hi, What would be the fastes way to convert an ArrayList to an array of string ? I am trying to avoid running a loop. Thanks, Ali ...more >>

Enumerating an objects properties and values?
Posted by Ben Fidge at 3/29/2004 8:02:15 PM
How do you enumerate all the properties of a given object and retrieve each property's type and current value, the same as in VS.NET's Proprties view? Thanks Ben ...more >>

Overriding parent field values with child ones
Posted by Pavils Jurjans at 3/29/2004 8:00:19 PM
Hello, Please see the following code: using System; public class Parent { public virtual string id = "_"; public string getId() { return id; } } public class Child : Parent { public override string id = "A"; } public class Executer { public static void Main() { ...more >>

Transferring files across servers
Posted by Andrew Banks at 3/29/2004 7:19:27 PM
I'm building an e-commerce app and am keeping the client facing front end on a live web server and the admin section of the app on a local intranet server. All data is stored in an SQL DB on the live web server. I will be having in the region of 500 product images in the app and am looking for...more >>

c++ function call with struct...
Posted by roben at 3/29/2004 7:10:33 PM
Hi, I need to call a function in a c++ dll with a struct. It works fine with the integeres - but the char[] variable doesnt. I also tried using StringBuilder as I have seen suggested around the net, but it just crashes my program. Can anyone help ? ----------------- C# code -----------...more >>

C# Security programming problem
Posted by pei_world at 3/29/2004 6:55:05 PM
Hi there, I am using the following code to produce a encryption key for my password. //=========================================================== password = "a password"; .... ... System.Text.UTF8Encoding enc = new System.Text.UTF8Encoding(); Rijndael crypt = Rijndael.Crea...more >>

WithEvents in C#.NET
Posted by news.microsoft.com at 3/29/2004 6:53:11 PM
Hi, I want to use a COM component in my C#.NET project. The sample VB code of the COM component declares it as - Public WithEvents ePrint1 As LEADePrint How do I do the equivalent in C#.NET? Do I need to bother about the WithEvents part (I believe there is no C# equivalent for this), do I s...more >>

passing enumeration parameter to generic (all enumeration) sub
Posted by JackRazz at 3/29/2004 6:44:31 PM
Hi everyone, I'm trying to figure out how to pass enumerations to subroutines by reference so that I can return a changed enumerated value. For example, I have a UpdateProperty function that could take all integer enumerations, set it, and return it's updated value. When I do something lik...more >>

OT: Exclude from build -- no visual clues???
Posted by Julie at 3/29/2004 6:37:23 PM
(I originally posted this on microsoft.public.vsnet.ide, but just got chirping crickets in response; hoping for something better from MS over here...) Running VS.NET 2003. When I change a source file properties to 'exclude from build = yes', there is *no* visual clue in the solution explorer...more >>

Date Time conversion problem. Plz Help
Posted by Wajih-ur-Rehman at 3/29/2004 5:22:16 PM
I want to convert a DateTime Object to a string and the conversion should be such that it should work irrespective of locale of the current system. I have used the following code to accomplish this: CultureInfo c = new CultureInfo(System.Globalization.CultureInfo.CurrentCulture.Name, true); ...more >>

Invoke J# console app within C# form
Posted by Bwana Don at 3/29/2004 5:16:09 PM
Hi I have a J# console app (*.java/jsl) that I want to "button" initiate from within a C# form (they have been included in the c# project). I am receiving a number a J# errors when I attempt this so this leads me to believe that my syntax is not correct. (This J# console app will eventually ...more >>

Property of object to Binding
Posted by Boniek at 3/29/2004 5:05:07 PM
Hi, I have next question :). I have a object which work as dataSource for other objects. I implemented IBindingList (IList, ICollection) etc. I have problem when I want bind my controls ( TextBox etc) to that object. My application throw exception that it can't find property in my object with...more >>

embed IL -in C#
Posted by Chris at 3/29/2004 5:04:08 PM
Hi, is it possible to embed il-code in C# ? (much like the _asm directive used in C++). If not, other ways to execute il-instructions ? thnx Chris ...more >>

dynamic or static binding?
Posted by jpugh NO[at]SPAM gladstone.uoregon.edu at 3/29/2004 5:03:39 PM
I have a problem with my class structure. my base class is abstract and defines an abstract method foo(); my child class extends my abstract class and overrides foo() and prints out a string from my child class in it. The only problem is, it isn't printing the string at all, it just shows a bla...more >>

Form Memory Management
Posted by Steven Blair at 3/29/2004 4:53:43 PM
Hi, A GUI I have been writing appears to be using a lot of memory. The amount of memory being used (Windows Task Manager) rarely decreases. When I open a new form, most of the time the memory usage increases. I was under the impression C#'s Garbage collector handled this for the programming...more >>

Getting Umlauts from QueryString
Posted by Tomas Vera at 3/29/2004 4:43:00 PM
Hello All, On my website, I have a page where the user's logon ID is passed in through the URL. When the user's name contain's an umlaut (and presumably other accented letters), the query string seems to be stripping out the special characters. Example: http://www.mysite.com/mypage.aspx?id=...more >>

saving Ascii file text as dataset and using it as combobox datasource
Posted by Amos at 3/29/2004 4:37:24 PM
I have an ascii file with hundreds of lines that look like this: 00001 Test1 Myname 00002 Test2 Myname2 .... How can I move that to a dataset of three columns? If necessary, I can modify the ascii file so that the dataset can read it more easily... And once I have it as a dataset, how can ...more >>

dataset datacommand
Posted by Selen at 3/29/2004 4:32:29 PM
Hi, When should I use dataset or datacommand? Do you know any articles about this subject? thanks...... ...more >>

Backreference in Regular Expression Quantifier
Posted by Mike Blake-Knox at 3/29/2004 4:22:24 PM
I'm trying to use regular expressions to match variable length fields in a record. The fields are laid out with their length in the first byte and the data following immediately after the length. I was hoping to do it by matching the length (two hex characters) then using a backreference to ...more >>

Easy(?) Active Directory
Posted by Toby Mathews at 3/29/2004 4:13:25 PM
Hi there, I'm very new to Active Directory, so apologies in advance if I've missed something painfully obvious. I'm at the stage of writing some very basic code to access our AD and I've managed to get a user's details via the DirectoryEntry class. I seem to be able to access the properties ...more >>

date-time control......time validations
Posted by Anil at 3/29/2004 4:02:29 PM
i am using 2 datetime picker controls for showing fromtime and totime.Now i want to check the fromtime should not be greater than totime validations with AM and PM checking also.how can i perform this in C# windows forms ? Please help. ...more >>

Newby question about voids
Posted by blaz.ziherl NO[at]SPAM abraxas.si at 3/29/2004 3:57:19 PM
Hi, I have the following problem: I have an event in the class called 'HtmlEditor'. This class is then used in another class (called 'HandleWndProc') like this: class HandleWndProc: NativeWindow { internal HtmlEditor thecontrol; ... } In the 'HandleWndProc' class I also have a void ...more >>

crystal reports from datasets with more than one table
Posted by 2003et at 3/29/2004 3:53:52 PM
If I use only one table, it works well.... But If I add new tables to my ..xsd dataset file, then it starts to ask logon information when you start the application... But with one table it runs without asking the information to the user... How can I solve this? Thank you ...more >>

Newbie: Assigning a new Dataset at runtime
Posted by Paul Ericksen at 3/29/2004 3:53:17 PM
I am new to C#, but have 9 years of professional programming experience. As an exercise, I made a webservice which spits out a DataSet. The client gets it and loads it into a grid. All works very slick. I was creating a new DataSet in code ProjectX.SessionList px = new ProjectX.SessionList()...more >>

Allocate more memory into Byte array
Posted by Arthur Yousif at 3/29/2004 3:52:44 PM
Sorry, my previous post was posted by accident before I finished it. Hello, I have a stream I'm reading from, which is from an HttpWebRequest and the Length property is not available because the stream doesn't support seek operations. I'm looping through the stream byte by byte but that...more >>

Commandline Build importing Environment Variables
Posted by ha_t_huynh NO[at]SPAM hotmail.com at 3/29/2004 3:52:16 PM
Is there a way for me to use an environment variable when specifying the output directory? For example if I have SPCHOME set to "C:\spcroot\spc" I want the output directory to be ${SPCHOME}\bin Is there a way to pass in a flag to devenv such that the compiler can resolve ${SPCHOME}? In th...more >>

How to obtain implemented Interfaces using Reflection?
Posted by pn at 3/29/2004 3:46:09 PM
Hi all I'm looking for a way to obtain all interfaces implemented by a given type, i.e. all interfaces included in the type's class base specification. Sounds easy but the problem is that Type.GetInterfaces returns both inherited and implemented interfaces, including all base interfaces The foll...more >>

Web Browser
Posted by Darren B at 3/29/2004 3:45:18 PM
Does anybody know of an example web broswer that doesn't use Interop. ...more >>

Use PostgreSQL as DB
Posted by Grey at 3/29/2004 3:43:55 PM
Has anyone ever used PostgreSQL as DB server with C#. I need to use = PostgreSQL as DB, please suggest what I need and where can I get the = ODBC drvier for PostgreSQL?? Does PostgreSQL has OLEDB driver?? Million Thanks...more >>

Allocate more memory into Byte array
Posted by Arthur Yousif at 3/29/2004 3:42:02 PM
Hello, I have a stream I'm reading from, which is from an HttpWebRequest and the Length property is not available because the stream doesn't support seek operations. I'm looping through the stream byte by byte but that's taking a long time on really big files. It would be nice to do someth...more >>

How to trap Control+Key on KeyDown
Posted by james at 3/29/2004 3:29:57 PM
I am trying to trap Ctrl+A in my custom editor by handling the KeyDown event. But what I have found is that the key down event only contains the ControlKey on the key down and the letter A is never passed as a KeyDown as long as the Control key is held down. It does come through as a KeyUp whe...more >>

Efficient 'constant' char arrays?
Posted by ianoliver_noreply NO[at]SPAM yahoo.com at 3/29/2004 3:29:34 PM
Are these declarations compiled into the object or executed at runtime? // easy to write char[] NumericChars = "0123456789.,".ToCharArray(); // cumbersome to type char[] NumericChars = {'0','1','2','3','4','5','6','7','8','9','.',','}; TIA, Ian...more >>

Will the C# compiler optimize this?
Posted by Andreas Mueller at 3/29/2004 3:28:53 PM
Hi All, I recently came across a code snippet similar to the one below generated by a code generator. I asked myself, if the compiler will optimize this or if the program will do the actual (needless) cast at runtime: class SomeGeneratedClass { public object Foo() { return null;//r...more >>

¡¸Share Object/Relational mapping framework to you
Posted by feng at 3/29/2004 3:11:01 PM
Do you need JDO like functions?(http://castor.exolab.org/jdo.html) Have you heard about Microsoft ObjectSpaces and kept waiting so long? I cannot wait, so simply built the ODB.Net and share to everybody. ODB.Net is an Object/Relational mapping framework that allows persistence ..Net Objec...more >>

how do I find a hanging thread?
Posted by David Bartosik - MS MVP at 3/29/2004 3:10:31 PM
I have a windows service that creates 5 worker threads, I'm finding that over time the service is still going but the threads are evidently dead (no work is done). Since I don't think they can actually die in the while loop I'm assuming they get 'hung'. I'm trying to determine how to look for an...more >>

"Disable" form to repaint it
Posted by Boniek at 3/29/2004 2:44:09 PM
Hi I have one question. How I can "disable" my form ? I want to change controls' setting on my form but I don't want repaint my form while I'm changing controls. Can I set off my repainting for form when I'm changing my controls ? Next I repaint my form when my controls' setting was updated....more >>

Form Focus
Posted by brian NO[at]SPAM carbonsteelinspection-dot-com.no-spam.invalid at 3/29/2004 2:40:59 PM
Hi, My app is basically a drawing application. Whenever you draw a shape on the form, you can press the delete key to delete the shape. I have added a bunch of buttons to the form and whenever the a button is clicked the button gains focus. So when i select a shape on the form I can't pres...more >>

Which C# IDE?
Posted by skc at 3/29/2004 2:36:11 PM
Can someone tell me what software are needed to get started on C# Instead of getting Visual Studio Professional 2003 @ US$1079, I am thinking of getting Visual C# 2003 @ US$109 (10X cheaper). However, MS website says it lacks Visual database design tool. (1) In that case is there an alternativ...more >>

launching a help file.... //a newbie question.....
Posted by genc ymeri at 3/29/2004 2:27:24 PM
Hi, I have a MenuItem mnuItem_LaunchHelpFile. How can I launch a help file for instant an MSExcel help file by clicking that menuItem ? Thanks lot in advance. ...more >>

sending a control as parameter - they may be several different controls but all have same property...
Posted by Amos at 3/29/2004 1:54:29 PM
I have several controls (textboxes, comboboxes, etc...) and, on an event, I'd like to change the forecolor property of each one of these. Instead of writing this.myControl.Forecolor = Color.Black on each event of every control, I'd like to call a method, with a control as parameter, that does th...more >>

Help to run this remoting example in .Net
Posted by skrishnan NO[at]SPAM snet.net at 3/29/2004 1:23:32 PM
I am referring to the remoting example as described in msdn site. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconbuildinghostapplication.asp. I have the listener running : (I am not sure why we say "url="http://localhost:8989/RemotableType.rem" where is ...more >>

(Math) Expression Evaluator
Posted by C P at 3/29/2004 1:08:26 PM
I'm converting part of a Win32 app that evaluates some mathematical expresions at runtime. For example "SUM( @10001@, @10002@, @10003@)" is an expression stored in a table's record, where 10001, 10002, 10003 are id's of records in a specific table. I want to grab the associated values for those...more >>

get path
Posted by Steph at 3/29/2004 12:58:23 PM
Hello, Is it possible to get the path where dotnet is installed ? On my system, it is : C:\WINNT\Microsoft.NET\Framework\v1.0.3705\ How can I get this path in my c# program ? thanks Steph ...more >>

C# .exe
Posted by Lou at 3/29/2004 12:46:08 PM
Does the framework need to be installed on the target machine for the exes to run or can the exe be linked statically so the target machine does not need the 35 meg framework install. -Lou ...more >>

Finding a memory leak in C#???
Posted by Mark Steele at 3/29/2004 12:29:04 PM
I'm working on a project where we collect data and store it in ArrayLists. When the size of the ArrayList gets to 100K elements we prune it back down to 50K. I let my application run over the weekend and Windows Task Manager shows that the application is using 500,000K memory for my applicatio...more >>

How to restart program
Posted by A.Popov at 3/29/2004 12:28:36 PM
Hi, Whats the best way a program to restart itself, and how this to be done in C#. I need my program to be restarted after some events. Thanks...more >>

Catch reference BEFORE load
Posted by Tamir Khason at 3/29/2004 12:16:49 PM
How can I track reference load. e.g I have a form with some references. I want to be able to track the event when one of references loaded, thus I have to catch BEFORE_REFERENCE_LOAD event. How it possible to do? TNX ...more >>

Generics and ICloneable
Posted by Javier Estrada at 3/29/2004 11:46:29 AM
It seems to me that System.ICloneable should be a generic interface, similar to IComparable. Of course, one can just create an ICloneable<T> and use it, but I'd be interested in knowing what it has not been considered as such. Regards, Javier ...more >>

String with specified number of chars
Posted by Arbajram at 3/29/2004 11:45:19 AM
Hi, The question is: How to create a string containing specified nr. of (same) characters? I guess the question is quite trivial but I still don't know the answer :) Thx in advance Armin ...more >>

Arrays, shallow copy vs. deep copy
Posted by jscavone NO[at]SPAM bluelance.com at 3/29/2004 11:45:07 AM
I'm a bit confused by the behavior of arrays and exactly when a shallow vs. deep copy is made. When passing an array of value types (e.g., int), msdn states that a deep copy is NOT made, thus, one would infer that this works exactly like the Clone method of the array class; i.e., creating a sh...more >>

Changing Color in a text box
Posted by Brad Markisohn at 3/29/2004 11:29:56 AM
I would like to display a text box where some of the content is displayed in a different color. Can I do this with a text box control? If not could somebody please suggest a way in which I might do this or send me a link to an example? TIA Brad ...more >>

crystal report how to use more than one table
Posted by 2003et at 3/29/2004 11:11:27 AM
I have a crystal report object which include 3 tables... I get data from dataset and make the report... The first Table is my primary table, the second and third tables are the other information tables, which can include more than one row... So the report looks like below: Table1_No Tabl...more >>

XmlSerialize class inheriting from CollectionBase
Posted by sjoshi NO[at]SPAM ingr.com at 3/29/2004 9:52:40 AM
Hello All I have a collection class inheriting from CollectionBase. However when I try to serialize it I keep getting a message "You must implement a default accessor on PersonColl because it inherits from ICollection." even though I have a parameterless constructor. Any help is greatly appre...more >>

help please..problem with set identity_insert off
Posted by Bill Long at 3/29/2004 9:39:14 AM
Hi all, I'm running into what I can only assume is a bug in the .Net framework. I'm building a sort of DB pipeline application(to copy data from one DB to another). When i'm copying data into a SqlServer table with an identity column, I must first issue a set identity_insert <tablename> on. ...more >>

Creating Array of Point
Posted by Amjad at 3/29/2004 9:11:05 AM
How do I create an array of points using a loop? I wrote the following code that doesn't seem to be working Dim allPoints() As Poin Dim i As Intege For i = 0 To 100 Dim myPoint As New Point(i , i*2 allPoints(i) = myPoint ...more >>

Help! Object reference error!
Posted by Joey Johnson at 3/29/2004 7:29:53 AM
I'm used to Java and am new to C#! I'm getting the following error, which I believe is suggesting my code is referencing something that has not been instanciated yet, however I can't seem to spot the bug... "Object reference not set to an instance of an object" What I'm TRYING to do is...more >>

System.Exception ?
Posted by Oren at 3/29/2004 7:01:06 AM
hi I'm using the component: openFileDialo openFileDialog1.Multiselect = true when I choose Many files the this exception comes {"Too many files selected. Please select fewer files and try again." } System.Exceptio Any ideas ? is there any limit ?!...more >>

Message App.
Posted by Kevin at 3/29/2004 6:46:08 AM
Hi all Please can someone tell me what to do or point me in the right direction. I would like to create a windows app that I can use as a chat application, where everyone can join,and which also needs to be capable for video conferencing.(only for later development I am new to C#, but this is a ...more >>

Blocked threads vs Thread.Interrupt
Posted by TT (Tom Tempelaere) at 3/29/2004 5:51:05 AM
Hi there What are the community's opinions/experiences on using Thread.Interrupt to cancel a thread? By canceling, I mean allowing graceful exit. Is anyone using this as the mechanism to cancel threads Second question Calling Thread.Interrupt on a thread will cause a ThreadInterruptedException ...more >>

Passing and retrieving a string calling a c++ function from c#
Posted by rbnstudio NO[at]SPAM hotmail.com at 3/29/2004 5:28:35 AM
I want to call a function in C++ (external dll) from C#. However the string is still empty after returning from the function. ------------------- C# ------------------- [DllImport("ccw.dll", CharSet=CharSet.Auto)] public static extern int HelloWorld(StringBuilder abc); StringBuilder mytex...more >>

DataGridTableStyle colours
Posted by Jax at 3/29/2004 4:06:09 AM
Usually it runs off two colours, alternative and backcolor Is there a way that I can make a specific row a different colour thorugh the tablestyle or another method Many thanks to those that help jax...more >>

Install a Windows Application
Posted by Bernardo at 3/29/2004 3:41:05 AM
Hi I have to put my Program EXE in a server share, but when I try to open the program a "System.Security.SecurityException" occures If I open my program in my computer no error occures.. Any clue Thanks for your help ...more >>

ADO to ADO.NET in C#
Posted by Bonj at 3/29/2004 3:21:05 AM
H I'm trying to find out how to enumerate the column names in an OdbcDataReader whereas in VB6 I would have gon For i = 0 to rs.Fields.Coun Debug.Print rs.Fields(i).Nam Nex What can I do with an OdbcDataReader to achieve the same effect I trie dr.GetSchemaTable().Columns.GetEnumerator()...more >>

Bug ?
Posted by Oren at 3/29/2004 2:36:05 AM
hi I'm using the component: openFileDialo when I choose ALLOT of files the this exception comes {"Too many files selected. Please select fewer files and try again." } System.Exceptio why ? any ideas ...more >>

Custom Control Event
Posted by Ryan Joseph So at 3/29/2004 1:54:43 AM
Is there an event that would trigger if i changed the size of the font or the font itself during design time in the property window? I inherent the control from windows to make my own control. *** Sent via Developersdex http://www.developersdex.com *** Don't just participate in USENET...get ...more >>


DevelopmentNow Blog