hi, i have created a application i have to upload and test it.. so i need some free server which will support .NET. can u give me some free server name . ...
Hi, Just to benefit you folks, I have solved this issue by creating a assigning the dataview to the data table, and binding the data grid to the data table ...
In a message dated 6/1/2004 01:33:36 GMT Standard Time, mikebeall@... writes: dv[Row]["field"]; Thanks Mike.... [Non-text portions of this message have...
Hi, I am wondering how to create shortcuts for a form Or do I have to create a menu for the form?? And if I must create a menu, what if I don't want to show...
Hello everyone! I have a contract opening just outside of downtown Seattle - here is the job description: They have multiple integration projects they are...
hi all, I was wondering about the difference between OUT and REF parameters. Thanks best regards, --meghanad __________________________________ Do you Yahoo!? ...
CSharpNET has grown to over 1400 members and is in need of some additional moderators. Right now we have 4 moderators with only 2 of them active in the group....
After a discussion between the owner and the moderators of this group, we have decided to stop accepting job-offers in the group. Although there was a slight...
Dear Michael: I am willing to perform as a moderator. The value of the group has grown considerably and I can give back a bit. Let me know if you still need...
Does anyone have/use a good browse for folder dialog box in C#? Would like to mimic the windows one as closely as possible. Thanks! ... Do you Yahoo!? ...
I need someone to review an application and to function like a Standards Police. If you have: - the above expertise - availability to work on Saturdays (only)....
Hi can I pass a method as a parameter? if the delegate is the only way..then how can I do that? Thanks [Non-text portions of this message have been removed]...
Create a delegate that matches the signature of the method, then create a new delegate for the method call. I'll use an example that has 3 int parameters for...
It seems like I saw one on CodeProject not too long ago ... From: Chris Barthel [mailto:cwbarthel@...] Sent: Wednesday, June 02, 2004 8:10 AM To: CSharp ...
john.bergman@...
Jun 2, 2004 2:23 pm
6092
Brian, .NET no longer supports the FolderBrowseDialog. Hence, why I am looking for one. -Chris "Newtz, Brian" <brian.newtz@...> wrote: Chris, ...
Um, that's news to me because I use it in v1.1 apps...not sure where you heard that from. ... From: Chris Barthel [mailto:cwbarthel@...] Sent: Wednesday,...
Sorry ignore my last post, I just made the delegate public and that should do, right? Thanks very much indeed. [Non-text portions of this message have been...
.NET Framework Class Library FolderBrowserDialog Class Note: This namespace, class, or member is supported only in version 1.1 of the .NET Framework. So....if...
Exactly, and there's no reason you shouldn't be using 1.1 :-) ... From: Chris Barthel [mailto:cwbarthel@...] Sent: Wednesday, June 02, 2004 11:42 AM To:...
Yes, if you want the delegate type to be available to other classes, it has to be public. In my example, I was using a delegate specific to one class... since...
All right, I have installed version 1.1 of the .NET Framework, at the urging of Brian, and have tried to implement the FolderBrowserDialog with the following...
Are you doing things from a command line? If so, are your Path settings for your environment variables pointing to the v1.1 directory of the framework? Your...
using System; using System.Windows.Forms; FolderBrowserDialog dlg = new FolderBrowserDialog(); string myFolder = ""; if (dlg.ShowDialog() == DialogResult.OK) ...